graphql-python / graphene-sqlalchemy

Graphene SQLAlchemy integration
http://docs.graphene-python.org/projects/sqlalchemy/en/latest/
MIT License
974 stars 225 forks source link

Remove unused metadata #374

Closed n00el closed 1 year ago

n00el commented 1 year ago

Is there a way to turn off the pagination?

I don't use it in every query and my GraphQL query becomes really un-readable after every edge-node pair.

For e.g., now: query { authors { edges { node { id name books { edges { node { id name } } } } } } } What i want: query { authors { id name books { id name } } }

MattKleinsmith commented 1 year ago

I also want this. @n00el did you figure out a way to turn it off?

The dream:

image

github-actions[bot] commented 10 months ago

This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related topics referencing this issue.