Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Decoration component #476

Merged
merged 7 commits into from
Jan 30, 2017
Merged
Show file tree
Hide file tree
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
56 changes: 55 additions & 1 deletion graphql/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,12 @@ interface Comment {
# Check if this comment was created via an email reply.
createdViaEmail: Boolean!

# The user who edited the comment.
editor: User

# The moment the editor made the last edit
lastEditedAt: DateTime

# Identifies the date and time when the object was last updated.
updatedAt: DateTime!

Expand Down Expand Up @@ -464,8 +470,14 @@ type CommitComment implements Node, Comment, Reactable, RepositoryNode {

# Identifies the primary key from the database.
databaseId: Int @deprecated(reason: "Exposed database IDs will eventually be removed in favor of global Relay IDs.")

# The user who edited the comment.
editor: User
id: ID!

# The moment the editor made the last edit
lastEditedAt: DateTime

# Are reaction live updates enabled for this subject.
liveReactionUpdatesEnabled: Boolean!

Expand Down Expand Up @@ -916,8 +928,14 @@ type GistComment implements Node, Comment {

# Check if this comment was created via an email reply.
createdViaEmail: Boolean!

# The user who edited the comment.
editor: User
id: ID!

# The moment the editor made the last edit
lastEditedAt: DateTime

# Identifies the date and time when the object was last updated.
updatedAt: DateTime!

Expand Down Expand Up @@ -1218,6 +1236,9 @@ type Issue implements Node, Comment, Issueish, Reactable, RepositoryNode, Timeli

# Identifies the primary key from the database.
databaseId: Int @deprecated(reason: "Exposed database IDs will eventually be removed in favor of global Relay IDs.")

# The user who edited the comment.
editor: User
id: ID!

# A list of labels associated with the Issue or Pull Request.
Expand All @@ -1235,6 +1256,9 @@ type Issue implements Node, Comment, Issueish, Reactable, RepositoryNode, Timeli
before: String
): LabelConnection

# The moment the editor made the last edit
lastEditedAt: DateTime

# Are reaction live updates enabled for this subject.
liveReactionUpdatesEnabled: Boolean!

Expand Down Expand Up @@ -1363,11 +1387,17 @@ type IssueComment implements Node, Comment, Reactable, RepositoryNode {

# Identifies the primary key from the database.
databaseId: Int @deprecated(reason: "Exposed database IDs will eventually be removed in favor of global Relay IDs.")

# The user who edited the comment.
editor: User
id: ID!

# Identifies the issue associated with the comment.
issue: Issue!

# The moment the editor made the last edit
lastEditedAt: DateTime

# Are reaction live updates enabled for this subject.
liveReactionUpdatesEnabled: Boolean!

Expand Down Expand Up @@ -2644,6 +2674,9 @@ type PullRequest implements Node, Comment, Issueish, Reactable, RepositoryNode,
# Identifies the primary key from the database.
databaseId: Int @deprecated(reason: "Exposed database IDs will eventually be removed in favor of global Relay IDs.")

# The user who edited this pull request's body.
editor: User

# Identifies the head Ref associated with the pull request.
headRef: Ref

Expand All @@ -2666,6 +2699,9 @@ type PullRequest implements Node, Comment, Issueish, Reactable, RepositoryNode,
before: String
): LabelConnection

# The moment the editor made the last edit
lastEditedAt: DateTime

# Are reaction live updates enabled for this subject.
liveReactionUpdatesEnabled: Boolean!

Expand Down Expand Up @@ -2866,8 +2902,14 @@ type PullRequestReview implements Node, Comment, RepositoryNode {

# Identifies the primary key from the database.
databaseId: Int @deprecated(reason: "Exposed database IDs will eventually be removed in favor of global Relay IDs.")

# The user who edited the comment.
editor: User
id: ID!

# The moment the editor made the last edit
lastEditedAt: DateTime

# The HTTP URL permalink for this PullRequestReview.
path: URI!

Expand Down Expand Up @@ -2930,8 +2972,14 @@ type PullRequestReviewComment implements Node, Comment, Reactable, RepositoryNod

# The diff hunk to which the comment applies.
diffHunk: String!

# The user who edited the comment.
editor: User
id: ID!

# The moment the editor made the last edit
lastEditedAt: DateTime

# Are reaction live updates enabled for this subject.
liveReactionUpdatesEnabled: Boolean!

Expand Down Expand Up @@ -3461,14 +3509,17 @@ type ReferencedEvent implements Node, IssueEvent {
}

# A release contains the content for a release.
type Release implements Node {
type Release implements Node, UniformResourceLocatable {
# Identifies the description of the release.
description: String
id: ID!

# Identifies the title of the release.
name: String!

# The HTTP path for this issue
path: URI!

# List of releases assets which are dependent on this release.
releaseAsset(
# Returns the first _n_ elements from the list.
Expand Down Expand Up @@ -3504,6 +3555,9 @@ type Release implements Node {

# The Git tag the release points to
tag: Ref

# The HTTP url for this issue
url: URI!
}

# A release asset contains the content for a release asset.
Expand Down
Loading