Skip to content

Commit c192104

Browse files
Regnerating schema
1 parent f1aa748 commit c192104

File tree

70 files changed

+750
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+750
-0
lines changed

Octokit.GraphQL/Model/AcceptTopicSuggestionInput.cs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,19 @@ namespace Octokit.GraphQL.Model
88
/// </summary>
99
public class AcceptTopicSuggestionInput
1010
{
11+
/// <summary>
12+
/// The Node ID of the repository.
13+
/// </summary>
1114
public ID RepositoryId { get; set; }
1215

16+
/// <summary>
17+
/// The name of the suggested topic.
18+
/// </summary>
1319
public string Name { get; set; }
1420

21+
/// <summary>
22+
/// A unique identifier for the client performing the mutation.
23+
/// </summary>
1524
public string ClientMutationId { get; set; }
1625
}
1726
}

Octokit.GraphQL/Model/AddCommentInput.cs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,19 @@ namespace Octokit.GraphQL.Model
88
/// </summary>
99
public class AddCommentInput
1010
{
11+
/// <summary>
12+
/// The Node ID of the subject to modify.
13+
/// </summary>
1114
public ID SubjectId { get; set; }
1215

16+
/// <summary>
17+
/// The contents of the comment.
18+
/// </summary>
1319
public string Body { get; set; }
1420

21+
/// <summary>
22+
/// A unique identifier for the client performing the mutation.
23+
/// </summary>
1524
public string ClientMutationId { get; set; }
1625
}
1726
}

Octokit.GraphQL/Model/AddProjectCardInput.cs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,24 @@ namespace Octokit.GraphQL.Model
88
/// </summary>
99
public class AddProjectCardInput
1010
{
11+
/// <summary>
12+
/// The Node ID of the ProjectColumn.
13+
/// </summary>
1114
public ID ProjectColumnId { get; set; }
1215

16+
/// <summary>
17+
/// The content of the card. Must be a member of the ProjectCardItem union
18+
/// </summary>
1319
public ID? ContentId { get; set; }
1420

21+
/// <summary>
22+
/// The note on the card.
23+
/// </summary>
1524
public string Note { get; set; }
1625

26+
/// <summary>
27+
/// A unique identifier for the client performing the mutation.
28+
/// </summary>
1729
public string ClientMutationId { get; set; }
1830
}
1931
}

Octokit.GraphQL/Model/AddProjectColumnInput.cs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,19 @@ namespace Octokit.GraphQL.Model
88
/// </summary>
99
public class AddProjectColumnInput
1010
{
11+
/// <summary>
12+
/// The Node ID of the project.
13+
/// </summary>
1114
public ID ProjectId { get; set; }
1215

16+
/// <summary>
17+
/// The name of the column.
18+
/// </summary>
1319
public string Name { get; set; }
1420

21+
/// <summary>
22+
/// A unique identifier for the client performing the mutation.
23+
/// </summary>
1524
public string ClientMutationId { get; set; }
1625
}
1726
}

Octokit.GraphQL/Model/AddPullRequestReviewCommentInput.cs

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,39 @@ namespace Octokit.GraphQL.Model
88
/// </summary>
99
public class AddPullRequestReviewCommentInput
1010
{
11+
/// <summary>
12+
/// The Node ID of the review to modify.
13+
/// </summary>
1114
public ID PullRequestReviewId { get; set; }
1215

16+
/// <summary>
17+
/// The SHA of the commit to comment on.
18+
/// </summary>
1319
public string CommitOID { get; set; }
1420

21+
/// <summary>
22+
/// The text of the comment.
23+
/// </summary>
1524
public string Body { get; set; }
1625

26+
/// <summary>
27+
/// The relative path of the file to comment on.
28+
/// </summary>
1729
public string Path { get; set; }
1830

31+
/// <summary>
32+
/// The line index in the diff to comment on.
33+
/// </summary>
1934
public int? Position { get; set; }
2035

36+
/// <summary>
37+
/// The comment id to reply to.
38+
/// </summary>
2139
public ID? InReplyTo { get; set; }
2240

41+
/// <summary>
42+
/// A unique identifier for the client performing the mutation.
43+
/// </summary>
2344
public string ClientMutationId { get; set; }
2445
}
2546
}

