graphql-core-legacy
graphql-core-legacy copied to clipboard
GraphQL base implementation for Python (legacy version – see graphql-core for the current one)
Hello, `graphql-core` 2.1 is unable to parse such values as argument. Result: `Argument "value" has invalid value "null". Expected type "JSONString", found "null".` Seems that `None` value is invalid regardless...
Implementation for @defer directive in graphene. Have tested it with Apollo Client alpha versions - "apollo-boost": "0.2.0-alpha.14", "graphql": "14.0.2", "react-apollo": "2.2.0-alpha.3", "react-scripts": "1.1.5" Will also need corresponding changes in flask-graphql,...
This PR fixes batching for subscriptions. Without this fix `batch_load_fn ` is called after every `load` call and `test_batches_subscription_result` fails on ``` assert subscription_results[0].data == expected_data_1 ``` because `subscription_results[0].data` contains...
It seems like a lot of people (us included) will not be able to move off of core-legacy any time soon, and enjoy the fruits of native async/await. Given that...
The parser is not able to handle boolean types with `null` default type. This is handled in this line: https://github.com/graphql-python/graphql-core-legacy/blob/master/graphql/language/parser.py#L502 Following a [commit](https://github.com/octokit/graphql-schema/commit/18c40d2bb68d8f27acfc62e768d34aadfca9e8b2#diff-9fcde326d127f74194f70e563bdf2c118c51b719c308f015b8eb0204a9a552fb) GitHub introduced to their schema yesterday `gql`...
We will shortly be publishing [GraphQL-core-next](https://github.com/graphql-python/graphql-core-next) as v3 of GraphQL-core. There are breaking changes as part of this release and so this issue is to track all the tasks needed...
This is an updated version of #222 by @phil303 -- I just resolved the merge conflict and fixed a small bug. If maintainers are interested, I'm happy to do the...
Hello! My web app has many api (not only have graphql, but also some rest-api), I am using graphql-core 2.3.2 provided AsyncioExecutor as Executor, and use Gunicorn as WSGI server...
Fixes #253 `traceback.format_exception` is added to `report_error` with https://github.com/graphql-python/graphql-core/pull/154 two years ago, it solves another problem but i couldn't understand why did anyone need to stringify all exceptions on such...