Top "Apollo-client" questions

Apollo Client is a JavaScript library for building client UIs that fetch data using GraphQL.

how to use enum in apollo-client?

the enum define in OrderTypesEnum.gql enum OrderTypes { full_buy pink_buy } import OrderTypesEnum.gql file import OrderTypes from '@/…

graphql apollo apollo-client vue-apollo
Is it possible to prevent `useLazyQuery` queries from being re-fetched on component state change / re-render?

Currently I have a useLazyQuery hook which is fired on a button press (part of a search form). The hook …

graphql apollo react-hooks react-apollo apollo-client
React: UI Flickering When State Updated

I have a component that displays search data returned from the Spotify API. However, every time I update the state …

javascript reactjs react-apollo apollo-client react-hooks