graphQL:在字符串中使用变量
我正在使用 Strapi V4 插件系统,我想查询与特定帖子相关的所有评论。 默认的 graphql 请求看起来像这样:
query () {
findAllFlat (relation: "api::post.post:77") {
data {
...
}
}
}
但是我需要添加一个变量而不是 77,理想情况下我想做这样的事情:
query ($postId:ID!) {
findAllFlat (relation: "api::post.post:${postId}") {
data {
...
}
}
}
但是当然,字符串模板不适用于 graphQL。还有别的办法吗?
I'm using strapi V4 plugin system and I want to query all comments relative to a specific post.
The default graphql request look like that :
query () {
findAllFlat (relation: "api::post.post:77") {
data {
...
}
}
}
But I need to add a variable instead of 77, ideally I would like to do something like this :
query ($postId:ID!) {
findAllFlat (relation: "api::post.post:${postId}") {
data {
...
}
}
}
But of course, string template doesn't work with graphQL. Is there another way ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论