apollographql/apollo-server

🌍  Spec-compliant and production ready JavaScript GraphQL server that lets you develop in a schema-first way. Built for Express, Connect, Hapi, Koa, and more.

View on GitHub ↗Jump to charts ↓

Summary Information

Updated 51 minutes ago
Added to GitGenius on July 13th, 2024
Created on April 21st, 2016
Open Issues & Pull Requests: 88 (+0)
Number of forks: 2,006
Total Stargazers: 13,947 (+0)
Total Subscribers: 193 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 17.2 days
Mean response time: 259.8 days
90th percentile: 733.1 days
Tracked items: 86

How this project is maintained

Around half of the issues opened in the past year never receive a reply. 90% of open issues come from outside the core team, so the backlog reflects real-world use rather than internal planning. Only 5% of issues opened in the past year have been closed. Three people close 79% of everything that gets resolved.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 60
New in 7 days: 0
Closed in 7 days: 0
Avg open age: 1,068 days
Stale 30+ days: 57
Stale 90+ days: 54

Recent activity

Opened in 7 days: 0
Closed in 7 days: 0
Comments in 7 days: 0
Events in 7 days: 0

Top labels

  • ⛲️ feature (90)
  • :memo: documentation (82)
  • :rose: has-reproduction (57)
  • :beetle: bug (46)
  • 🧬 typings (39)
  • ⁉️ question (34)
  • :wilted_flower: needs-reproduction (29)
  • :pear: error-handling (26)

Most active issues this week

No issue events were indexed in the last 7 days.

Detailed Description

Apollo Server is an open-source, spec-compliant GraphQL server built with TypeScript and JavaScript that enables developers to create production-ready GraphQL APIs compatible with any GraphQL client, including Apollo Client. The repository represents a significant evolution in the Apollo ecosystem, with the @apollo/server package marking a major architectural shift from the previous apollo-server package naming convention used in versions prior to Apollo Server 4. The project is designed to support schema-first development and can be deployed as a standalone GraphQL server, as a subgraph in a federated supergraph architecture, or as a gateway for federated supergraphs.

The core functionality of Apollo Server centers on providing a straightforward API for integrating GraphQL with any Node.js web framework or serverless environment. The @apollo/server package includes a minimally-configurable standalone web server that handles CORS and body parsing automatically, eliminating boilerplate setup. Beyond the standalone server, Apollo Server offers integrations with popular Node.js frameworks including Express, Connect, Hapi, Koa, and Restify, allowing developers to embed GraphQL functionality into existing applications. The framework emphasizes incremental adoption, enabling teams to add features progressively as needed rather than requiring comprehensive upfront configuration.

Apollo Server's design philosophy prioritizes universal compatibility with any data source, any build tool, and any GraphQL client, making it suitable for diverse architectural requirements. The server provides production-ready capabilities out of the box, enabling confident deployment in enterprise environments. The documentation is comprehensive and maintained on the Apollo GraphQL documentation site, with getting started guides available for both standalone server and Express middleware configurations. The repository is classified across multiple technical domains including data fetching, schema stitching, resolver implementation, performance optimization, real-time subscriptions, and middleware support, reflecting its comprehensive feature set and flexibility as a GraphQL server solution for Node.js environments.