|
6613 | 6613 | } |
6614 | 6614 | ] |
6615 | 6615 | }, |
| 6616 | + { |
| 6617 | + "name": "requestReviewsByLogin", |
| 6618 | + "kind": "mutations", |
| 6619 | + "id": "requestreviewsbylogin", |
| 6620 | + "href": "/graphql/reference/mutations#requestreviewsbylogin", |
| 6621 | + "description": "<p>Set review requests on a pull request using login strings instead of IDs.</p>", |
| 6622 | + "inputFields": [ |
| 6623 | + { |
| 6624 | + "name": "input", |
| 6625 | + "type": "RequestReviewsByLoginInput!", |
| 6626 | + "id": "requestreviewsbylogininput", |
| 6627 | + "kind": "input-objects", |
| 6628 | + "href": "/graphql/reference/input-objects#requestreviewsbylogininput" |
| 6629 | + } |
| 6630 | + ], |
| 6631 | + "returnFields": [ |
| 6632 | + { |
| 6633 | + "name": "actor", |
| 6634 | + "type": "Actor", |
| 6635 | + "id": "actor", |
| 6636 | + "kind": "interfaces", |
| 6637 | + "href": "/graphql/reference/interfaces#actor", |
| 6638 | + "description": "<p>Identifies the actor who performed the event.</p>" |
| 6639 | + }, |
| 6640 | + { |
| 6641 | + "name": "clientMutationId", |
| 6642 | + "type": "String", |
| 6643 | + "id": "string", |
| 6644 | + "kind": "scalars", |
| 6645 | + "href": "/graphql/reference/scalars#string", |
| 6646 | + "description": "<p>A unique identifier for the client performing the mutation.</p>" |
| 6647 | + }, |
| 6648 | + { |
| 6649 | + "name": "pullRequest", |
| 6650 | + "type": "PullRequest", |
| 6651 | + "id": "pullrequest", |
| 6652 | + "kind": "objects", |
| 6653 | + "href": "/graphql/reference/objects#pullrequest", |
| 6654 | + "description": "<p>The pull request that is getting requests.</p>" |
| 6655 | + }, |
| 6656 | + { |
| 6657 | + "name": "requestedReviewersEdge", |
| 6658 | + "type": "UserEdge", |
| 6659 | + "id": "useredge", |
| 6660 | + "kind": "objects", |
| 6661 | + "href": "/graphql/reference/objects#useredge", |
| 6662 | + "description": "<p>The edge from the pull request to the requested reviewers.</p>" |
| 6663 | + } |
| 6664 | + ] |
| 6665 | + }, |
6616 | 6666 | { |
6617 | 6667 | "name": "rerequestCheckSuite", |
6618 | 6668 | "kind": "mutations", |
@@ -106842,6 +106892,64 @@ |
106842 | 106892 | } |
106843 | 106893 | ] |
106844 | 106894 | }, |
| 106895 | + { |
| 106896 | + "name": "RequestReviewsByLoginInput", |
| 106897 | + "kind": "inputObjects", |
| 106898 | + "id": "requestreviewsbylogininput", |
| 106899 | + "href": "/graphql/reference/input-objects#requestreviewsbylogininput", |
| 106900 | + "description": "<p>Autogenerated input type of RequestReviewsByLogin.</p>", |
| 106901 | + "inputFields": [ |
| 106902 | + { |
| 106903 | + "name": "botLogins", |
| 106904 | + "description": "<p>The logins of the bots to request reviews from, including the [bot] suffix (e.g., 'copilot-pull-request-reviewer[bot]').</p>", |
| 106905 | + "type": "[String!]", |
| 106906 | + "id": "string", |
| 106907 | + "kind": "scalars", |
| 106908 | + "href": "/graphql/reference/scalars#string" |
| 106909 | + }, |
| 106910 | + { |
| 106911 | + "name": "clientMutationId", |
| 106912 | + "description": "<p>A unique identifier for the client performing the mutation.</p>", |
| 106913 | + "type": "String", |
| 106914 | + "id": "string", |
| 106915 | + "kind": "scalars", |
| 106916 | + "href": "/graphql/reference/scalars#string" |
| 106917 | + }, |
| 106918 | + { |
| 106919 | + "name": "pullRequestId", |
| 106920 | + "description": "<p>The Node ID of the pull request to modify.</p>", |
| 106921 | + "type": "ID!", |
| 106922 | + "id": "id", |
| 106923 | + "kind": "scalars", |
| 106924 | + "href": "/graphql/reference/scalars#id", |
| 106925 | + "isDeprecated": false |
| 106926 | + }, |
| 106927 | + { |
| 106928 | + "name": "teamSlugs", |
| 106929 | + "description": "<p>The slugs of the teams to request reviews from (format: 'org/team-slug').</p>", |
| 106930 | + "type": "[String!]", |
| 106931 | + "id": "string", |
| 106932 | + "kind": "scalars", |
| 106933 | + "href": "/graphql/reference/scalars#string" |
| 106934 | + }, |
| 106935 | + { |
| 106936 | + "name": "union", |
| 106937 | + "description": "<p>Add users to the set rather than replace.</p>", |
| 106938 | + "type": "Boolean", |
| 106939 | + "id": "boolean", |
| 106940 | + "kind": "scalars", |
| 106941 | + "href": "/graphql/reference/scalars#boolean" |
| 106942 | + }, |
| 106943 | + { |
| 106944 | + "name": "userLogins", |
| 106945 | + "description": "<p>The login strings of the users to request reviews from.</p>", |
| 106946 | + "type": "[String!]", |
| 106947 | + "id": "string", |
| 106948 | + "kind": "scalars", |
| 106949 | + "href": "/graphql/reference/scalars#string" |
| 106950 | + } |
| 106951 | + ] |
| 106952 | + }, |
106845 | 106953 | { |
106846 | 106954 | "name": "RequestReviewsInput", |
106847 | 106955 | "kind": "inputObjects", |
|
0 commit comments