graphene-sqlalchemy icon indicating copy to clipboard operation
graphene-sqlalchemy copied to clipboard

Graphene SQLAlchemy integration

Results 95 graphene-sqlalchemy issues
Sort by recently updated
recently updated
newest added

In a one to many if you have a table setup as follows (a very simple one to many relationship), the GraphQL query will timeout if tableB has any real...

### Overview In order to convert SQLAlchemy object models (SAM) into a full-blown GraphQL schema, SQLAlchemyObjectType (SAOT) does a lot of automatic mapping and conversions: - it automatically names Graphene...

discussion

### Problem ### I was surprised to see that [`graphene-django`](https://github.com/graphql-python/graphene-django) shares a considerable amount of code with this library. Almost line-for-line in some instances if you blur your eyes to...

Here they are: [graphene-sqlalchemy-ext](https://github.com/yanghg-basefx/graphene-sqlalchemy-ext) And I think some of methods can merge into graphene-sqlalchemy as a basic function. such as `connection_from_query`, which provides a way to page result by SQL...

enhancement

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...

enhancement

Some time ago I put together an example utilising [Falcon](https://falconframework.org/) and graphene-sqlalchemy. It can be found under [https://github.com/somada141/demo-graphql-sqlalchemy-falcon](https://github.com/somada141/demo-graphql-sqlalchemy-falcon). The example demonstrates setting up the SQLAlchemy ORM schema, representing it in...

enhancement
:book: documentation

Added an `Aggregation` section to `tips.rst` to show how to retrieve the `session` out of `info` and perform an aggregation query wrapping the results in a custom type and exposing...

:book: documentation
:eyes: more info needed

I am using : https://github.com/kvesteri/sqlalchemy-utils just so that I dont need to worry if I using Postgres in production or sqlite in dev environment .But from looks like it, I...

I've been trying to get this to work for some time and haven't been able to figure it out. I am trying to use a resolver outside of a class...

When using reflection to build the models (instead of declarative) the Enum conversion fails because the ENUM column is treated as string so doing ```type.name``` returns None. ```sql CREATE TABLE...