Can anyone help me with Java N1Ql Equivalent to the following native query
SELECT *
FROM my_bucket
WHERE ANY v IN labels SATISFIES v = “soft_engg” END;
Can anyone help me with Java N1Ql Equivalent to the following native query
SELECT *
FROM my_bucket
WHERE ANY v IN labels SATISFIES v = “soft_engg” END;
@Saurav_Dudeja You can try out https://couchbase.live/examples/basic-java-query-positional-param this has the example for what you are looking for. Hope this helps