You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/lib.rs
+48-3Lines changed: 48 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
//! The top-level documentation resides on the [project README](https://github.com/tomhoule/graphql-client) at the moment.
2
2
//!
3
-
//! The main interface to this library is the custom derive that generates modules from a GraphQL query and schema.
3
+
//! The main interface to this library is the custom derive that generates modules from a GraphQL query and schema. See the docs for the [`GraphQLQuery`] trait for a full example.
4
4
5
5
#![deny(missing_docs)]
6
6
@@ -20,7 +20,52 @@ use std::collections::HashMap;
20
20
21
21
/// A convenience trait that can be used to build a GraphQL request body.
22
22
///
23
-
/// This will be implemented for you by codegen in the normal case.
23
+
/// This will be implemented for you by codegen in the normal case. It is implemented on the struct you place the derive on.
0 commit comments