|
1 |
| -# source: https://api.github.com/graphql |
2 |
| -# timestamp: Thu Apr 05 2018 23:11:12 GMT+0200 (CEST) |
3 |
| - |
4 | 1 | """Autogenerated input type of AcceptTopicSuggestion"""
|
5 | 2 | input AcceptTopicSuggestionInput {
|
6 | 3 | """A unique identifier for the client performing the mutation."""
|
@@ -356,7 +353,7 @@ type BlameRange {
|
356 | 353 | }
|
357 | 354 |
|
358 | 355 | """Represents a Git blob."""
|
359 |
| -type Blob implements Node, GitObject { |
| 356 | +type Blob implements Node & GitObject { |
360 | 357 | """An abbreviated version of the Git object ID"""
|
361 | 358 | abbreviatedOid: String!
|
362 | 359 |
|
@@ -387,7 +384,7 @@ type Blob implements Node, GitObject {
|
387 | 384 | }
|
388 | 385 |
|
389 | 386 | """A special type of user which takes actions on behalf of GitHub Apps."""
|
390 |
| -type Bot implements Node, Actor, UniformResourceLocatable { |
| 387 | +type Bot implements Node & Actor & UniformResourceLocatable { |
391 | 388 | """A URL pointing to the GitHub App's public avatar."""
|
392 | 389 | avatarUrl(
|
393 | 390 | """The size of the resulting square image."""
|
@@ -598,7 +595,7 @@ type CommentDeletedEvent implements Node {
|
598 | 595 | }
|
599 | 596 |
|
600 | 597 | """Represents a Git commit."""
|
601 |
| -type Commit implements Node, GitObject, Subscribable { |
| 598 | +type Commit implements Node & GitObject & Subscribable { |
602 | 599 | """An abbreviated version of the Git object ID"""
|
603 | 600 | abbreviatedOid: String!
|
604 | 601 |
|
@@ -800,7 +797,7 @@ input CommitAuthor {
|
800 | 797 | }
|
801 | 798 |
|
802 | 799 | """Represents a comment on a given Commit."""
|
803 |
| -type CommitComment implements Node, Comment, Deletable, Updatable, UpdatableComment, Reactable, RepositoryNode { |
| 800 | +type CommitComment implements Node & Comment & Deletable & Updatable & UpdatableComment & Reactable & RepositoryNode { |
804 | 801 | """The actor who authored the comment."""
|
805 | 802 | author: Actor
|
806 | 803 |
|
@@ -946,7 +943,7 @@ type CommitCommentEdge {
|
946 | 943 | }
|
947 | 944 |
|
948 | 945 | """A thread of comments on a commit."""
|
949 |
| -type CommitCommentThread implements Node, RepositoryNode { |
| 946 | +type CommitCommentThread implements Node & RepositoryNode { |
950 | 947 | """The comments that exist in this thread."""
|
951 | 948 | comments(
|
952 | 949 | """Returns the first _n_ elements from the list."""
|
@@ -1058,7 +1055,7 @@ type CreateProjectPayload {
|
1058 | 1055 | }
|
1059 | 1056 |
|
1060 | 1057 | """Represents a mention made by one issue or pull request to another."""
|
1061 |
| -type CrossReferencedEvent implements Node, UniformResourceLocatable { |
| 1058 | +type CrossReferencedEvent implements Node & UniformResourceLocatable { |
1062 | 1059 | """Identifies the actor who performed the event."""
|
1063 | 1060 | actor: Actor
|
1064 | 1061 |
|
@@ -1587,7 +1584,7 @@ type FollowingConnection {
|
1587 | 1584 | }
|
1588 | 1585 |
|
1589 | 1586 | """A Gist."""
|
1590 |
| -type Gist implements Node, Starrable { |
| 1587 | +type Gist implements Node & Starrable { |
1591 | 1588 | """A list of comments associated with the gist"""
|
1592 | 1589 | comments(
|
1593 | 1590 | """Returns the first _n_ elements from the list."""
|
@@ -1658,7 +1655,7 @@ type Gist implements Node, Starrable {
|
1658 | 1655 | }
|
1659 | 1656 |
|
1660 | 1657 | """Represents a comment on an Gist."""
|
1661 |
| -type GistComment implements Node, Comment, Deletable, Updatable, UpdatableComment { |
| 1658 | +type GistComment implements Node & Comment & Deletable & Updatable & UpdatableComment { |
1662 | 1659 | """The actor who authored the comment."""
|
1663 | 1660 | author: Actor
|
1664 | 1661 |
|
@@ -2062,7 +2059,7 @@ scalar HTML
|
2062 | 2059 | """
|
2063 | 2060 | An Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project.
|
2064 | 2061 | """
|
2065 |
| -type Issue implements Node, Assignable, Closable, Comment, Updatable, UpdatableComment, Labelable, Lockable, Reactable, RepositoryNode, Subscribable, UniformResourceLocatable { |
| 2062 | +type Issue implements Node & Assignable & Closable & Comment & Updatable & UpdatableComment & Labelable & Lockable & Reactable & RepositoryNode & Subscribable & UniformResourceLocatable { |
2066 | 2063 | """Reason that the conversation was locked."""
|
2067 | 2064 | activeLockReason: LockReason
|
2068 | 2065 |
|
@@ -2323,7 +2320,7 @@ type Issue implements Node, Assignable, Closable, Comment, Updatable, UpdatableC
|
2323 | 2320 | }
|
2324 | 2321 |
|
2325 | 2322 | """Represents a comment on an Issue."""
|
2326 |
| -type IssueComment implements Node, Comment, Deletable, Updatable, UpdatableComment, Reactable, RepositoryNode { |
| 2323 | +type IssueComment implements Node & Comment & Deletable & Updatable & UpdatableComment & Reactable & RepositoryNode { |
2327 | 2324 | """The actor who authored the comment."""
|
2328 | 2325 | author: Actor
|
2329 | 2326 |
|
@@ -3154,7 +3151,7 @@ enum MergeableState {
|
3154 | 3151 | }
|
3155 | 3152 |
|
3156 | 3153 | """Represents a 'merged' event on a given pull request."""
|
3157 |
| -type MergedEvent implements Node, UniformResourceLocatable { |
| 3154 | +type MergedEvent implements Node & UniformResourceLocatable { |
3158 | 3155 | """Identifies the actor who performed the event."""
|
3159 | 3156 | actor: Actor
|
3160 | 3157 |
|
@@ -3182,7 +3179,7 @@ type MergedEvent implements Node, UniformResourceLocatable {
|
3182 | 3179 | }
|
3183 | 3180 |
|
3184 | 3181 | """Represents a Milestone object on a given repository."""
|
3185 |
| -type Milestone implements Node, Closable, UniformResourceLocatable { |
| 3182 | +type Milestone implements Node & Closable & UniformResourceLocatable { |
3186 | 3183 | """
|
3187 | 3184 | `true` if the object is closed (definition of closed may depend on type)
|
3188 | 3185 | """
|
@@ -3547,7 +3544,7 @@ enum OrderDirection {
|
3547 | 3544 | """
|
3548 | 3545 | An account on GitHub, with one or more owners, that has repositories, members and teams.
|
3549 | 3546 | """
|
3550 |
| -type Organization implements Node, Actor, ProjectOwner, RepositoryOwner, UniformResourceLocatable { |
| 3547 | +type Organization implements Node & Actor & ProjectOwner & RepositoryOwner & UniformResourceLocatable { |
3551 | 3548 | """A URL pointing to the organization's public avatar."""
|
3552 | 3549 | avatarUrl(
|
3553 | 3550 | """The size of the resulting square image."""
|
@@ -3966,7 +3963,7 @@ type PageInfo {
|
3966 | 3963 | """
|
3967 | 3964 | Projects manage issues, pull requests and notes within a project owner.
|
3968 | 3965 | """
|
3969 |
| -type Project implements Node, Closable, Updatable { |
| 3966 | +type Project implements Node & Closable & Updatable { |
3970 | 3967 | """The project's description body."""
|
3971 | 3968 | body: String
|
3972 | 3969 |
|
@@ -4447,7 +4444,7 @@ type PublicKeyEdge {
|
4447 | 4444 | }
|
4448 | 4445 |
|
4449 | 4446 | """A repository pull request."""
|
4450 |
| -type PullRequest implements Node, Assignable, Closable, Comment, Updatable, UpdatableComment, Labelable, Lockable, Reactable, RepositoryNode, Subscribable, UniformResourceLocatable { |
| 4447 | +type PullRequest implements Node & Assignable & Closable & Comment & Updatable & UpdatableComment & Labelable & Lockable & Reactable & RepositoryNode & Subscribable & UniformResourceLocatable { |
4451 | 4448 | """Reason that the conversation was locked."""
|
4452 | 4449 | activeLockReason: LockReason
|
4453 | 4450 |
|
@@ -4854,7 +4851,7 @@ type PullRequest implements Node, Assignable, Closable, Comment, Updatable, Upda
|
4854 | 4851 | }
|
4855 | 4852 |
|
4856 | 4853 | """Represents a Git commit part of a pull request."""
|
4857 |
| -type PullRequestCommit implements Node, UniformResourceLocatable { |
| 4854 | +type PullRequestCommit implements Node & UniformResourceLocatable { |
4858 | 4855 | """The Git commit object"""
|
4859 | 4856 | commit: Commit!
|
4860 | 4857 | id: ID!
|
@@ -4930,7 +4927,7 @@ enum PullRequestPubSubTopic {
|
4930 | 4927 | }
|
4931 | 4928 |
|
4932 | 4929 | """A review object for a given pull request."""
|
4933 |
| -type PullRequestReview implements Node, Comment, Deletable, Updatable, UpdatableComment, RepositoryNode { |
| 4930 | +type PullRequestReview implements Node & Comment & Deletable & Updatable & UpdatableComment & RepositoryNode { |
4934 | 4931 | """The actor who authored the comment."""
|
4935 | 4932 | author: Actor
|
4936 | 4933 |
|
@@ -5041,7 +5038,7 @@ type PullRequestReview implements Node, Comment, Deletable, Updatable, Updatable
|
5041 | 5038 | }
|
5042 | 5039 |
|
5043 | 5040 | """A review comment associated with a given repository pull request."""
|
5044 |
| -type PullRequestReviewComment implements Node, Comment, Deletable, Updatable, UpdatableComment, Reactable, RepositoryNode { |
| 5041 | +type PullRequestReviewComment implements Node & Comment & Deletable & Updatable & UpdatableComment & Reactable & RepositoryNode { |
5045 | 5042 | """The actor who authored the comment."""
|
5046 | 5043 | author: Actor
|
5047 | 5044 |
|
@@ -5892,7 +5889,7 @@ enum RefOrderField {
|
5892 | 5889 | }
|
5893 | 5890 |
|
5894 | 5891 | """A release contains the content for a release."""
|
5895 |
| -type Release implements Node, UniformResourceLocatable { |
| 5892 | +type Release implements Node & UniformResourceLocatable { |
5896 | 5893 | """The author of the release"""
|
5897 | 5894 | author: User
|
5898 | 5895 |
|
@@ -6166,7 +6163,7 @@ type ReopenedEvent implements Node {
|
6166 | 6163 | }
|
6167 | 6164 |
|
6168 | 6165 | """A repository contains the content for a project."""
|
6169 |
| -type Repository implements Node, ProjectOwner, Subscribable, Starrable, UniformResourceLocatable, RepositoryInfo { |
| 6166 | +type Repository implements Node & ProjectOwner & Subscribable & Starrable & UniformResourceLocatable & RepositoryInfo { |
6170 | 6167 | """A list of users that can be assigned to issues in this repository."""
|
6171 | 6168 | assignableUsers(
|
6172 | 6169 | """Returns the first _n_ elements from the list."""
|
@@ -7182,7 +7179,7 @@ enum RepositoryPrivacy {
|
7182 | 7179 | }
|
7183 | 7180 |
|
7184 | 7181 | """A repository-topic connects a repository to a topic."""
|
7185 |
| -type RepositoryTopic implements Node, UniformResourceLocatable { |
| 7182 | +type RepositoryTopic implements Node & UniformResourceLocatable { |
7186 | 7183 | id: ID!
|
7187 | 7184 |
|
7188 | 7185 | """The HTTP path for this repository-topic."""
|
@@ -7296,7 +7293,7 @@ type ReviewDismissalAllowanceEdge {
|
7296 | 7293 | """
|
7297 | 7294 | Represents a 'review_dismissed' event on a given issue or pull request.
|
7298 | 7295 | """
|
7299 |
| -type ReviewDismissedEvent implements Node, UniformResourceLocatable { |
| 7296 | +type ReviewDismissedEvent implements Node & UniformResourceLocatable { |
7300 | 7297 | """Identifies the actor who performed the event."""
|
7301 | 7298 | actor: Actor
|
7302 | 7299 |
|
@@ -7731,7 +7728,7 @@ type SuggestedReviewer {
|
7731 | 7728 | }
|
7732 | 7729 |
|
7733 | 7730 | """Represents a Git tag."""
|
7734 |
| -type Tag implements Node, GitObject { |
| 7731 | +type Tag implements Node & GitObject { |
7735 | 7732 | """An abbreviated version of the Git object ID"""
|
7736 | 7733 | abbreviatedOid: String!
|
7737 | 7734 |
|
@@ -7762,7 +7759,7 @@ type Tag implements Node, GitObject {
|
7762 | 7759 | }
|
7763 | 7760 |
|
7764 | 7761 | """A team of users in an organization."""
|
7765 |
| -type Team implements Node, Subscribable { |
| 7762 | +type Team implements Node & Subscribable { |
7766 | 7763 | """A list of teams that are ancestors of this team."""
|
7767 | 7764 | ancestors(
|
7768 | 7765 | """Returns the first _n_ elements from the list."""
|
@@ -8234,7 +8231,7 @@ enum TopicSuggestionDeclineReason {
|
8234 | 8231 | }
|
8235 | 8232 |
|
8236 | 8233 | """Represents a Git tree."""
|
8237 |
| -type Tree implements Node, GitObject { |
| 8234 | +type Tree implements Node & GitObject { |
8238 | 8235 | """An abbreviated version of the Git object ID"""
|
8239 | 8236 | abbreviatedOid: String!
|
8240 | 8237 |
|
@@ -8546,7 +8543,7 @@ scalar URI
|
8546 | 8543 | """
|
8547 | 8544 | A user is an individual's account on GitHub that owns repositories and can make new content.
|
8548 | 8545 | """
|
8549 |
| -type User implements Node, Actor, RepositoryOwner, UniformResourceLocatable { |
| 8546 | +type User implements Node & Actor & RepositoryOwner & UniformResourceLocatable { |
8550 | 8547 | """A URL pointing to the user's public avatar."""
|
8551 | 8548 | avatarUrl(
|
8552 | 8549 | """The size of the resulting square image."""
|
|
0 commit comments