Skip to content

Instantly share code, notes, and snippets.

@andycarrell
Created September 10, 2019 03:27
Show Gist options
  • Save andycarrell/6692882fa4052bfb7cf0f2cb0eb3f2ed to your computer and use it in GitHub Desktop.
Save andycarrell/6692882fa4052bfb7cf0f2cb0eb3f2ed to your computer and use it in GitHub Desktop.
import { useEffect } from "react";
import { useLazyQuery } from "@apollo/react-hooks";
function useDeferredQuery(query) {
const [load] = useLazyQuery(query);
useEffect(load, []);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment