Let say a have a query which accept some variables:
type Query {
feed(search: String) [FeedItem!]!
}
This will create multiple cache entries, e.g when searched by "te" and then "test".
feed(search: "te")
feed(search: "test")
In the UI I want to allow users to delete one feed item. Because this item can be in multiple cached records, is there a way how to get them by some pattern: e.g. give me all feed(search: "*") cache entries?
Let say a have a query which accept some variables:
This will create multiple cache entries, e.g when searched by "te" and then "test".
In the UI I want to allow users to delete one feed item. Because this item can be in multiple cached records, is there a way how to get them by some pattern: e.g. give me all
feed(search: "*")cache entries?