graphql-parser icon indicating copy to clipboard operation
graphql-parser copied to clipboard

Experimental Facebook's GraphQL parser

Results 3 graphql-parser issues
Sort by recently updated
recently updated
newest added

I think the alias syntax has changed to use a colon (https://facebook.github.io/graphql/#sec-Field-Alias) rather than "as". So `a as b` is now written as `b: a`.

The following query is currently considered bad (no quotes around enum type): ``` { post( type: SPONSORED, name: "Why you should work more" ){id}} ```

A function to generate a GraphQL query string from an AST would be super-useful for me. Is there any chance of this landing as a feature in graphql-parser?