C1QL
C1QL is a query language designed for querying JSON-like document stores. It aims to provide a familiar, SQL-inspired syntax while supporting the nested structures common in document databases, such as objects and arrays.
Core design goals emphasize declarative query construction, intuitive projection of fields, and flexible filtering and aggregation.
The language generally uses a set of clauses that resemble SQL, including SELECT for projections, FROM to
In practice, C1QL is implemented by various JSON-oriented data stores and query engines. Implementations typically rely
C1QL is one of several JSON-focused query languages used with document databases. It is often discussed in
---