为什么弹性搜索在 AWS Appsync 中不起作用
Why elastic search does not work in AWS Appsync
我在我的 AWS Amplify 中定义了一个模型,如下所示:
type Report
@model
@searchable
{
id: ID!
title: String!
location: String!
}
虽然我可以创建项目并列出它们,但是,我无法使用搜索查询获取项目:
看上图,searchReports
returns什么都没有,而我有很多标题为T
的报告,因为可以在listReports
的结果中看到。
弹性搜索仅适用于新数据。所以我需要截断 table 并重新填充它。
我在我的 AWS Amplify 中定义了一个模型,如下所示:
type Report
@model
@searchable
{
id: ID!
title: String!
location: String!
}
虽然我可以创建项目并列出它们,但是,我无法使用搜索查询获取项目:
看上图,searchReports
returns什么都没有,而我有很多标题为T
的报告,因为可以在listReports
的结果中看到。
弹性搜索仅适用于新数据。所以我需要截断 table 并重新填充它。