Octokit.GraphQL/Model/AddPullRequestReviewInput.cs

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,34 @@ namespace Octokit.GraphQL.Model
88
/// </summary>
99
public class AddPullRequestReviewInput
1010
{
11+
/// <summary>
12+
/// The Node ID of the pull request to modify.
13+
/// </summary>
1114
public ID PullRequestId { get; set; }
1215

16+
/// <summary>
17+
/// The commit OID the review pertains to.
18+
/// </summary>
1319
public string CommitOID { get; set; }
1420

21+
/// <summary>
22+
/// The contents of the review body comment.
23+
/// </summary>
1524
public string Body { get; set; }
1625

26+
/// <summary>
27+
/// The event to perform on the pull request review.
28+
/// </summary>
1729
public PullRequestReviewEvent? Event { get; set; }
1830

31+
/// <summary>
32+
/// The review line comments.
33+
/// </summary>
1934
public IEnumerable<DraftPullRequestReviewComment> Comments { get; set; }
2035

36+
/// <summary>
37+
/// A unique identifier for the client performing the mutation.
38+
/// </summary>
2139
public string ClientMutationId { get; set; }
2240
}
2341
}

Octokit.GraphQL/Model/AddReactionInput.cs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,19 @@ namespace Octokit.GraphQL.Model
88
/// </summary>
99
public class AddReactionInput
1010
{
11+
/// <summary>
12+
/// The Node ID of the subject to modify.
13+
/// </summary>
1114
public ID SubjectId { get; set; }
1215

16+
/// <summary>
17+
/// The name of the emoji to react with.
18+
/// </summary>
1319
public ReactionContent Content { get; set; }
1420

21+
/// <summary>
22+
/// A unique identifier for the client performing the mutation.
23+
/// </summary>
1524
public string ClientMutationId { get; set; }
1625
}
1726
}

Octokit.GraphQL/Model/AddStarInput.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,14 @@ namespace Octokit.GraphQL.Model
88
/// </summary>
99
public class AddStarInput
1010
{
11+
/// <summary>
12+
/// The Starrable ID to star.
13+
/// </summary>
1114
public ID StarrableId { get; set; }
1215

16+
/// <summary>
17+
/// A unique identifier for the client performing the mutation.
18+
/// </summary>
1319
public string ClientMutationId { get; set; }
1420
}
1521
}

Octokit.GraphQL/Model/CheckAnnotationData.cs

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,34 @@ namespace Octokit.GraphQL.Model
88
/// </summary>
99
public class CheckAnnotationData
1010
{
11+
/// <summary>
12+
/// The path of the file to add an annotation to.
13+
/// </summary>
1114
public string Path { get; set; }
1215

16+
/// <summary>
17+
/// The location of the annotation
18+
/// </summary>
1319
public CheckAnnotationRange Location { get; set; }
1420

21+
/// <summary>
22+
/// Represents an annotation's information level
23+
/// </summary>
1524
public CheckAnnotationLevel AnnotationLevel { get; set; }
1625

26+
/// <summary>
27+
/// A short description of the feedback for these lines of code.
28+
/// </summary>
1729
public string Message { get; set; }
1830

31+
/// <summary>
32+
/// The title that represents the annotation.
33+
/// </summary>
1934
public string Title { get; set; }
2035

36+
/// <summary>
37+
/// Details about this annotation.
38+
/// </summary>
2139
public string RawDetails { get; set; }
2240
}
2341
}

Octokit.GraphQL/Model/CheckAnnotationRange.cs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,24 @@ namespace Octokit.GraphQL.Model
88
/// </summary>
99
public class CheckAnnotationRange
1010
{
11+
/// <summary>
12+
/// The starting line of the range.
13+
/// </summary>
1114
public int StartLine { get; set; }
1215

16+
/// <summary>
17+
/// The starting column of the range.
18+
/// </summary>
1319
public int? StartColumn { get; set; }
1420

21+
/// <summary>
22+
/// The ending line of the range.
23+
/// </summary>
1524
public int EndLine { get; set; }
1625

26+
/// <summary>
27+
/// The ending column of the range.
28+
/// </summary>
1729
public int? EndColumn { get; set; }
1830
}
1931
}

0 commit comments

Comments
 (0)