DynamoDb:查询两个日期之间的项目

时间:2018-08-30 04:46:15

标签: node.js amazon-dynamodb aws-sdk dynamodb-queries

我对这个查询不太满意,它返回0个项目

const { Items } = await this.dynamoDb.query({
  TableName: 'exampleTableName',
  IndexName: 'createdDateTime-index',
  KeyConditionExpression: '#createdDateTime BETWEEN :fromDateTime AND :toDateTime AND #status = :status',
  ExpressionAttributeNames: {
    '#status': 'status',
    '#createdDateTime': 'createdDateTime',
  },
  ExpressionAttributeValues: {
    ':fromDateTime': '2017-02-20T01:58:49.710Z',
    ':toDateTime': new Date().toISOString(),
    ':status': 'SUCCESS',
  },
}).promise();

我在数据库中有一项:

{
  "id": "fa47003a-983a-4dc3-a87e-ace73ea7e451",
  "createdDateTime": "2018-02-20T02:58:49.710Z",
  "status": "SUCCESS"
}

表格:

aws dynamodb create-table \
  --endpoint-url http://localhost:8000 \
  --table-name exampleTableName \
  --attribute-definitions \
    AttributeName=id,AttributeType=S \
    AttributeName=status,AttributeType=S \
    AttributeName=createdDateTime,AttributeType=S \
  --key-schema \
    AttributeName=id,KeyType=HASH \
  --provisioned-throughput ReadCapacityUnits=10,WriteCapacityUnits=10 \
  --global-secondary-indexes \
    IndexName=createdDateTime-index,KeySchema=["{AttributeName=status,KeyType=HASH},{AttributeName=createdDateTime,KeyType=RANGE}"],Projection="{ProjectionType=ALL}",ProvisionedThroughput="{ReadCapacityUnits=10,WriteCapacityUnits=10}"

我希望2018-02-20T02:58:49.710Z介于2017-08-30T03:11:22.627Z之间。

您能帮忙查询吗?

2 个答案:

答案 0 :(得分:0)

如@cementblocks所述,查询按预期工作。

答案 1 :(得分:0)

您是否尝试过使用。扫描而不是。 query

this.dynamoDB.scan(params, onScan); // scan can do filtering 

function onScan(err, data) {
if (err) {
    console.error("Unable to scan the table. Error JSON:", JSON.stringify(err, null, 2));
} else { 
    //do something with data
}

See documentation for FilterExpression Step 4.3: Scan

相关问题