Apollo Client is a comprehensive GraphQL state management library for JavaScript. It enables you to manage both local and remote data with GraphQL. Use it to fetch, cache, and modify application data, all while automatically updating your UI.
Apollo Client helps you structure code in an economical, predictable, and declarative way thats consistent with modern development practices. The core @apollo/client library provides built-in integration with React, and the larger Apollo community maintains integrations for other popular view layers[1].
Core featuresSome of Apollo Clients core capabilities include:
Declarative data fetching: Write a query and receive data without manually tracking loading states.
Normalized request and response caching: Boost performance by responding almost immediately to queries with cached data.
Excellent developer experience: Enjoy helpful tooling for...