Is it possible to query the JSON document inside a collection from the
URI?
For example, if I have a collection at: '/data'
And I have the following document: '/data/4b1953c1-7d03-012c-
a18b-4040f67bf8d1'
Which contains the JSON: '{"foo": "bar"}'
How could I perform a GET on a URI like: "/data/4b1953c1-7d03-012c-
a18b-4040f67bf8d1/foo" and return the value "bar"?
I'd like to be able to query/sub select the JSON so I don't have to
return the full document. I'm a bit confused as to how I can do more
robust selector statements server side. Is this the wrong approach?