作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我正在使用的当前 graphQL 的模拟。
const aDynamicListOfFieldsComingFromElsewhere = 'foo bar anotherField etc'
const query = gql`{
QueryResult: TableName {
Data {
id
name
${aDynamicListOfFieldsComingFromElsewhere}
}
}
}`
Invalid interpolation - fragment interpolation must occur outside of the brackets graphql/template-strings
最佳答案
您可以为此使用指令。 GraphQL 规范:https://graphql.org/learn/queries/#directives
查询应如下所示:
const query = gql`
query QueryResult($withFoo: Boolean!, $withBar: Boolean!, $withAnotherField: Boolean!, $withEtc: Boolean!) {
Data {
id
name
foo @include(if: $withFoo)
bar @include(if: $withBar)
anotherField @include(if: $withAnotherField)
etc @include(if: $withEtc)
}
}
`
{
withFoo: true,
withBar: true,
withAnotherField: false,
withEtc: true
}
关于graphql - 如何将字段列表片段插值移到括号之外,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60419837/
我是一名优秀的程序员,十分优秀!