Description
The is no way to access to the row key and doc id.
> await bucket.viewQuery(...);
|
|
{
|
meta: { total_rows: 2, rows: [] }, |
rows: [ null, null ] |
}
|
the expected maybe it should be
{
|
meta: { total_rows: 2, rows: [] }, |
rows: [
|
{
|
doc: null, |
key: [Array],
|
id: 'doc1' |
},
|
{
|
doc: null, |
key: [Array],
|
id: 'doc2' |
}
|
]
|
}
|
Attachments
For Gerrit Dashboard: JSCBC-676 | ||||||
---|---|---|---|---|---|---|
# | Subject | Branch | Project | Status | CR | V |
121700,2 | FIX JSCBC-676 | master | couchnode | Status: ABANDONED | -2 | 0 |
127258,2 | JSCBC-676: Fixed view query to return proper row object. | master | couchnode | Status: MERGED | +2 | +1 |