UNPKG

@apollo/client

Version:

A fully-featured caching GraphQL client.

24 lines 1.25 kB
import * as React from "react"; import { canonicalStringify } from "@apollo/client/utilities"; import { skipToken } from "../constants.js"; export function useSuspenseHookCacheKey(query, options) { const { queryKey = [], variables } = options; const canonicalVariables = canonicalStringify(variables); // This state value let's us maintain the variables used for the cache key // when `skipToken` is used to skip a query after its been executed. // Since options aren't provided when using `skipToken`, `variables` would // otherwise disappear which means we'd return a new cache key without a // variables value which creates a new `ObservableQuery` instance. This was // particularly problematic when `refetchQueries` was used because it meant // refetching against an `ObservableQuery` instance that had no variables. let [cacheKeyVariables, setCacheKeyVariables] = React.useState(canonicalVariables); if (options !== skipToken && cacheKeyVariables !== canonicalVariables) { setCacheKeyVariables((cacheKeyVariables = canonicalVariables)); } return [ query, cacheKeyVariables, ...[].concat(queryKey), ]; } //# sourceMappingURL=useSuspenseHookCacheKey.js.map