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
/// - graphQLEndpoint: The endpoint to make a GraphQL request to
20
+
/// - additionalHeaders: Any additional headers you wish to add by default to this request
21
+
/// - cachePolicy: The `CachePolicy` to use for this request.
22
+
/// - autoPersistQueries: `true` if Auto-Persisted Queries should be used. Defaults to `false`.
23
+
/// - useGETForQueries: `true` if Queries should use `GET` instead of `POST` for HTTP requests. Defaults to `false`.
24
+
/// - useGETForPersistedQueryRetry: `true` if when an Auto-Persisted query is retried, it should use `GET` instead of `POST` to send the query. Defaults to `false`.
25
+
/// - requestCreator: An object conforming to the `RequestCreator` protocol to assist with creating the request body. Defaults to the provided `ApolloRequestCreator` implementation.
0 commit comments