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' |
}
|
]
|
}
|