如何将参数传递给graphql查询?

时间:2017-01-13 10:15:05

标签: meteor meteor-blaze graphql apollo

我正在尝试在Meteor大火项目中使用Apollo graphql。

我正在使用swydo:blaze-apollo中的包。 可以使用graphql查询从mongoDB获取数据。

// Using this one can get data
const LOCATION_COUNTRY_QUERY = gql`
{
    locations(location_type: "Country"){
        location_id
        name
        iso_code
    }
}
`;

Template.home.onCreated(function(){
    const country = this.gqlQuery({query: LOCATION_COUNTRY_QUERY}).get();
    console.log(country.locations); // Which will show an array list of country.
});

但是,我不想在查询中硬编码“Country”。我想将String传递给查询,然后使用其他location_type获取数据。但我找不到任何关于它的文章和gql语法只是阻止任何参数。

任何人都有类似的经历,可以提出任何建议吗?

1 个答案:

答案 0 :(得分:3)

您可以使用GraphQL变量来完成工作。 首先,将变量声明为LOCATION_COUNTRY_QUERY

const LOCATION_COUNTRY_QUERY = gql`
query locationCountryQuery($locationType: String!){
    locations(location_type: $locationType){
        location_id
        name
        iso_code
    }
}
`;

现在,您可以为查询提供新的variables选项:

Template.home.onCreated(function(){
    const country = this.gqlQuery({query: LOCATION_COUNTRY_QUERY, variables: {locationType: "Country"}).get();
    console.log(country.locations); // Which will show an array list of country.
});