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
I am new to Flutter and I am using Ferry GraphQL for my API services. I am dealing with multiple queries in a single document. When I send a request, the operation sends the operation name along with the entire query document, which contains multiple queries, to the server. This increases the payload size and results in higher response times. I need to solve this by sending only the specific query instead of the entire document in the operation. We have more than 200 queries, divided into 10 modules. We are using a common file for sending the requests.
The text was updated successfully, but these errors were encountered:
Hi,
I am new to Flutter and I am using Ferry GraphQL for my API services. I am dealing with multiple queries in a single document. When I send a request, the operation sends the operation name along with the entire query document, which contains multiple queries, to the server. This increases the payload size and results in higher response times. I need to solve this by sending only the specific query instead of the entire document in the operation. We have more than 200 queries, divided into 10 modules. We are using a common file for sending the requests.
The text was updated successfully, but these errors were encountered: