@twilio/flex-sdk
    Preparing search index...
    interface AdditionalProperties<TResult> {
        queries: ObservableQuery<any, OperationVariables>[];
        results: InternalRefetchQueriesResult<TResult>[];
    }

    Type Parameters

    • TResult

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    queries: ObservableQuery<any, OperationVariables>[]

    An array of ObservableQuery objects corresponding 1:1 to TResult values in the results arrays (both the result property and the resolved value).

    results: InternalRefetchQueriesResult<TResult>[]

    An array of results that were either returned by onQueryUpdated, or provided by default in the absence of onQueryUpdated, including pending promises.

    If onQueryUpdated returns false for a given query, no result is provided for that query.

    If onQueryUpdated returns true, the resulting Promise<ApolloQueryResult<any>> is included in the results array instead of true.