Home
last modified time | relevance | path

Searched refs:withErrorHandlingAsync (Results 1 – 3 of 3) sorted by relevance

/expo/packages/@expo/cli/src/api/graphql/queries/
H A DUserQuery.ts4 import { graphqlClient, withErrorHandlingAsync } from '../client';
8 const data = await withErrorHandlingAsync(
H A DAppQuery.ts5 import { graphqlClient, withErrorHandlingAsync } from '../client';
10 const data = await withErrorHandlingAsync(
/expo/packages/@expo/cli/src/api/graphql/
H A Dclient.ts76 export async function withErrorHandlingAsync<T>(promise: Promise<OperationResult<T>>): Promise<T> { function