Chris
10/02/2020, 5:02 PMconst key = { one: 'info for one', two: 12345, three: 'other stuff' };
const keyForCacheGet = JSON.stringify(key);
Then, inside the cacheLoaderFunction
call I can JSON.parse(context.key)
and have all the variables I need.