We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57ff119 commit 6c11456Copy full SHA for 6c11456
README.md
@@ -2,5 +2,12 @@
2
GraphQL in Rust!
3
4
## Features Planned
5
-- [ ] parser
6
-- [ ] schema?
+
+- [ ] query parser
7
+~85% complete
8
+- [ ] schema construction via macros
9
+0% complete
10
+- [ ] Resolver trait
11
12
+- [ ] `resolver.resolve(schema, query)`
13
src/parser.rs
@@ -740,7 +740,9 @@ make_parser!(
740
);
741
742
// TODO .skip(many::<Vec<_>,_>(or(WhiteSpace::new(), LineTerminator::new(&true))))
743
-// TODO add commas to this thing
+// TODO optional commas to this mess above :)
744
745
+// TODO selection set
746
747
make_parser!(
748
Alias(input: char) -> Name {
0 commit comments