graphene-sqlalchemy
graphene-sqlalchemy copied to clipboard
Graphene SQLAlchemy integration
Hello👋, this works as expected: ```python from sqlalchemy import create_engine from sqlalchemy.orm import Session, mapped_column, Mapped, DeclarativeBase from graphene import Field, ObjectType, Schema from graphene_sqlalchemy import SQLAlchemyObjectType class Base(DeclarativeBase): pass...
Performance Issue: Inefficient Slicing of Connection Queries Currently, when performing a connection query with arguments like first: 20, after: some_token, the system retrieves the entire dataset from the database and...
I believe sub-query filtering and sorting is an incredibly useful feature, and I have been able to figure out a partial solution. Posting here so hopefully people can build off...
Is there a way we can explicitly list all the fields we want filters created for? Like maybe in the Meta of the sqlalchemy object type?
I'm not sure if other people have run into this problem - I searched for days and couldn't find a clear answer. But eventually I figured out a solution, so...