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
Since the mutation addFacility will be executed 20x for a CSV with 20 lines, it should be better to group them into one single HTTP request, instead of 20 requests.
To address this scenario, Apollo provides a batcher, that will group operations executed quasi-simultaneously. It groups operations in a default range of 10ms. It can be changed using the batchInterval option.
Import a CSV file containing one facility per line, that matches a provided template.
The interface flow should be:
addFacility
mutation, storing the response to show the userThe text was updated successfully, but these errors were encountered: