graphene-sqlalchemy
graphene-sqlalchemy copied to clipboard
Graphene SQLAlchemy integration
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...
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...
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...
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...
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?...
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...