I was browsing the Couchbase forums and I came across a question regarding queries against array data in Couchbase. Coming from a relational database, I too once struggled to grasp the concept of querying complex formatted JSON data with SQL.

How do you query within these embedded NoSQL documents? There are numerous ways, none of which are particularly difficult.  We’re going to examine some of the complex query possibilities.

In case you’re curious about the question I stumbled upon, it can be found here. The user wanted to know how to query for objects that were nested in an array for a single document. The proposed document model looked similar to this:

The end goal was to be able to get each object in a query based on a WHERE condition that included the nested type property.

One way to do this is to write a N1QL query that looks like the following:

In the above query we are performing a SELECT from a Couchbase Bucket called forum and flattening the array using the UNNEST keyword.  The flattened result set would look like the following before applying the WHERE condition:

The WHERE condition will return us a single result instead of two, where the single result is of a gaming type as per our query.

So is this the only way to accomplish what we’ve just done? Absolutely not!

Take the following N1QL query:

In the above query we are not first flattening the array in Couchbase with an UNNEST operation. Instead we are using one of the collection operators to find array items that meet our criteria.

Are there other ways to get the job done? Of course there are, but these two should be enough to get you started when it comes to querying arrays in Couchbase with N1QL and the UNNEST keyword.

If you need more help with N1QL, check out the Couchbase Developer Portal for other examples.

Author

Posted by Nic Raboy, Developer Advocate, Couchbase

Nic Raboy is an advocate of modern web and mobile development technologies. He has experience in Java, JavaScript, Golang and a variety of frameworks such as Angular, NativeScript, and Apache Cordova. Nic writes about his development experiences related to making web and mobile development easier to understand.

2 Comments

  1. […] a recent article, I wrote about flattening and querying arrays in Couchbase using N1QL.  That article was inspired by a popular question in the Couchbase Forums.  After publishing the […]

  2. Is there a way for use to NEST these results into an array? For example:

    {
    "id": "order-1",
    "type": "order",
    "items": [
    {
    "id": "pokemon-blue",
    "type": "gaming",
    "name": "Pokemon Blue"
    }
    ]
    }

Leave a reply