作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我无法通过 graphql 操场在 Strapi 中获得使用“OR”条件的 WHERE 语句。
我想返回“标题”或“内容”字段包含 search_text 的所有结果。
我尝试了以下方法:
articles(where: {
or: [
{"title_contains" : "search_text"},
{"content_contains" : "search_text"}
]
}) {
title
content
}
where: { "title_contains" : "sometext" }
where: {
"title_contains" : "search_text",
"content_contains" : "search_text"
}
最佳答案
截至 7 月,可以这样做
(where: { _or: [{ someField: "1" }, { someField2: "2" }] })
关于graphql - 如何在 graphql where 语句中添加 OR 条件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57619456/
我是一名优秀的程序员,十分优秀!