UNPKG

graphql-query-test-mock

Version:

Mock queries to your GraphQL backend in your Jest tests.

12 lines (9 loc) 288 B
// @flow strict export type Variables = { +[key: string]: mixed }; export type Data = { [key: string]: mixed }; export type Error = { [key: string]: mixed }; export type ServerResponse = { errors?: Array<Error>, data: Data }; export type NockReturnValue = [number, ServerResponse];