Is it possible to select and query JSON attribute names with spaces in them?
For example:
GET http://xyzz.com/appservices/xyzz/mycollection?ql=select data.sequences.Lifetime%20Referring%20Sources where data._id = 1234
Escaping with %20 in this case doesn't work. Oh, I should mention that I have little control of the attribute names without doing a huge amount transformation.
Here is a snippet of how the data is stored:
"data":{
"_id":1234
"sequences":{
"Lifetime Referring Sources":1
}
}