var CachedParents = $cachedResource('data', 'http://www.example.com/data/:_id', { _id: "@id"});
// gets an Array and tags it 'cached-parents'
var all = CachedParents.query({tag: 'cached-resource'})
ends up doing this
GET /data?tag=cached-resource
How can i tag to store the resulting Array, but not send the tag parameter in the request ?
ends up doing this
GET /data?tag=cached-resource
How can i tag to store the resulting Array, but not send the tag parameter in the request ?