File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
graphql_client_codegen/src Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
pub ( crate ) const TYPENAME_FIELD : & str = "__typename" ;
2
2
3
- pub ( crate ) const MULTIPLE_SUBSCRIPTION_FIELDS_ERROR : & str = r## "
3
+ pub ( crate ) const MULTIPLE_SUBSCRIPTION_FIELDS_ERROR : & str = r"
4
4
Multiple-field queries on the root subscription field are forbidden by the spec.
5
5
6
6
See: https://github.com/facebook/graphql/blob/master/spec/Section%205%20--%20Validation.md#subscription-operation-definitions
7
- "## ;
7
+ " ;
8
8
9
9
/// Error message when a selection set is the root of a query.
10
- pub ( crate ) const SELECTION_SET_AT_ROOT : & str = r# "
10
+ pub ( crate ) const SELECTION_SET_AT_ROOT : & str = r"
11
11
Operations in queries must be named.
12
12
13
13
Instead of this:
@@ -33,4 +33,4 @@ query UserRepositories {
33
33
}
34
34
}
35
35
}
36
- "# ;
36
+ " ;
You can’t perform that action at this time.
0 commit comments