Is there a way to support the begin param on a bulk get call?
This works for a single get (as per the integration tests):
let sept = await data.get({ table: 'hockey', begin: '2019-09' })
However, for a bulk get, a key is required. The following fails with the error Invalid params: all items must have table and key:
let sept = await data.get([
{ table: 'hockey', begin: '2019-09' },
{ table: 'curling', begin: '2019-09' }
])
Is there a way to support the
beginparam on a bulk get call?This works for a single get (as per the integration tests):
However, for a bulk get, a key is required. The following fails with the error
Invalid params: all items must have table and key: