File tree Expand file tree Collapse file tree 3 files changed +1
-6
lines changed Expand file tree Collapse file tree 3 files changed +1
-6
lines changed Original file line number Diff line number Diff line change 1
1
use constants:: * ;
2
- use graphql_parser;
3
2
use graphql_parser:: query:: OperationDefinition ;
4
3
use heck:: SnakeCase ;
5
4
use proc_macro2:: { Span , TokenStream } ;
Original file line number Diff line number Diff line change 1
1
use failure;
2
2
use fragments:: GqlFragment ;
3
- use graphql_parser;
4
- use heck:: SnakeCase ;
5
3
use operations:: Operation ;
6
- use proc_macro2:: { Ident , Span , TokenStream } ;
4
+ use proc_macro2:: TokenStream ;
7
5
use schema:: Schema ;
8
6
use selection:: Selection ;
9
7
use std:: collections:: BTreeMap ;
Original file line number Diff line number Diff line change @@ -24,7 +24,6 @@ use std::collections::HashMap;
24
24
///
25
25
/// Example:
26
26
///
27
- ///
28
27
/// ```
29
28
/// extern crate failure;
30
29
/// #[macro_use]
@@ -65,7 +64,6 @@ use std::collections::HashMap;
65
64
/// Ok(())
66
65
/// }
67
66
/// ```
68
- /// ```
69
67
pub trait GraphQLQuery < ' de > {
70
68
/// The shape of the variables expected by the query. This should be a generated struct most of the time.
71
69
type Variables : serde:: Serialize ;
You can’t perform that action at this time.
0 commit comments