|
| 1 | +import { Cards } from "../../../components/cards" |
| 2 | + |
1 | 3 | # Participating in Development |
2 | 4 |
|
3 | 5 | GraphQL is developed in the open, through [GitHub](https://github.com/graphql) and working group meetings that are open for anyone to attend (so long as they are covered under the [free membership agreement](https://github.com/graphql/graphql-wg/tree/HEAD/membership)). In addition, anybody is welcome to view the [recordings of our meetings on YouTube](https://youtube.graphql.org) |
4 | 6 |
|
5 | | -## First steps |
6 | | - |
7 | | -If you want to get involved in GraphQL, add yourself to the meeting agenda for one of our [working groups or implementations](https://github.com/graphql/graphql-wg/blob/main/GraphQL-TSC.md#about-the-graphql-specification-project), sign the document if you haven't already, and show up! Or, if you prefer, just open a PR against our projects as this will also initiate the spec membership signature process. |
8 | | - |
9 | | -We welcome your participation! |
10 | | - |
11 | 7 | ## Getting up to speed |
12 | 8 |
|
13 | | -All of our work [happens in the open](https://github.com/graphql). In addition, we record our workgroups' meetings on [YouTube](https://youtube.graphql.org). If you are interested in quickly getting up to speed on what's happening in a working group, the meeting minutes and [replays](https://youtube.graphql.org) are a great place to begin. |
| 9 | +All of our work [happens in the open](https://github.com/graphql). In addition, we record our workgroups' meetings on [YouTube](https://youtube.graphql.org). If you are interested in quickly getting up to speed on what's happening in a working group, the meeting minutes (`notes` folder in the relevant repository) and [replays](https://youtube.graphql.org) are a great place to begin. |
14 | 10 |
|
15 | 11 | ## Asking questions |
16 | 12 |
|
17 | 13 | The best place to ask a development-related question is in a working group meeting, or by opening a GitHub issue. Please note that if you have an implementation question, you may get a faster answer by [asking in one of the channels more geared toward users](/community/resources/official-channels/). |
| 14 | + |
| 15 | + |
| 16 | +## GraphQL projects and implementations |
| 17 | + |
| 18 | +<Cards |
| 19 | + items={[ |
| 20 | + |
| 21 | + { |
| 22 | + title: "GraphQL Specification", |
| 23 | + link: "https://github.com/graphql/graphql-spec", |
| 24 | + description: "This is a Working Draft of the Specification for GraphQL, a query language for APIs created by Facebook. The target audience for this specification is not the client developer, but those who have, or are actively interested in, building their own GraphQL implementations and tools. To join in with its development, join the main GraphQL Working Group", |
| 25 | + }, |
| 26 | + { |
| 27 | + title: "GraphQL.js", |
| 28 | + link: "https://github.com/graphql/graphql-js", |
| 29 | + description: "The JavaScript reference implementation for GraphQL.", |
| 30 | + }, |
| 31 | + { |
| 32 | + title: "GraphiQL IDE", |
| 33 | + link: "https://github.com/graphql/graphiql", |
| 34 | + description: "Whether you want a simple GraphiQL IDE instance for your server, or a more advanced web or desktop GraphQL IDE experience for your framework or plugin, or you want to build an IDE extension or plugin, you've come to the right place!", |
| 35 | + }, |
| 36 | + { |
| 37 | + title: "GraphQL Website", |
| 38 | + link: "https://github.com/graphql/graphql.github.io", |
| 39 | + description: "The source repository for this very website: GraphQL Documentation, community initiatives and more", |
| 40 | + }, |
| 41 | + { |
| 42 | + title: "GraphQL over HTTP Specification", |
| 43 | + link: "https://github.com/graphql/graphql-over-http", |
| 44 | + description: "HTTP is the most common choice as the client-server protocol when using GraphQL because of its ubiquity. However the GraphQL specification deliberately does not specify the transport layer. This specification is intended to fill this gap by specifying how GraphQL should be served over HTTP. ", |
| 45 | + }, |
| 46 | + { |
| 47 | + title: "graphql-http", |
| 48 | + link: "https://github.com/graphql/graphql-http", |
| 49 | + description: "Simple, pluggable, zero-dependency, GraphQL over HTTP spec compliant server, client and audit suite.", |
| 50 | + }, |
| 51 | + { |
| 52 | + title: "GraphQL Composite Schema Spec", |
| 53 | + link: "https://github.com/graphql/composite-schemas-spec", |
| 54 | + description: "Describes how to construct a single unified GraphQL schema, the composite schema, from multiple GraphQL schemas, each termed a source schema.", |
| 55 | + }, |
| 56 | + { |
| 57 | + title: "GraphQL Scalars Specification", |
| 58 | + link: "https://github.com/graphql/graphql-scalars", |
| 59 | + description: "Providing a directory of GraphQL Custom Scalar specifications, contributed by the community. GraphQL Custom Scalar specifications are language agnostic and thus can be used to document and standardize behavior across different languages.", |
| 60 | + }, |
| 61 | + { |
| 62 | + title: "Dataloader", |
| 63 | + link: "https://github.com/graphql/dataloader", |
| 64 | + description: "A generic utility to be used as part of your application's data fetching layer to provide a simplified and consistent API over various remote data sources such as databases or web services via batching and caching.", |
| 65 | + }, |
| 66 | + { |
| 67 | + title: "SWAPI GraphQL Wrapper", |
| 68 | + link: "https://github.com/graphql/swapi-graphql", |
| 69 | + description: "A wrapper around the Star Wars API, or \"swapi\" (Swah-pee) the world's first quantified and programmatically-accessible data source for all the data from the Star Wars canon universe, converting it into a GraphQL schema.", |
| 70 | + }, |
| 71 | + ]} |
| 72 | + /> |
| 73 | + |
| 74 | +If you want to get involved in GraphQL, add yourself to the meeting agenda for one of our [working groups or implementations](./project-meetings/#quick-guide-how-to-join), sign the document if you haven't already, and show up! Or, if you prefer, just open a PR against our projects as this will also initiate the spec membership signature process. |
| 75 | + |
| 76 | +We welcome your participation! |
0 commit comments