I've been using cacheAllData successfully for a while now but for one of the datasources where I use this I have a unique fetch operationId that should skip the cache and go straight to the server. I can't seem to find a way to do this. I've read the cacheAllData javadocs, but it seems to indicate that you can nominate an operationId to be the one that fills the cache and all others will go to the server, but that is backwards from what I need.
I already have a lot of standard fetches, with no operationId, and those should all use the cache. Now I have one specific operationId that should be the exception and skip the cache. Is there any way to accomplish that, short of changing all of the normal cached fetches to use a "cacheAllDataOperationId" (a lot of work) just so I can make this one exception use a different operationId?
I already have a lot of standard fetches, with no operationId, and those should all use the cache. Now I have one specific operationId that should be the exception and skip the cache. Is there any way to accomplish that, short of changing all of the normal cached fetches to use a "cacheAllDataOperationId" (a lot of work) just so I can make this one exception use a different operationId?
Comment