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

I have been using this library for a project and its great so far, however it seems there should also be a class for relay ClientIDMutations. Is this on the...

:eyes: more info needed

I've been trying to set nonnull to node and edge on connection field because a frontend engineer told me that he've got a lot of things to handler if node...

enhancement
waiting

Though there is some information on how to implement dataloaders in [test_batching.py](https://github.com/graphql-python/graphene-sqlalchemy/blob/master/graphene_sqlalchemy/tests/test_batching.py), the sample code in the [examples](https://github.com/graphql-python/graphene-sqlalchemy/tree/master/examples) directory lacks examples of how to do it. My original code is...

enhancement
:book: documentation

I am trying to build an application with graphene_sqlalchemy to manage quite a few micro-services. I have the data models (SQLAlchemyObjectType) of each micro-service, and want to reuse them so...

question

Does this library handle nested models (joins) in a single query from the server to the DB? For example ``` user { id posts { id } } ```

Hello, How would I modify a relationship query on runtime? I'd like to limit the dataset based on a context variable on runtime. Any guides on where should I look?...

question
:eyes: more info needed

This brings default support for fields filtering and ordering on queries and mutations. This is a work in progress for comments, please do not merge for now.

## Help! geoalchemy2 support! ``` class CoordinateMixin(): location = db.Column('location', Geography(geometry_type='POINT' ,srid=4326, spatial_index=True, dimension=2), doc='gps coordinate') ``` Exception: Don't know how to convert the SQLAlchemy field user.location () I'v already...

## tl;dr Does `graphene_sqlalchemy` keep sessions open? I'm having the problem that Postgres doesnt run `drop_all()` in my test suite. ## Explanation Hi, I have a fastAPI app and I'm...

Hello, I'd like to systematically enforce authorization for nodes and individual fields within the nodes. Conceptually something like this might work: ```python class MyNode(AuthZSQLAlchemyObjectType): class Meta: model = MyModel authorize_node_function...

question