Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.
at main 606 B view raw
1export * from '@urql/core'; 2 3export * from './useClientHandle'; 4export { install, provideClient } from './useClient'; 5 6export { useQuery } from './useQuery'; 7 8export type { UseQueryArgs, UseQueryResponse, UseQueryState } from './useQuery'; 9 10export { useSubscription } from './useSubscription'; 11 12export type { 13 UseSubscriptionArgs, 14 UseSubscriptionResponse, 15 SubscriptionHandlerArg, 16 SubscriptionHandler, 17} from './useSubscription'; 18 19export { useMutation } from './useMutation'; 20 21export type { UseMutationResponse } from './useMutation'; 22 23import { install } from './useClient'; 24 25export default install;