lemol / umi-plugin-apollo

Apollo graphql plugin for umi
49 stars 3 forks source link

How to get apollo client? #14

Closed zven21 closed 5 years ago

zven21 commented 5 years ago

HI, I would like to know how to get apollo client?

because <Query /> cannot meet all my scenes. so i try to use

client.query({
   query: G.XXX,
   variables: { term: { } },
}).then()

Thanks. :smile:

wanxger commented 5 years ago

https://www.apollographql.com/docs/react/essentials/queries/#manually-firing-a-query

zven21 commented 5 years ago

thank you.