AppSync-查询在日期范围内创建的所有项目?

时间:2019-01-02 09:20:05

标签: elasticsearch graphql aws-appsync aws-amplify amplifyjs

我正在尝试查询我的商品(其中包含AWS DateTime的CreatedAt和UpdatedAt字段)以查找特定日期范围内的所有商品。例如,过去48小时。

例如,使用以下模式:

type Note @model @searchable @auth(rules: [{ allow: owner }]) {
  id: ID!
  note: String
  createdAt: AWSDateTime

我可以使用以下方式搜索日期:

query {
  searchNotes(filter:{createdAt: { matchPhrasePrefix: "2018-12-27"}}) {
    items{
      id
        title
      createdAt
    }
  }
}

将返回所有与UTC时间匹配且带有该字符串前缀的音符。

从那里,我必须使用moment.diff()或其他方法对自己进行排序。

我不确定是否有使用AppSync和GraphQl按日期和时间进行搜索/过滤的更好/更有效的方法?

谢谢。

2 个答案:

答案 0 :(得分:8)

在撰写本文时(2019年1月3日),最简单的方法是将日期存储为整数(例如,自历元以来的秒数),这将在自动更新中打开gt, lt, gte, ...过滤器字段生成的搜索解析器过滤器输入。

另一种解决方案是使用AWS AppSync控制台或您自己的CloudFormation堆栈编写自己的解析程序。编写自己的解析器时,您可以利用整个Elasticsearch DSL来实现各种查询(请参阅https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-range-query.html)。要沿这条路线走,您可以在架构中的“查询”类型中添加自己的搜索字段,并编写自定义解析器。

type Query {
  searchNotesByCreatedAt(start: String!, end: String!): NotesConnection
}

然后通过控制台或您自己的CloudFormation堆栈,您可以编写这样的解析器:

{
  "version": "2017-02-28",
  "operation": "GET",
  "path": "/note-<your-api-id>/doc/_search", // created by amplify
  "params": {
    "body": {
      "sort": [{ "createdAt" : {"order" : "desc"}}],
      "query": {
        "range" : {
            "createdAt" : {
                "gte": $ctx.args.start, 
                "lte": $ctx.args.end
            }
        }
      }
    }
  }
}

您只需要使用控制台或您自己的CF堆栈临时部署此解析器。正在做一些工作,以允许您从放大CLI中编写自己的解析器。有关如何工作的更多信息,请参见https://github.com/aws-amplify/amplify-cli/issues/574

让我知道这是否对您有用。

答案 1 :(得分:1)

您可以使用此查询来过滤2 AWSDateTime

query {
  searchNotes(filter:{createdAt: { between: ["2018-12-27T00:00:00", "2019-01-27T00:00:00"]}}) {
    items{
      id
        title
      createdAt
    }
  }
}