graphql-sqlalchemy
graphql-sqlalchemy copied to clipboard
Generate GraphQL Schemas from your SQLAlchemy models
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
Shouln’t be too hard
** 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...