query Bookmarks($itemId: ID){
bookmarks(itemId: $itemId) {
id
hasTargetItem
}
}
which returns like
{
data: {
bookmarks: [
{
id: 1, // bookmark id
hasTargetItem: false // indicates this bookmark includes specified item id
},
...
]
}
}
I’d like to cache query response that depends on $itemId. which means if requested this query with itemId 1 for the first time and then requested again but time with itemId 1, which results in it will only returns cached data. although request with itemId 2 to creates new request.
Is there any way to do this?
Are you using the Apollo Client library (React, Android, or iOS)? They all have caching support built-in. The cache key is calculated based on the query and the arguments.
Yes I know it have built-in caching support but seems like it caches based on TypeName and its id.
I would like to cache it with key looks like TypeName:ID:<Variable> ( replaced with variable value. lets say itemId for this example)