jcward / haxe-graphql

Utilities for working with Haxe and GraphQL.
MIT License
23 stars 6 forks source link

Implement parsing and generation of SchemaDefinitionNode #12

Closed jcward closed 6 years ago

jcward commented 6 years ago

SchemaDefinitionNode is currently a TODO. So this breaks:

    schema {
        query: Query
        mutation: Mutation
    }

In Haxe, I believe it should be simple typedef aliases to the query and mutation types.

jcward commented 6 years ago

Of note: we can now parse the StarWarsTest.gql schema file (gah, except for input ReviewInput :stuck_out_tongue: )