@twilio/flex-sdk
    Preparing search index...
    interface Options {
        assumeImmutableResults?: boolean;
        cache: ApolloCache;
        clientAwareness?: ClientAwarenessOptions;
        dataMasking?: boolean;
        defaultContext?: Partial<DefaultContext>;
        defaultOptions?: DefaultOptions;
        devtools?: DevtoolsOptions;
        documentTransform?: DocumentTransform;
        enhancedClientAwareness?: EnhancedClientAwarenessOptions;
        experiments?: Experiment[];
        incrementalHandler?: Handler<any>;
        link: FlexDataClientLink;
        localState?: LocalState<Resolvers<DefaultContext>, DefaultContext>;
        queryDeduplication?: boolean;
        ssrForceFetchDelay?: number;
        ssrMode?: boolean;
    }
    Index

    Properties

    assumeImmutableResults?: boolean

    If true, Apollo Client will assume results read from the cache are never mutated by application code, which enables substantial performance optimizations.

    false

    cache: ApolloCache

    The cache that Apollo Client should use to store query results locally. The recommended cache is InMemoryCache, which is provided by the @apollo/client package.

    For more information, see Configuring the cache.

    clientAwareness?: ClientAwarenessOptions
    dataMasking?: boolean

    Determines if data masking is enabled for the client.

    false
    
    defaultContext?: Partial<DefaultContext>
    defaultOptions?: DefaultOptions

    Provide this object to set application-wide default values for options you can provide to the watchQuery, query, and mutate functions. See below for an example object.

    See this example object.

    devtools?: DevtoolsOptions

    Configuration used by the Apollo Client Devtools extension for this client.

    3.11.0

    documentTransform?: DocumentTransform
    enhancedClientAwareness?: EnhancedClientAwarenessOptions
    experiments?: Experiment[]

    Allows passing in "experiments", experimental features that might one day become part of Apollo Client's core functionality. Keep in mind that these features might change the core of Apollo Client. Do not pass in experiments that are not provided by Apollo.

    incrementalHandler?: Handler<any>

    Determines the strategy used to parse incremental chunks from @defer queries.

    An ApolloLink instance to serve as Apollo Client's network layer. For more information, see Advanced HTTP networking.

    localState?: LocalState<Resolvers<DefaultContext>, DefaultContext>
    queryDeduplication?: boolean

    If false, Apollo Client sends every created query to the server, even if a completely identical query (identical in terms of query string, variable values, and operationName) is already in flight.

    true

    ssrForceFetchDelay?: number

    The time interval (in milliseconds) before Apollo Client force-fetches queries after a server-side render.

    0 (no delay)

    ssrMode?: boolean

    When using Apollo Client for server-side rendering, set this to true so that the getDataFromTree function can work effectively.

    false