@twilio/flex-sdk
    Preparing search index...
    interface Input {
        context?: DefaultContext;
        errorPolicy?: "A default option for query.errorPolicy must be declared in ApolloClient.DeclareDefaultOptions before usage. See https://www.apollographql.com/docs/react/data/typescript#declaring-default-options-for-type-safety.";
        fetchPolicy?: FetchPolicy;
        query?: DocumentNode | TypedDocumentNode<any, any>;
        variables?: any;
    }

    Hierarchy

    Index

    Properties

    context?: DefaultContext

    If you're using Apollo Link, this object is the initial value of the context object that's passed along your link chain.

    1. Networking options
    errorPolicy?: "A default option for query.errorPolicy must be declared in ApolloClient.DeclareDefaultOptions before usage. See https://www.apollographql.com/docs/react/data/typescript#declaring-default-options-for-type-safety."
    fetchPolicy?: FetchPolicy

    Specifies how the query interacts with the Apollo Client cache during execution (for example, whether it checks the cache for results before sending a request to the server).

    For details, see Setting a fetch policy.

    The default value is cache-first.

    1. Caching options
    query?: DocumentNode | TypedDocumentNode<any, any>

    A GraphQL query string parsed into an AST with the gql template literal.

    1. Operation options
    variables?: any

    An object containing all of the GraphQL variables your query requires to execute.

    Each key in the object corresponds to a variable name, and that key's value corresponds to the variable value.

    1. Operation options