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

Commit d321455

Browse files
committed
⬆️ GraphQL schema
1 parent 4a1421a commit d321455

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

graphql/schema.graphql

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8664,6 +8664,9 @@ input MergeBranchInput {
86648664
"""
86658665
commitMessage: String
86668666

8667+
"""The email address to associate with this commit."""
8668+
authorEmail: String
8669+
86678670
"""A unique identifier for the client performing the mutation."""
86688671
clientMutationId: String
86698672
}
@@ -8728,6 +8731,9 @@ input MergePullRequestInput {
87288731
"""The merge method to use. If omitted, defaults to 'MERGE'"""
87298732
mergeMethod: PullRequestMergeMethod = MERGE
87308733

8734+
"""The email address to associate with this merge."""
8735+
authorEmail: String
8736+
87318737
"""A unique identifier for the client performing the mutation."""
87328738
clientMutationId: String
87338739
}
@@ -15250,6 +15256,9 @@ type RateLimit {
1525015256
The time at which the current rate limit window resets in UTC epoch seconds.
1525115257
"""
1525215258
resetAt: DateTime!
15259+
15260+
"""The number of points used in the current rate limit window."""
15261+
used: Int!
1525315262
}
1525415263

1525515264
"""Represents a subject that can be reacted on."""

0 commit comments

Comments
 (0)