React-Apollo:将组件状态传递给查询变量

时间:2018-01-18 19:53:59

标签: reactjs apollo react-apollo

是否有可能以某种方式将组件状态注入查询选项? 像道具一样的东西?

options: (ownProps : any, ownState???) =>{
        console.log(a)
        return {
            variables: {
                name : ownProps.name
                id:  ownState.id <-------------------------

            }

1 个答案:

答案 0 :(得分:2)

为了回答我自己的问题,我发现阿波罗的重新获取方法根据文件

The variables argument will replace variables used with either the query option or the query from your graphql()

这解决了这个问题。