DevOverflow
DevOverflow

Reputation: 1712

How make graphql apollo query request inside controller, but not component?

How make graphql apollo query request inside controller, but not component?

In RTK query we can just use something like initiate for example, but what about apollo? Can we make request outside component somewhere on controller?

Upvotes: 0

Views: 33

Answers (1)

Michel Floyd
Michel Floyd

Reputation: 20226

You can use client.query() to run a query outside of a React component. [docs]

Upvotes: 1

Related Questions