The official documentation (https://cloud.google.com/spanner/docs/reads) talks about "keySet" as a query parameter on table.read() being able to use that to say "give me all rows" ({keySet: {all: true}}). I can't find this in our documentation though... Why not?
This gives me all my rows, but isn't documented on the method (https://googlecloudplatform.github.io/google-cloud-node/#/docs/google-cloud/0.49.0/spanner/table?method=read)
table.read({columns: ['id'], keySet: {all: true}}).then(function(data) {
var rows = data[0];
console.log(rows);
});
The official documentation (https://cloud.google.com/spanner/docs/reads) talks about "keySet" as a query parameter on
table.read()being able to use that to say "give me all rows" ({keySet: {all: true}}). I can't find this in our documentation though... Why not?This gives me all my rows, but isn't documented on the method (https://googlecloudplatform.github.io/google-cloud-node/#/docs/google-cloud/0.49.0/spanner/table?method=read)