SCALAR
Boolean
Represents true
or false
values.
link GraphQL Schema definition
- scalar Boolean
link Require by
- BlobRepresents a Git blob.
- CommentRepresents a comment.
- CommitRepresents a Git commit.
- CommitCommentRepresents a comment on a given Commit.
- GistA Gist.
- GistCommentRepresents a comment on an Gist.
- GitSignatureInformation about a signature (GPG or S/MIME) on a Commit or Tag.
- GpgSignatureRepresents a GPG signature on a Commit or Tag.
- IssueAn Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project.
- IssueCommentRepresents a comment on an Issue.
- OrganizationAn account on GitHub, with one or more owners, that has repositories, members and teams.
- PageInfoInformation about pagination in a connection.
- ProjectProjects manage issues, pull requests and notes within a project owner.
- ProjectOwnerRepresents an owner of a Project.
- ProtectedBranchA repository protected branch.
- PullRequestA repository pull request.
- PullRequestReviewA review object for a given pull request.
- PullRequestReviewCommentA review comment associated with a given repository pull request.
- ReactableRepresents a subject that can be reacted on.
- ReactionConnectionA list of reactions that have been left on the subject.
- ReactionGroupA group of emoji reactions to a particular piece of content.
- RepositoryA repository contains the content for a project.
- RepositoryInfoA subset of repository info.
- RepositoryInvitationRepositoryA subset of repository info shared with potential collaborators.
- RepositoryOwnerRepresents an owner of a Repository.
- RequestReviewsInputAutogenerated input type of RequestReviews
- SmimeSignatureRepresents an S/MIME signature on a Commit or Tag.
- SubscribableEntities that can be subscribed to for web and email notifications.
- UnknownSignatureRepresents an unknown signature on a Commit or Tag.
- UserA user is an individual's account on GitHub that owns repositories and can make new content.
- __DirectiveA Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document. In some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.
- __EnumValueOne possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.
- __FieldObject and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.
- __TypeThe fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum. Depending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name and description, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.