graphene-sqlalchemy
                                
                                 graphene-sqlalchemy copied to clipboard
                                
                                    graphene-sqlalchemy copied to clipboard
                            
                            
                            
                        Graphene SQLAlchemy integration
Hi, I'm using graphene-sqlalchemy 2.0.0. I haven't found any documentation around association proxy support and my preliminary efforts into finding it in the code/docs/issues have proved futile. Are association proxies...
This issue lists design discussions currently in progress. Results from these discussions will be implemented in future releases of `graphene-sqlalchemy`. Any input and thoughts on these features are appreciated! -...
Hi, I'm currently upgrading a graphene 2 project to graphene 3. The project uses `graphene-sqlalchemy` and `graphql-server[flask].` I'm noticing strange behavior when using batching while flask is in development mode,...
It'd be nice to be able to specify a `strftime` string which would automatically be used when resolving datetime-like columns so the user gets a friendly value.
given this code: ``` class Parent(db.Model): __tablename__ = "parent" id = db.Column(Integer, primary_key=True) children = db.relationship("Child", back_populates="parent") class Child(db.Model): __tablename__ = "child" id = db.Column(Integer, primary_key=True) parent_id = db.Column(Integer, ForeignKey("parent.id"),...
When following the tutorial at https://docs.graphene-python.org/projects/sqlalchemy/en/latest/tutorial/ and using the following packages ``` asgiref==3.4.1 Flask==2.0.2 graphene==3.0 graphene-sqlalchemy==3.0.0b1 graphql-core==3.1.6 graphql-server[flask]==3.0.0b4 graphql-relay==3.1.0 uvicorn==0.16.0 gunicorn==20.1.0 ``` to run an ASGI uvicorn server with flask...
Coming from https://docs.graphene-python.org/projects/sqlalchemy/en/latest/tutorial/ as a python noob I failed to run their example but could fix this example by adding the database session.
Sqlalchemy in 1.4 support asynchronous I/O. I would like to know about plans to support async 1.4+ sqlalchemy. Will this be implemented in the graphene-sqlalchemy?
Library returns B64 encoded ID fields instead normal int IDs as they are defined in my models. Right now I am using workaround where I define custom `row_id` field and...