Christoph Zwerschke
Christoph Zwerschke
This fix aligns to some changes in GraphQL-core 3.2 which reflect changes in GraphQL.js 16: - type resolvers must return only names - doesn't print trailing newlines any more -...
The [relay spec says](https://relay.dev/graphql/connections.htm#sec-undefined.PageInfo.Fields) that "`PageInfo` must contain fields `hasPreviousPage` and `hasNextPage`, both of which return _non‐null_ booleans. It must also contain fields `startCursor` and `endCursor`, both of which return...
Adding the `app.UseGraphiQl()` middleware does not seem to work in GraphiQL 1.2.0 unless you add `using GraphiQl` to `Startup.cs`. In version 1.1.0 it this does not seem to be necessary....
## Expected Behavior I have the following two tasks: ``` - [ ] task 1 - actionable with default prio - [ ] task 2 - something in ten years...
In SQLAlchemy, you often want to provide additional custom properties on the model classes, like this: ```python class User(Base): __tablename__ = 'users' first_name = Column(String) last_name = Column(String) @property def...
Graphene-SQLAlchemy automatically converts columns of type SmallInteger or Integer to `ID!` fields if they are primary keys, but does not convert such columns to `ID` fields if they are foreign...
We should replace requirements.txt with a Pipfile to make the installation of the [examples](https://github.com/graphql-python/graphene-sqlalchemy/tree/master/examples) even easier with Pipenv (the READMEs the should be adapted, too). And we should add tests...
Currently we cannot upgrade to Sphinx v5, because Sphinx and Flask are installed together in the dev environment, and the current versions Sphinx 5 and Flask 4 cannot coexist (see...
When executing a query against a schema that contains async resolvers, then the executor method creates some overhead by defining and calling async functions (`async def async_...` inside methods in...