@wppconnect/wa-js - v4.6.0
    Preparing search index...

    Interface MexRequest

    A Relay request document, as generated in the *.graphql WhatsApp modules.

    fetchQuery only reads params from it — the operation is sent to MEX as a persisted query (params.id + variables), which is why params.text is always null in WhatsApp's own documents.

    interface MexRequest {
        kind: "Request";
        params: {
            id: string;
            metadata: Record<string, unknown>;
            name: string;
            operationKind: "query" | "mutation";
            text: null;
        };
    }
    Index
    kind: "Request"
    params: {
        id: string;
        metadata: Record<string, unknown>;
        name: string;
        operationKind: "query" | "mutation";
        text: null;
    }