About 25,700 results
Open links in new tab
  1. Introduction to Apollo Client - Apollo GraphQL Docs

    Apollo Client helps you structure code in an economical, predictable, and declarative way that's consistent with modern development practices. The core @apollo/client library provides built-in …

  2. Get started with Apollo Client - Apollo GraphQL Docs

    Learn how to set up your React app, fetch GraphQL data, and integrate Apollo Client seamlessly into your UI with this step-by-step tutorial.

  3. Queries - Apollo GraphQL Docs

    This article shows how to fetch GraphQL data in React with the useQuery hook and attach the result to your UI. You'll also learn how Apollo Client simplifies data management code by tracking error and …

  4. Apollo Client - GraphQL Tutorials

    Apollo Client is a library that helps us make requests and manage data in our frontend applications using GraphQL. It comes with a powerful cache and state management capabilities that make it a natural …

  5. Get started - Apollo GraphQL Docs

    While you don't need React or another front-end framework just to fetch data with Apollo Client, our view layer integrations make it easier to bind your queries to your UI and reactively update your …

  6. GraphQL query best practices - Apollo Docs

    One of GraphQL's biggest advantages over a traditional REST API is its support for declarative data fetching. Each component can (and should) query exactly the fields it requires to render, with no …

  7. Full-stack React + GraphQL Tutorial - Apollo GraphQL Blog

    Mar 3, 2017 · However, despite the great advantages of using GraphQL, the first step can be a bit daunting. That’s why I’ve started writing a series of tutorials that take you step by step through …

  8. Client-side GraphQL with React & Apollo

    Jul 2, 2025 · Client-side GraphQL with React & Apollo We'll implement a GraphQL-powered frontend app using Apollo Client (React).

  9. Why Apollo Client? - Apollo GraphQL Docs

    Apollo Client's useQuery hook leverages React's Hooks API to bind a query to a component, enabling that component to render a query's results immediately. The useQuery hook encapsulates the logic …

  10. Handling operation errors - Apollo GraphQL Docs

    React hooks like useQuery and useMutation provide errors through the error property in their return value, regardless of error policy. The error policy affects whether data is populated alongside the error.