我有一系列带有引用标签的文章:
_type: "article",
tags: [
{
_id: "123",
_rev: "123",
_type: "articleTag",
key: { _type: "slug", current: "news" },
title: "News",
_type: "string"
},
...
],
尝试创建所有文章的查询包含多个标签的数组:
*[ _type == "article" && tags[].key.current in *["news, news2"]._id ]{...,"tags": tags[]->}
但我得到一个错误:No function in() defined for arguments (array, array)