Magek Framework
    Preparing search index...

    Interface GraphQLRequestEnvelope

    An Envelope carries a command/event body together with the name of its class. This is important information for the Distributor to work. Each provider has to implement their own Envelope.

    interface GraphQLRequestEnvelope {
        currentUser?: UserEnvelope;
        requestID: UUID;
        context?: ContextEnvelope;
        eventType: EventType;
        connectionID?: string;
        value?: GraphQLClientMessage | GraphQLOperation;
        token?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    currentUser?: UserEnvelope
    requestID: UUID
    context?: ContextEnvelope
    eventType: EventType
    connectionID?: string
    token?: string