Skip to content

Glossary: add source schemas and full schemas #1401

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

Merged
merged 1 commit into from
Oct 5, 2023
Merged
Changes from all 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
19 changes: 19 additions & 0 deletions rfcs/glossary/Appendix C -- Glossary.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,25 @@ Example:
> Documents are only executable by a GraphQL service if they are
> {ExecutableDocument} and contain at least one {OperationDefinition}.

### Source schema document

**Definition**: the textual representation (using GraphQL query language) of the
type system definitions or extensions to be used by a GraphQL service, excluding
the built-in definitions provided by the service.

Note: The source schema document is generally manually written and passed as
input to a GraphQL service implementation.

### Full schema document

**Definition**: the textual representation (using GraphQL query language) of the
type system definitions supported by a GraphQL service, including the built-in
definitions provided by the service.
Full schema documents allow validation of any executable document.

Note: The full schema document is generally machine written and produced as an
output of a GraphQL service implementation.

### (GraphQL) variables

**Definition**: placeholder for a value within an operation that may be
Expand Down