Hi Everyone,
I’ve been using N1QL for a few months now. All of a sudden metadata is showing up with every N1QL request.
Not sure if this is caused by a different version of CB (4.6) or because CB is being used in a cluster. Is there a simple way to remove this metadata from returning with every request?
Thanks!
Query:
select * from test t where meta(t).id like 'person-%';
Result:
{
"requestID": "0b19e917-6053-4a06-9505-b11045431301",
"clientContextID": "01a5a2a9-5f99-4636-854c-c9ceda5d4284",
"signature": {
"*": "*"
},
"results": [
{
"t": {
"first-name": "Ryan",
"last-name": "Smith"
}
}
]
}