docs/source/api/react/useLazyQuery.mdx
A tuple of two values:
<ManualTuple> <ManualTupleItem name="execute" type="(options?: LazyQueryHookOptions<TVariables>) => Promise<LazyQueryResult<TData, TVariables>>" > Function that can be triggered to execute the query. The `useLazyQuery` function returns a promise that fulfills with a query result when the query succeeds or fails. </ManualTupleItem> <ManualTupleItem name="result" type="QueryResult<TData, TVariables>" canonicalReference="@apollo/client/react!useLazyQuery.DocumentationTypes.useLazyQuery.Result:interface" > The result of the query. See the `useQuery` hook for more details. </ManualTupleItem> </ManualTuple> </FunctionDetails>