-
Say I have
and a resolver implementation
I would overfetch when doing a query like
How can I work around this? Do I have access to the requested fields in the |
Beta Was this translation helpful? Give feedback.
Answered by
rafalp
Sep 23, 2021
Replies: 1 comment 2 replies
-
Do you have a measurable data showing that this is degrading performance of your app? You can look into requested fields from author resolver by looking up the contents of |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
pylipp
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Do you have a measurable data showing that this is degrading performance of your app?
You can look into requested fields from author resolver by looking up the contents of
info
instance, but overhead of python logic introspecting this object and mapping it to your ORM would be more than gains from limiting number of columns in your SQL query.