gpt4 book ai didi

javascript - 在内容中搜索多个引用字段

转载 作者:行者123 更新时间:2023-12-03 07:06:30 25 4
gpt4 key购买 nike

我想弄清楚如何根据作者(引用)检索特定文章,我当前的函数检索所有文章,但我只想要作者特定的文章

 const resp = yield client.getEntries({
'fields.insightsArticle': true,
'fields.excludeCountries[nin]': country,
'fields.publicationDate[lte]': moment(new Date()).toISOString(),
'fields.author.fields.firstname': author.firstName,
'fields.author.fields.lastname': author.lastName,
content_type: 'insight',
include: 2,
order: '-fields.publicationDate',
limit,
locale,
});

我从内容中获得的当前日志是:
“在搜索引用资料时,您必须指定引用资料的内容类型。请发送内容类型 ID 作为查询参数”

我明白了,因为我将内容类型定义为洞察力。

欢迎任何建议!

最佳答案

我有同样的问题!您可以通过添加来指定引用的内容类型:

'fields.author.sys.contentType.sys.id': 'author'

另外,我会将 content_type: 'insight' 行作为第一个条目并删除限制和语言环境,因为您没有使用这些字段。

关于javascript - 在内容中搜索多个引用字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56951918/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com