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

Commit 04cffb6

Browse files
authored
Merge pull request #2496 from atom/schema-update/1596762801414
GraphQL schema update
2 parents 527ce1a + 3b0c7e0 commit 04cffb6

File tree

1 file changed

+43
-1
lines changed

1 file changed

+43
-1
lines changed

graphql/schema.graphql

Lines changed: 43 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,8 +313,11 @@ input AddPullRequestReviewThreadInput {
313313
"""Body of the thread's first comment."""
314314
body: String!
315315

316+
"""The node ID of the pull request reviewing"""
317+
pullRequestId: ID
318+
316319
"""The Node ID of the review to modify."""
317-
pullRequestReviewId: ID!
320+
pullRequestReviewId: ID
318321

319322
"""
320323
The line of the blob to which the thread refers. The end of the line range for multi-line comments.
@@ -6099,12 +6102,39 @@ type ExternalIdentityEdge {
60996102

61006103
"""SAML attributes for the External Identity"""
61016104
type ExternalIdentitySamlAttributes {
6105+
"""The emails associated with the SAML identity"""
6106+
emails: [UserEmailMetadata!]
6107+
6108+
"""Family name of the SAML identity"""
6109+
familyName: String
6110+
6111+
"""Given name of the SAML identity"""
6112+
givenName: String
6113+
6114+
"""The groups linked to this identity in IDP"""
6115+
groups: [String!]
6116+
61026117
"""The NameID of the SAML identity"""
61036118
nameId: String
6119+
6120+
"""The userName of the SAML identity"""
6121+
username: String
61046122
}
61056123

61066124
"""SCIM attributes for the External Identity"""
61076125
type ExternalIdentityScimAttributes {
6126+
"""The emails associated with the SCIM identity"""
6127+
emails: [UserEmailMetadata!]
6128+
6129+
"""Family name of the SCIM identity"""
6130+
familyName: String
6131+
6132+
"""Given name of the SCIM identity"""
6133+
givenName: String
6134+
6135+
"""The groups linked to this identity in IDP"""
6136+
groups: [String!]
6137+
61086138
"""The userName of the SCIM identity"""
61096139
username: String
61106140
}
@@ -24031,6 +24061,18 @@ type UserEdge {
2403124061
node: User
2403224062
}
2403324063

24064+
"""Email attributes from External Identity"""
24065+
type UserEmailMetadata {
24066+
"""Boolean to identify primary emails"""
24067+
primary: Boolean
24068+
24069+
"""Type of email"""
24070+
type: String
24071+
24072+
"""Email id"""
24073+
value: String!
24074+
}
24075+
2403424076
"""The user's description of what they're currently doing."""
2403524077
type UserStatus implements Node {
2403624078
"""Identifies the date and time when the object was created."""

0 commit comments

Comments
 (0)