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
In my app, all of my graphql query is live query, so i have to skip query and subscription from the query itself.
That means, instead of using
query{users{id}}
i use
{users{id}}
This is, i think possible to skip the operation name query, mutation, subscription by adding an optional parameter, so that the output string query doesn't contain those names.
The text was updated successfully, but these errors were encountered:
In my app, all of my graphql query is live query, so i have to skip
query
andsubscription
from the query itself.That means, instead of using
i use
This is, i think possible to skip the operation name
query
,mutation
,subscription
by adding an optional parameter, so that the output string query doesn't contain those names.The text was updated successfully, but these errors were encountered: