Interface SubscribeMessage

interface SubscribeMessage {
    id: string;
    payload: {
        operationName?: null | string;
        query: string;
        variables?: null | Record<string, unknown>;
    };
    type: "subscribe";
}

Properties

Properties

id: string
payload: {
    operationName?: null | string;
    query: string;
    variables?: null | Record<string, unknown>;
}
type: "subscribe"