// @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 NockReturnValue = [number, ServerResponse];