graphql-python / gql-next

A Python GraphQL Client library providing ability to validate and make type-safe GraphQL calls
77 stars 7 forks source link

Feature/better parser - Changed parser to produce a typed tree #13

Closed ekampf closed 5 years ago

ekampf commented 5 years ago

Parser now produced a typed objects tree that describes the code. Renderer just turns the tree into an actual code string.

(as opposed to before where some logic was at the parser and some at the renderer)