| title | class InMemoryCache |
|---|---|
| description | API reference |
{/* @import {MDXProvidedComponents} from '../../../shared/MdxProvidedComponents.js' */}
Methods of the InMemoryCache class (the cache used by almost every instance of ApolloClient) are documented here.
Before reading about individual methods, see Caching in Apollo Client.
Executes a GraphQL query directly against the cache and returns its result (or null if the query cannot be fulfilled):
// Query a cached Todo object with id 5
const { todo } = cache.readQuery({
query: gql`
query ReadTodo {
todo(id: 5) {
id
text
completed
}
}
`,
});For usage instructions, see Interacting with cached data: readQuery.
Accepts the following parameters:
| Name / Type |
Description |
|---|---|
|
|
Required. Provides configuration options for the query, including the actual query to execute. Supported fields are listed below. |
|
|
If The default value is |
| Name / Type |
Description |
|---|---|
|
|
Required. The GraphQL query to execute, created by wrapping a query string in the |
|
|
A map of any GraphQL variable names and values required by |
|
|
The root The default value is By specifying the ID of another cached object, you can query arbitrary cached data without conforming to the structure of your schema's supported queries. This enables |
readQuery<TData = unknown, TVariables = OperationVariables>(
options: Cache.ReadQueryOptions<TData, TVariables>,
optimistic: boolean = false,
): Unmasked<TData> | nullWrites data to the cache in the shape of a provided GraphQL query. Returns a Reference to the written object or undefined if the write failed.
// Create or modify a cached Todo object with id 5
cache.writeQuery({
query: gql`
query ReadTodo($id: ID!) {
todo(id: $id) {
id
text
completed
}
}
`,
data: {
todo: {
__typename: "Todo",
id: 5,
text: "Buy grapes 🍇",
completed: false,
},
},
variables: {
id: 5,
},
});For usage instructions, see Interacting with cached data: writeQuery.
Takes an options object as a parameter. Supported fields of this object are described below.
| Name / Type |
Description |
|---|---|
|
|
Required. The GraphQL query that defines the shape of the data to write. Created by wrapping a query string in the |
|
|
Required. The data to write to the cache. This object's fields must conform to the shape defined by |
|
|
A map of any GraphQL variable names and values required by |
|
|
The The default value is By specifying the ID of another cached object, you can modify arbitrary cached data without conforming to the structure of your schema's supported queries. This enables |
|
|
If The default value is |
|
|
If The default value is |
writeQuery<TData = unknown, TVariables = OperationVariables>(
options: Cache.WriteQueryOptions<TData, TVariables>,
): Reference | undefinedFetches data from the cache in the shape of a provided GraphQL query, then updates that cached data according to a provided update function.
Returns the updated result or null if the update failed.
// Fetches a Todo object with id 5 and flips its `completed` boolean
cache.updateQuery(
// options object
{
query: gql`
query ReadTodo($id: ID!) {
todo(id: $id) {
id
text
completed
}
}
`,
variables: {
id: 5,
},
},
// update function
(data) => ({
todo: {
...data.todo,
completed: !data.todo.completed,
},
})
);Takes an options object and an update function as parameters (both described below).
| Name / Type |
Description |
|---|---|
|
|
Required. The GraphQL query that defines the shape of the data to fetch. Created by wrapping a query string in the |
|
|
A map of any GraphQL variable names and values required by |
|
|
The The default value is By specifying the ID of another cached object, you can modify arbitrary cached data without conforming to the structure of your schema's supported queries. This enables |
|
|
If The default value is |
|
|
If The default value is |
The update function of updateQuery takes a query's current cached value and returns the value that should replace it (or undefined if no change should be made).
The returned value is automatically passed to writeQuery, which modifies the cached data.
Please note the update function has to calculate the new value in an immutable way. You can read more about immutable updates in the React documentation.
public updateQuery<TData = unknown, TVariables = OperationVariables>(
options: Cache.UpdateQueryOptions<TData, TVariables>,
update: (data: TData | null) => TData | null | void,
): TData | nullReads data from the cache in the shape of a provided GraphQL fragment:
const todo = cache.readFragment({
id: "5", // The value of the to-do item's unique identifier
fragment: gql`
fragment MyTodo on Todo {
id
text
completed
}
`,
});Returns the requested data or null if data is not available in the cache.
For usage instructions, see Interacting with cached data: readFragment.
Accepts the following parameters:
| Name / Type |
Description |
|---|---|
|
|
Required. Provides configuration options, including the actual fragment to use. Supported fields are listed below. |
|
|
If The default value is |
| Name / Type |
Description |
|---|---|
|
|
Required. The ID of the cached object that this call is reading a fragment of. If the cache does not contain an object with the specified ID, |
|
|
Required. A GraphQL document created with the If the document includes more than one fragment, you must also provide |
|
|
The name of the fragment defined in the You don't need to provide this value if the |
|
|
A map of any GraphQL variable names and values required by |
readFragment<TData = unknown, TVariables = OperationVariables>(
options: Cache.ReadFragmentOptions<TData, TVariables>,
optimistic: boolean = false,
): Unmasked<TData> | nullWrites data to the cache in the shape of the provided GraphQL fragment. Returns a Reference to the written object or undefined if the write failed.
client.writeFragment({
id: "Todo:5",
fragment: gql`
fragment MyTodo on Todo {
completed
}
`,
data: {
completed: true,
},
});For usage instructions, see Interacting with cached data: writeFragment.
Takes an options object as a parameter. Supported fields of this object are described below.
| Name / Type |
Description |
|---|---|
|
|
Required. The ID of the cached object that this call is writing a fragment to. If the cache does not contain an object with the specified ID, |
|
|
Required. A GraphQL document created with the If the document includes more than one fragment, you must also provide |
|
|
Required. The data to write to the cache. This object's fields must conform to the shape defined by |
|
|
The name of the fragment defined in the You don't need to provide this value if the |
|
|
A map of any GraphQL variable names and values required by |
|
|
If The default value is |
|
|
If The default value is |
writeFragment<TData = unknown, TVariables = OperationVariables>(
options: Cache.WriteFragmentOptions<TData, TVariables>,
): Reference | undefinedFetches data from the cache in the shape of a provided GraphQL fragment, then updates that cached data according to a provided update function.
Returns the updated result or null if the update failed.
// Fetches a Todo object with id 5 and sets its `completed` boolean to true
const todo = cache.updateFragment(
// options object
{
id: "5", // The value of the to-do item's unique identifier
fragment: gql`
fragment MyTodo on Todo {
completed
}
`,
},
// update function
(data) => ({ ...data, completed: true })
);Takes an options object and an update function as parameters (both described below).
| Name / Type |
Description |
|---|---|
|
|
Required. The ID of the cached object that this call is reading a fragment of. If the cache does not contain an object with the specified ID, |
|
|
Required. A GraphQL document created with the If the document includes more than one fragment, you must also provide |
|
|
The name of the fragment defined in the You don't need to provide this value if the |
|
|
A map of any GraphQL variable names and values required by |
|
|
If The default value is |
|
|
If The default value is |
The update function of updateFragment takes a fragment's current cached value and returns the value that should replace it (or undefined if no change should be made).
The returned value is automatically passed to writeFragment, which modifies the cached data.
Please note the update function has to calculate the new value in an immutable way. You can read more about immutable updates in the React documentation.
public updateFragment<TData = unknown, TVariables = OperationVariables>(
options: Cache.UpdateFragmentOptions<TData, TVariables>,
update: (data: TData | null) => TData | null | void,
): TData | nullReturns the canonical ID for a specified cached object.
You can provide either an object or an object reference to this function:
- If you provide an object,
identifyreturns the object's string-based ID (e.g.,Car:1). - If you provide a reference,
identifyreturn the reference's__refID string.
For usage instructions, see Interacting with cached data: Identify cached entities.
Accepts the following parameters:
| Name / Type |
Description |
|---|---|
|
|
Required. The cached object (or object reference) to obtain the canonical ID for. |
identify(object: StoreObject | Reference): string | undefinedModifies one or more field values of a cached object. Must provide a modifier function for each field to modify. A modifier function takes a cached field's current value and returns the value that should replace it.
Returns true if the cache was modified successfully and false otherwise.
For usage instructions, see Using cache.modify.
Takes an options object as a parameter. Supported fields of this object are described below.
| Name / Type |
Description |
|---|---|
|
|
Required. A map that specifies the modifier function to call for each modified field of the cached object. See Modifier function API below. |
|
|
The ID of the cached object to modify. The default value is |
|
|
If The default value is |
|
|
If The default value is |
A modifier function takes a cached field's current value and returns the value that should replace it, or the DELETE sentinel object to delete the field entirely.
The first parameter passed to a modifier function is the current cached value of the field being modified.
The second parameter is a helper object that contains the following utilities:
| Name / Type |
Description |
|---|---|
|
|
The name of the field being modified. |
|
|
The full key for the field used internally, including serialized key arguments. |
|
|
A helper function for reading other fields on the object passed to the modifier function as the first parameter. |
|
|
A helper function that returns Useful for filtering dangling references out of lists. |
|
|
A helper function that returns |
|
|
A sentinel object that you can return from a modifier function to indicate that the field should be deleted entirely. |
modify(options: Cache.ModifyOptions): booleanPerforms garbage collection of unreachable normalized objects in the cache:
cache.gc();Returns an array containing the IDs of all objects removed from the cache.
For usage instructions, see cache.gc.
gc();Either removes a normalized object from the cache or removes a specific field from a normalized object in the cache:
cache.evict({ id: "my-object-id", fieldName: "myFieldName" });Returns true if data was removed from the cache, false otherwise.
For usage instructions, see cache.evict.
Takes an options object as a parameter. Supported fields of this object are described below.
| Name / Type |
Description |
|---|---|
|
|
The ID of the cached object to remove (or remove a field from). The default value is |
|
|
The name of the field to remove from the cached object. Omit this option if you are removing the entire object. |
|
|
If provided with Otherwise, all instances of the field are removed for the cached object. |
|
|
If The default value is |
evict(options: Cache.EvictOptions): booleanReturns a serialized representation of the cache's current contents as a NormalizedCacheObject.
Accepts the following parameters:
| Name / Type |
Description |
|---|---|
|
|
If The default value is |
extract(optimistic: boolean = false): NormalizedCacheObjectRestores the cache's state from a serialized NormalizedCacheObject (such as one returned by extract). This removes all existing data from the cache.
Returns the InMemoryCache instance it's called on.
Accepts the following parameters:
| Name / Type |
Description |
|---|---|
|
|
Required. The serialization to restore the cache from. |
restore(data: NormalizedCacheObject): thisCreates a reactive variable with an optional initial value:
const cartItems = makeVar([]);Returns the reactive variable function you use to read or modify the variable's value.
For usage instructions, see Reactive variables.
Accepts the following parameters:
| Name / Type |
Description |
|---|---|
|
Any |
The reactive variable's initial value. |
makeVar<T>(value: T): ReactiveVar<T>