export interface IGqlRequest {
    operationName: string;
    query: string;
    variables: Object;
}
