@twilio/flex-sdk
    Preparing search index...

    The input object provided to ApolloLink.execute to send a GraphQL request through the link chain.

    interface Request {
        context?: DefaultContext;
        extensions?: Record<string, any>;
        query: DocumentNode;
        variables?: OperationVariables;
    }
    Index

    Properties

    context?: DefaultContext

    Context provided to the link chain. Context is not sent to the server and is used to communicate additional metadata from a request to individual links in the link chain.

    extensions?: Record<string, any>

    A map of extensions that will be sent with the GraphQL request to the server.

    The parsed GraphQL document that will be sent with the GraphQL request to the server.

    variables?: OperationVariables

    The variables provided for the query.