graphql-sqlalchemy icon indicating copy to clipboard operation
graphql-sqlalchemy copied to clipboard

Generate GraphQL Schemas from your SQLAlchemy models

Results 6 graphql-sqlalchemy issues
Sort by recently updated
recently updated
newest added

Fixes #13 Also I couldn’t get poetry to work, it just kept trying to build old versions of some dependencies and breaking, so I switched to hatch and made a...

I expected nested filters to work like hasura’s: https://hasura.io/docs/latest/queries/postgres/filters/index/#the-where-argument Instead, when trying to filter using a nested property, I get an `Invalid Operator` error: ```graphql query { authors(where: { articles:...

Seems to work. Fixes #12

** merge redundant pk logic into update by pk args and resolver ** fixed issue with delete by pk if row doesn't exist ** fixed issue with update by pk...

Hello, I have a rather complex SQLAlchemy schema, where some models inherit from others through the joined table inheritance scheme and where some tables have relationships to some inherited class...