在graphql查询中连接变量和sting

时间:2018-05-06 14:10:52

标签: reactjs graphql-js

我尝试将my/custom/path/添加到$path变量但不知道如何执行此操作。已经查看过文档,但无法找到任何提及此内容的文章。

export const postQuery = graphql`
    query BlogPostByPath($path: String!) {
        markdownRemark(frontmatter: { path: { eq: $path } }) {
            html
            frontmatter {
                path
                title
                description
                keywords
            }
        }
    }
`;

1 个答案:

答案 0 :(得分:1)

如果您使用Gatsby,请尝试:

graphql(`<your_query_with_variable>`, { variable: <value_of_variable> })

来源:Passing a string to GraphQL queries argument.