Advertisement
Guest User

Untitled

a guest
Sep 21st, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. import { useEffect } from "react";
  2. import { useLazyQuery } from "@apollo/react-hooks";
  3.  
  4. function useDeferredQuery(query) {
  5. const [load] = useLazyQuery(query);
  6.  
  7. useEffect(load, []);
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement