// @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, data: Data }; export type ServerErrorResponse = { data?: Data; errors: Array; }; export type NockReturnValue = [number, ServerResponse | ServerErrorResponse];