Home
last modified time | relevance | path

Searched refs:ApolloClient (Results 1 – 8 of 8) sorted by relevance

/expo/home/api/__tests__/
H A DAuthSessions-test.js52 const ApolloClient = require('../ApolloClient').default; constant
53 const apolloLinkRequest = jest.spyOn(ApolloClient.link, 'request');
75 await ApolloClient.query({
88 ApolloClient.resetStore();
/expo/home/
H A DApp.tsx10 import ApolloClient from './api/ApolloClient';
25 <ApolloProvider client={ApolloClient}>
H A DHomeApp.tsx14 import ApolloClient from './api/ApolloClient';
106 ApolloClient.query<Home_CurrentUserActorQuery, Home_CurrentUserActorQueryVariables>({
163 const homeScreenData = await ApolloClient.query<
/expo/home/redux/
H A DSessionActions.ts3 import ApolloClient from '../api/ApolloClient';
33 ApolloClient.resetStore();
/expo/home/screens/DeleteAccountScreen/
H A Dutils.ts1 import { ApolloClient } from '@apollo/client';
8 client: ApolloClient<any>,
/expo/home/api/
H A DApolloClient.ts1 import { ApolloClient, InMemoryCache, from } from '@apollo/client';
77 export default new ApolloClient({
/expo/home/screens/AccountModal/
H A DLoggedOutAccountView.tsx9 import ApolloClient from '../../api/ApolloClient';
114 const viewerPrimaryAccountNameResult = await ApolloClient.query<
/expo/home/screens/HomeScreen/
H A DHomeScreenView.tsx27 import ApolloClient from '../../api/ApolloClient';
253 ? ApolloClient.query<HomeScreenDataQuery, HomeScreenDataQueryVariables>({