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

This is the core package for using GraphQL in a custom server easily

Results 30 graphql-server issues
Sort by recently updated
recently updated
newest added

This commit makes sure that values are escaped correctly when doing `re.sub()` while rendering a GraphiQL response. This is necessary when non-ASCII characters end up in the GraphQL variables, for...

Hi there! We love your efforts on this project, and are curious when we might see a non-beta release?

Address issue #94 - update calls to quart.request.get_data to align with current signature - add generated virtualenv to gitignore

hello. I noticed that when using GraphQLView as follows, ``` app.add_url_rule( '/graphql', view_func=GraphQLView.as_view( 'graphql', schema=schema, graphiql=True ) ) ``` I get the following error: ``` [2022-09-05 22:37:21,086] ERROR in app:...

Added some artificial test cases to the version tests added in #124 to make sure that these tests work correctly.

We have this in our workflows ```yaml on: [push, pull_request] ``` This is redundant since when someone pushes to a PR branch, it triggers both `push` and `pull_request` `synchronized` which...

Chrome appears to be providing content type twice sometimes, this results in load_json_body not being called. Content-Type: application/json, application/json; charset=utf-8

Currently there's no support for GraphQL Subscriptions in the main release. [graphql-python/graphql-ws](https://github.com/graphql-python/graphql-ws) has not been updated for a while. There's an implementation for Subscriptions using WebSocket in the [v3](https://github.com/graphql-python/graphql-server/tree/v3) branch....

misc: help wanted
type: feature

An async view for flask could be created based on the existing [`flask sync GraphQLView`](https://github.com/graphql-python/graphql-server/blob/a95e12f78c605a449159646730257d5e817960ca/graphql_server/flask/graphqlview.py) and [`Quart async GraphQLView`](https://github.com/graphql-python/graphql-server/blob/a95e12f78c605a449159646730257d5e817960ca/graphql_server/quart/graphqlview.py).

misc: help wanted
type: feature