Browse Source

remove need for index from dynamo connector

pull/4434/head
Martin McKeaveney 4 years ago
parent
commit
1e179fec76
  1. 10
      packages/server/src/integrations/dynamodb.ts

10
packages/server/src/integrations/dynamodb.ts

@ -169,13 +169,11 @@ module DynamoModule {
IndexName: query.index ? query.index : undefined,
...query.json,
}
if (query.index) {
const response = await this.client.query(params).promise()
if (response.Items) {
return response.Items
}
return response
const response = await this.client.query(params).promise()
if (response.Items) {
return response.Items
}
return response
}
async scan(query: { table: string; json: object; index: null | string }) {

Loading…
Cancel
Save