interface GraphQLResponseOptions<T> {
    handleErrors?: boolean;
    onResponse?: (response: GraphQLClientResponse<T>) => void;
}

Type Parameters

  • T

Properties

handleErrors?: boolean
onResponse?: (response: GraphQLClientResponse<T>) => void