What is {} and \uVALUE when using view query?

Hi,

I’ve been using view query with {} and \uVALUE-HERE for a few months now, but never actually understood exactly how they work.

Could you someone please point me to a documentation?

You can effectively think of views as building a sorted data structure (a B+Tree) and then querying as indexing into that data structure and scanning within it. I don’t know enough from your question to be able to answer for sure, but my guess is you’re using the unicode escape and empty object to get to particular places in that scan.

The developer guide has a section on Ordering that may be useful to you.

Thank you ingenthr. I will read the doc before asking any more questions.