and a runtime for fulfilling those queries with your existing data. It gives clients the power to ask for exactly what they need and nothing more. This makes things easier to evolve APIs over time, and enables powerful developer tools.
you can incrementally add to your stack: - Apollo Client to connect data to your UI - Apollo Engine for infrastructure and tooling - Apollo Server to translate your REST API and backends into a GraphQL schema Apollo team is the same team behind Meteor.js.
It allows developers to bind GraphQL data to the UI with one single function call. Apollo Client works with every frontend platform: React, Vue.js, Angular, iOS, etc.
such as: - Declarative data fetching: all of the logic for retrieving your data, tracking loading and error states, and updating your UI is encapsulated in a single Query component. - Zero-config caching: cache out of the box with no additional configuration required. - Combine local & remote data: use apollo-link-state add client-side only fields to your remote data seamlessly and use Apollo cache as the single source of truth for data in your application. - GraphQL subscriptions support: push data from the server to the clients that choose to listen to real time messages from the server.
can be queried from any GraphQL client, including Apollo Client. Apollo Server Apollo Server implements a spec-compliant GraphQL server which can be queried from any GraphQL client, including Apollo Client.
standing up a GraphQL server in front of whatever you already have today. It is 100% open-source JavaScript. Today it is in beta and recommended for production use.
that allows you to inspect your schema and run queries. - It has standard patterns out of the box, and everything is wired up for you: error handling, caching (including whole query caching, partial query caching), etc. - Apollo Server 2 supports subscriptions out of the box. - It is shipped with an opt-in Apollo Engine integration. - Interesting reading at dev-blog.apollodata.com/apollo-server-2-0-30c9bbb4ab5e
HTTP headers. It can be used with Redis, Memcache, etc. It automatically handles batching for a single request lifecycle and perfectly integrates with the concept of whole/partial query caching.
Apollo team has been working with Cloudflare to build GraphQL inside a Cloudflare edge worker. Hence you can use Apollo Server at the edge. Cloudflare has something like 151 pops around the world. However, this isn't quite ready for production. More details apollographql.com/edge.
backend services. It compares queries from active clients against the proposed schema. It understands the impact of the change you're going to make even against the third-parties that are using your API. It can give you a field-by-field view of how expensive each thing is.