gql-next icon indicating copy to clipboard operation
gql-next copied to clipboard

A Python GraphQL Client library providing ability to validate and make type-safe GraphQL calls

Results 13 gql-next issues
Sort by recently updated
recently updated
newest added

Hello I'm trying to test gql but running ` gql run` returned ``` [...] File "/home/rdebroiz/.virtualenvs/test_gql/lib/python3.7/site-packages/gql/utils_schema.py", line 22, in load_schema introspection = load_introspection_from_file(uri) if os.path.isfile(uri) else load_introspection_from_server(uri) File "/home/rdebroiz/.virtualenvs/test_gql/lib/python3.7/site-packages/gql/utils_schema.py", line...

Hi, I was looking for python client to call our apollo graphql server. Is this client production ready for use or should we still use gql? What are major differences?

I have a .graphql file that looks like this: ``` query GetBook($id: UUID!) { book(id: $id) { author { id name ... on FantasyAuthor { fantasyBooksWritten } ... on SciFiAuthor...

when i run `gql_run` and the `renderer_dataclasses.py` encounters a DateTime field it generates a field: `var_name: datetime = None` when I run a query that returns a datetime object I...

for requests 2.23.0 must be post_args = {'json': {'query': query}} instead of post_args = {'data': {'query': query}}

There doesn't seem to be a production-ready method of supporting authenticated API endpoints in this module. This would be a critical function for use of protected GQL endpoints.

Today I tried installing gql-next for a new project, and using `pipenv install --dev gql-next` produced the following incompatibility message (collapsed since it's long): ```shellsession $ pipenv install --dev gql-next...

Hi there, I was wondering if there is support for websocket subscriptions? Thank you!

Allow embedding GraphQL queries in Python code. For example: ``` GetFilm = gql''' query GetFilm { film(id: "1") { title director } } ''' result = GetFilm.execute() film = result.data.film...

I think this should be high in the roadmap: Make it easy/fun for application writers to write mock gql responses, to support their tests. This includes: - Check the mock...