Readonly[toAn array of ObservableQuery objects corresponding 1:1 to TResult values
in the results arrays (both the result property and the resolved value).
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.
Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The resolved value cannot be modified from the callback.
Optionalonfinally: (() => void) | nullThe callback to execute when the Promise is settled (fulfilled or rejected).
A Promise for the completion of the callback.
The result of client.refetchQueries is thenable/awaitable, if you just want an array of fully resolved results, but you can also access the raw results immediately by examining the additional
queriesandresultsproperties of theRefetchQueriesResult<TResult> object.