We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When you make a request like this:
var Derp = $cachedResource('derp', 'http://herp.com/derp/:id') Derp.query({where: {createdAt: { $lt: 5 } } })
rght now we're ending up with keys like this:
cachedResource://derp/array?query=[Object object]
when we should have something like this:
cachedResource://derp/array?query={where:{createdAt:{$lt:5}}}
We need to be careful that the serialization scheme is deterministic (alphabetize keys, etc) so that the same query always uses the same resource.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When you make a request like this:
rght now we're ending up with keys like this:
when we should have something like this:
We need to be careful that the serialization scheme is deterministic (alphabetize keys, etc) so that the same query always uses the same resource.
The text was updated successfully, but these errors were encountered: