Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Glossary: add 'implementation' #1593

Closed
wants to merge 6 commits into from
Closed
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions rfcs/glossary/Appendix C -- Glossary.md
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,21 @@ Example:
**Definition**: a software capable of executing a GraphQL request and returning
a GraphQL response according to this specification.

Examples: GitHub GraphQL API, Shopify GraphQL API, etc...

Note: The specification has no concept of client and server. While most
services are implemented as servers, this is not a requirement and execution
can happen anywhere as long as it conforms to the specification.

### (GraphQL) implementation

**Definition**: the software used to implement a service. Implementations may be
schema-first or code-first.

An implementation "implements" the specification if the services it produces
conforms to the GraphQL specification. An implementation may implement the
specification but not some of its optional features. Some implementations
implement the specification including all optional features.

Examples: graphql-js, Hot Chocolate, graphql-java, etc...