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
After trying out your library we discovered that your call to makePromise is highly inefficient since it takes 2.5s for each query. It gets especially since it takes multiples of 2.5s for each sub-query.
You should create a single client that you persist through multiple calls to the very same endpoint. That's why we moved to a custom wrapper that create such a single client.
The text was updated successfully, but these errors were encountered:
After trying out your library we discovered that your call to
makePromise
is highly inefficient since it takes 2.5s for each query. It gets especially since it takes multiples of 2.5s for each sub-query.apollo-datasource-graphql/src/GraphQLDataSource.ts
Line 66 in 1fe3bbd
You should create a single client that you persist through multiple calls to the very same endpoint. That's why we moved to a custom wrapper that create such a single client.
The text was updated successfully, but these errors were encountered: