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

SQLAlchemy-Graphene respects a custom resolver if it's set, but not a custom default resolver for many-to-one and one-to-one relationships. The issue lies here: https://github.com/graphql-python/graphene-sqlalchemy/blob/20ecaeadf2144b88555a3daf1a04e31b7f2ff95a/graphene_sqlalchemy/converter.py#L80 It should be checked if there...

Hi, I followed the instruction to use the flask_sqlalchemy example with a Python 2.7 version, when I run the app.py script, I've got the following error : ``` (py27) λ...

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

Hi, I followed the flask-sqlalchemy examples [here](https://github.com/graphql-python/graphene-sqlalchemy/blob/master/examples/flask_sqlalchemy) (and the snippets in the project's Readme as well) but it didn't work out of the box. I had the following exception: `AttributeError:...

Is there anything on the roadmap to create a class similar to SQLAlchemyObjectType but for mutations that would take a model in its Input and automatically create a graphene.Mutation subclass...

Is there any possibility we can add a feature that allows for soft deletes to be ignored? https://github.com/graphql-python/graphene-sqlalchemy/blob/db3e9f4c3baad3e62c113d4a9ddd2e3983d324f2/graphene_sqlalchemy/utils.py#L22 I am about to fork this repo so I can add a...

Generates a description for a SQLAlchemy relationship field using the "doc" attribute.

enhancement

Hello, I am implementing a connection field. The excerpts from the code are: ``` # Classes: class Common(graphene_sqlalchemy.SQLAlchemyObjectType): class Meta: abstract = True ... class MyGraphQLModel(Common): class Meta: model =...

I have followed the example at http://docs.graphene-python.org/projects/sqlalchemy/en/latest/tutorial/#testing-our-graphql-schema and have a question. I can issue the following query to list all employees and their departments. ``` { allEmployees { edges {...