如何在Apollo-Client中进行查询?

时间:2017-09-23 11:18:07

标签: graphql apollo react-apollo

使用REST-API,我们可以进行获取查询而不是向服务器进行查询。 我使用“Apollo-client”,但我想在将此查询连接到组件时创建查询。我可以做吗? 可能我应该使用方法client.query(http://dev.apollodata.com/core/apollo-client-api.html#ApolloClient.query)和client.mutate或类似的东西?

1 个答案:

答案 0 :(得分:4)

const apolloClient = new ApolloClient({
networkInterface: createNetworkInterface({uri: 'http://localhost:3003/graphql'})
});;

const loginQueruy = gql `Your query code here`,

然后在代码中

const apolloQuery = {
        query: loginQuery,
    };
apolloClient
        .query(apolloQuery)
        .then((res) => {
            console.log("RES", res)
        })