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

Complete Domain Specific Language (DSL) for GraphQL query in Python.

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

Hi, First of all, Thanks a lot for the package 🚀. It is very nice to have this kind of DSL for GraphQL. Currently I am working on a project...

good first issue

**To Reproduce** `print(Argument(name='someArgument', value=['value']).render())` `someArgument: [value]` `print(Argument(name='someArgument', value=["value"]).render())` `someArgument: [value]` **Expected behavior** `print(Argument(name='someArgument', value=['value']).render())` `someArgument: ['value']` `print(Argument(name='someArgument', value=["value"]).render())` `someArgument: ["value"]` **Desktop (please complete the following information):** - OS: Windows 11...

question

**Describe the bug** When using a singular union type with `graphql_fields` (i.e. a field with a union type with only one sub-type within the union), the field is rendered only...

help wanted