From d68b532e935e9bf62076271803ecaa130bc32cc8 Mon Sep 17 00:00:00 2001 From: oscerd Date: Mon, 7 Sep 2026 10:05:38 +0000 Subject: [PATCH] Regen for commit 2714beb62ed0a3626488d2cc056ce2bad13eef3e Signed-off-by: GitHub --- .../main/resources/kamelets/couchbase-source.kamelet.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/library/camel-kamelets/src/main/resources/kamelets/couchbase-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/couchbase-source.kamelet.yaml index 8a80f28f6..c91fb9e31 100644 --- a/library/camel-kamelets/src/main/resources/kamelets/couchbase-source.kamelet.yaml +++ b/library/camel-kamelets/src/main/resources/kamelets/couchbase-source.kamelet.yaml @@ -76,9 +76,13 @@ spec: type: string statement: title: N1QL Statement - description: The N1QL query to run against the bucket on each poll. Used unless useView is true. + description: >- + The N1QL query to run against the bucket on each poll. Used unless useView is true. + The query runs in the bucket scope, so the keyspace is the collection - use _default + for the default collection rather than the bucket name. It must also alias the document + id as __id, because rows without that field are skipped. type: string - example: "SELECT * FROM `travel-sample` LIMIT 10" + example: "SELECT META().id AS __id, * FROM _default" useView: title: Use View description: Poll a MapReduce view instead of running the N1QL statement.