[React + GraphQL] Use useLazyQuery to manually execute a query with Apollo React Hooks

When using useQuery from Apollo React Hooks, the request will be sent automatically after the component has been mounted. This might not be the desired behaviour as we might want to send the request in response to user action (for instance, after a button click).

In this lesson we're going to learn how to use useLazyQuery hook to execute a query manually in order to fetch dog pictures.

 

复制代码
import React, { Fragment, useState } from "react";
import { gql } from "apollo-boost";
import { useLazyQuery } from "@apollo/react-hooks";

const GET_DOGGO = gql`
  query Dog($breed: String!) {
    dog(breed: $breed) {
      id
      displayImage
    }
  }
`;

const App = () => {
  const [breed, setBreed] = useState("dingo");
  const [getDog, { loading, data }] = useLazyQuery(GET_DOGGO);

  if (loading) {
    return <h2>Loading...</h2>;
  }

  return (
    <Fragment>
      {data && data.dog ? (
        <img
          alt="Cute Doggo"
          src={data.dog.displayImage}
          style={{ height: 500, width: 500 }}
        />
      ) : null}
      <input
        type="text"
        onChange={event => setBreed(event.target.value)}
        placeholder="Choose breed"
      />
      <button
        onClick={() =>
          getDog({
            variables: { breed }
          })
        }
      >
        Get dog
      </button>
    </Fragment>
  );
};

export default App;
复制代码

 

posted @   Zhentiw  阅读(1510)  评论(0编辑  收藏  举报
编辑推荐:
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· AI技术革命,工作效率10个最佳AI工具
历史上的今天:
2018-08-29 [React] Prevent Unnecessary Rerenders of Compound Components using React Context
2018-08-29 [React] Validate Compound Component Context Consumers
2018-08-29 [AngularJS] ocLazyLoad -- Lazy loaded module should contain all the dependencies code
2018-08-29 [Angular] 'providedIn' for service
2017-08-29 [Angular] Protect The Session Id with https and http only
2016-08-29 [GIF] The Phase Property in GIF Loop Coder
2016-08-29 [GIF] GIF Loop Coder Single Mode
点击右上角即可分享
微信分享提示