useQuery<TParsed> function

QueryHookResult<TParsed> useQuery<TParsed>(
  1. QueryOptions<TParsed> options
)

Implementation

QueryHookResult<TParsed> useQuery<TParsed>(QueryOptions<TParsed> options) {
  final client = useGraphQLClient();
  return useQueryOnClient(client, options);
}