在AWS Appsync中获取计数属性

时间:2018-11-11 21:08:13

标签: amazon-dynamodb aws-appsync

我发现在dynamodb中存在“ scannedCount”和“ count”,我可以在Appsync中获取scanCount但没有Count

query getUsers{
     listUsers(filter:{gender:{eq:'m'} limit:10){
       items{
         name
       }
       nextToken
       count
       Count
       scannedCount
     }
}

因此,我得到了这个

{
  "data": {
    "listUsers": {
      "items": [
        {"name": "jenny"},
        {"name": "alice"},
        {"name": "bella"},
        {"name": "april"}
      ],
      "nextToken": null,
      "count": null,
      "Count": null,
      "scannedCount": 4,
    }
  }
}

如何在appsync中获取count属性?

非常感谢 鲁道夫

1 个答案:

答案 0 :(得分:0)

您确实可以访问“ scannedCount”,但不能访问“ count”,并且当前无法通过AppSync访问它。我会将其记录为功能请求。