You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We would like to request the addition of more detailed information about the query or mutation request, specifically the name of the operation. This enhancement would allow us to access and utilize the operation name within our implementations.
The text was updated successfully, but these errors were encountered:
Currently, the GatewayGraphQLRequest interface includes the following properties:
export interface GatewayGraphQLRequest {
query?: string;
operationName?: string;
variables?: Record<string, any>;
extensions?: Record<string, any>;
http?: GatewayHTTPRequest;
}
We would like to request the addition of more detailed information about the query or mutation request, specifically the name of the operation. This enhancement would allow us to access and utilize the operation name within our implementations.
The text was updated successfully, but these errors were encountered: