refetch method

Future<T?> refetch()

Manually triggers a network re-fetch for this query, returning the resolved result.

await userQuery.refetch();

Implementation

Future<T?> refetch() async => _executeFetch();