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
While the GraphQL spec permits resolving query fields concurrently, for implementation simplicity, we currently do not do this. However, the appropriate documentation has already been surfaced to indicate which functions are safe to call from multiple goroutines and which interfaces require goroutine-safety. The main consideration here is limiting how much concurrent work happens for any single request and how to surface this control to the application.
The text was updated successfully, but these errors were encountered:
While the GraphQL spec permits resolving query fields concurrently, for implementation simplicity, we currently do not do this. However, the appropriate documentation has already been surfaced to indicate which functions are safe to call from multiple goroutines and which interfaces require goroutine-safety. The main consideration here is limiting how much concurrent work happens for any single request and how to surface this control to the application.
The text was updated successfully, but these errors were encountered: