Skip to content

Instantly share code, notes, and snippets.

@paramsinghvc
Created August 16, 2022 15:58
Show Gist options
  • Save paramsinghvc/68861b8dd71ff5ff2a549e988fcfedbf to your computer and use it in GitHub Desktop.
Save paramsinghvc/68861b8dd71ff5ff2a549e988fcfedbf to your computer and use it in GitHub Desktop.
export function useMeQuery(baseOptions?: Apollo.QueryHookOptions<MeQuery, MeQueryVariables>) {
const options = {...defaultOptions, ...baseOptions}
return Apollo.useQuery<MeQuery, MeQueryVariables>(MeDocument, options);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment