@@ -12419,6 +12419,8 @@ export type Mutation = {
1241912419 reprioritizeSubIssue?: Maybe<ReprioritizeSubIssuePayload>;
1242012420 /** Set review requests on a pull request. */
1242112421 requestReviews?: Maybe<RequestReviewsPayload>;
12422+ /** Set review requests on a pull request using login strings instead of IDs. */
12423+ requestReviewsByLogin?: Maybe<RequestReviewsByLoginPayload>;
1242212424 /** Rerequests an existing check suite. */
1242312425 rerequestCheckSuite?: Maybe<RerequestCheckSuitePayload>;
1242412426 /** Marks a review thread as resolved. */
@@ -13586,6 +13588,12 @@ export type MutationRequestReviewsArgs = {
1358613588};
1358713589
1358813590
13591+ /** The root query for implementing GraphQL mutations. */
13592+ export type MutationRequestReviewsByLoginArgs = {
13593+ input: RequestReviewsByLoginInput;
13594+ };
13595+
13596+
1358913597/** The root query for implementing GraphQL mutations. */
1359013598export type MutationRerequestCheckSuiteArgs = {
1359113599 input: RerequestCheckSuiteInput;
@@ -28217,6 +28225,35 @@ export type ReprioritizeSubIssuePayload = {
2821728225 issue?: Maybe<Issue>;
2821828226};
2821928227
28228+ /** Autogenerated input type of RequestReviewsByLogin */
28229+ export type RequestReviewsByLoginInput = {
28230+ /** The logins of the bots to request reviews from, including the [bot] suffix (e.g., 'copilot-pull-request-reviewer[bot]'). */
28231+ botLogins?: InputMaybe<Array<Scalars['String']['input']>>;
28232+ /** A unique identifier for the client performing the mutation. */
28233+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
28234+ /** The Node ID of the pull request to modify. */
28235+ pullRequestId: Scalars['ID']['input'];
28236+ /** The slugs of the teams to request reviews from (format: 'org/team-slug'). */
28237+ teamSlugs?: InputMaybe<Array<Scalars['String']['input']>>;
28238+ /** Add users to the set rather than replace. */
28239+ union?: InputMaybe<Scalars['Boolean']['input']>;
28240+ /** The login strings of the users to request reviews from. */
28241+ userLogins?: InputMaybe<Array<Scalars['String']['input']>>;
28242+ };
28243+
28244+ /** Autogenerated return type of RequestReviewsByLogin. */
28245+ export type RequestReviewsByLoginPayload = {
28246+ __typename?: 'RequestReviewsByLoginPayload';
28247+ /** Identifies the actor who performed the event. */
28248+ actor?: Maybe<Actor>;
28249+ /** A unique identifier for the client performing the mutation. */
28250+ clientMutationId?: Maybe<Scalars['String']['output']>;
28251+ /** The pull request that is getting requests. */
28252+ pullRequest?: Maybe<PullRequest>;
28253+ /** The edge from the pull request to the requested reviewers. */
28254+ requestedReviewersEdge?: Maybe<UserEdge>;
28255+ };
28256+
2822028257/** Autogenerated input type of RequestReviews */
2822128258export type RequestReviewsInput = {
2822228259 /** The Node IDs of the bot to request. */
0 commit comments