You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can you make the GraphqlSuccessResponse have the extensions of a response? It only has the data so far.
In our case we need to read the extensions to know how much quota we still have available for the API.
The text was updated successfully, but these errors were encountered:
Hi there @FlavDumi, I understand the problem but the solution is not as straightforward I am afraid. Mainly because the shape of extensions is not part of the GraphQL schema (if I am not mistaken) so you would have to provide the shape in the configuration JSON like we do with the custom error type. Then we would have to extend the codegen module to also return Result<Query * ExtensionsType, ErrorType list> where ExtensionsType is the configured type from the JSON.
Is this something you would like to give a try and implement?
Can you make the GraphqlSuccessResponse have the extensions of a response? It only has the data so far.
In our case we need to read the extensions to know how much quota we still have available for the API.
The text was updated successfully, but these errors were encountered: