Skip to content
This repository was archived by the owner on Apr 1, 2024. It is now read-only.

Commit e1f6e4e

Browse files
author
Create or Update Pull Request Action
committed
WIP: github schema.graphql changed - please review
1 parent 2327a4d commit e1f6e4e

File tree

1 file changed

+379
-0
lines changed

1 file changed

+379
-0
lines changed

example/github/schema.graphql

Lines changed: 379 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25795,6 +25795,42 @@ type Organization implements Actor & MemberStatusable & Node & PackageOwner & Pr
2579525795
state: MigrationState
2579625796
): RepositoryMigrationConnection!
2579725797

25798+
"""
25799+
When true the organization requires all members, billing managers, and outside
25800+
collaborators to enable two-factor authentication.
25801+
"""
25802+
repositoryMigrations(
25803+
"""
25804+
Returns the elements in the list that come after the specified cursor.
25805+
"""
25806+
after: String
25807+
25808+
"""
25809+
Returns the elements in the list that come before the specified cursor.
25810+
"""
25811+
before: String
25812+
25813+
"""
25814+
Returns the first _n_ elements from the list.
25815+
"""
25816+
first: Int
25817+
25818+
"""
25819+
Returns the last _n_ elements from the list.
25820+
"""
25821+
last: Int
25822+
25823+
"""
25824+
Ordering options for repository migrations returned.
25825+
"""
25826+
orderBy: RepositoryMigrationOrder = {field: CREATED_AT, direction: ASC}
25827+
25828+
"""
25829+
Filter repository migrations by state.
25830+
"""
25831+
state: MigrationState
25832+
): RepositoryMigrationConnection!
25833+
2579825834
"""
2579925835
When true the organization requires all members, billing managers, and outside
2580025836
collaborators to enable two-factor authentication.
@@ -26842,6 +26878,349 @@ type OrganizationIdentityProvider implements Node {
2684226878
"""
2684326879
last: Int
2684426880

26881+
"""
26882+
Filter to external identities with the users login
26883+
"""
26884+
privacy: TeamPrivacy
26885+
26886+
"""
26887+
If non-null, filters teams with query on team name and team slug
26888+
"""
26889+
query: String
26890+
26891+
"""
26892+
If non-null, filters teams according to whether the viewer is an admin or member on team
26893+
"""
26894+
role: TeamRole
26895+
26896+
"""
26897+
If true, restrict to only root teams
26898+
"""
26899+
rootTeamsOnly: Boolean = false
26900+
26901+
"""
26902+
User logins to filter by
26903+
"""
26904+
userLogins: [String!]
26905+
): TeamConnection!
26906+
26907+
"""
26908+
The HTTP path listing organization's teams
26909+
"""
26910+
teamsResourcePath: URI!
26911+
26912+
"""
26913+
The HTTP URL listing organization's teams
26914+
"""
26915+
teamsUrl: URI!
26916+
26917+
"""
26918+
The organization's Twitter username.
26919+
"""
26920+
twitterUsername: String
26921+
26922+
"""
26923+
Identifies the date and time when the object was last updated.
26924+
"""
26925+
updatedAt: DateTime!
26926+
26927+
"""
26928+
The HTTP URL for this organization.
26929+
"""
26930+
url: URI!
26931+
26932+
"""
26933+
Organization is adminable by the viewer.
26934+
"""
26935+
viewerCanAdminister: Boolean!
26936+
26937+
"""
26938+
Can the viewer pin repositories and gists to the profile?
26939+
"""
26940+
viewerCanChangePinnedItems: Boolean!
26941+
26942+
"""
26943+
Can the current viewer create new projects on this owner.
26944+
"""
26945+
viewerCanCreateProjects: Boolean!
26946+
26947+
"""
26948+
Viewer can create repositories on this organization
26949+
"""
26950+
viewerCanCreateRepositories: Boolean!
26951+
26952+
"""
26953+
Viewer can create teams on this organization.
26954+
"""
26955+
viewerCanCreateTeams: Boolean!
26956+
26957+
"""
26958+
Whether or not the viewer is able to sponsor this user/organization.
26959+
"""
26960+
viewerCanSponsor: Boolean!
26961+
26962+
"""
26963+
Viewer is an active member of this organization.
26964+
"""
26965+
viewerIsAMember: Boolean!
26966+
26967+
"""
26968+
True if the viewer is sponsoring this user/organization.
26969+
"""
26970+
viewerIsSponsoring: Boolean!
26971+
26972+
"""
26973+
The organization's public profile URL.
26974+
"""
26975+
websiteUrl: URI
26976+
}
26977+
26978+
"""
26979+
An audit entry in an organization audit log.
26980+
"""
26981+
union OrganizationAuditEntry =
26982+
MembersCanDeleteReposClearAuditEntry
26983+
| MembersCanDeleteReposDisableAuditEntry
26984+
| MembersCanDeleteReposEnableAuditEntry
26985+
| OauthApplicationCreateAuditEntry
26986+
| OrgAddBillingManagerAuditEntry
26987+
| OrgAddMemberAuditEntry
26988+
| OrgBlockUserAuditEntry
26989+
| OrgConfigDisableCollaboratorsOnlyAuditEntry
26990+
| OrgConfigEnableCollaboratorsOnlyAuditEntry
26991+
| OrgCreateAuditEntry
26992+
| OrgDisableOauthAppRestrictionsAuditEntry
26993+
| OrgDisableSamlAuditEntry
26994+
| OrgDisableTwoFactorRequirementAuditEntry
26995+
| OrgEnableOauthAppRestrictionsAuditEntry
26996+
| OrgEnableSamlAuditEntry
26997+
| OrgEnableTwoFactorRequirementAuditEntry
26998+
| OrgInviteMemberAuditEntry
26999+
| OrgInviteToBusinessAuditEntry
27000+
| OrgOauthAppAccessApprovedAuditEntry
27001+
| OrgOauthAppAccessDeniedAuditEntry
27002+
| OrgOauthAppAccessRequestedAuditEntry
27003+
| OrgRemoveBillingManagerAuditEntry
27004+
| OrgRemoveMemberAuditEntry
27005+
| OrgRemoveOutsideCollaboratorAuditEntry
27006+
| OrgRestoreMemberAuditEntry
27007+
| OrgUnblockUserAuditEntry
27008+
| OrgUpdateDefaultRepositoryPermissionAuditEntry
27009+
| OrgUpdateMemberAuditEntry
27010+
| OrgUpdateMemberRepositoryCreationPermissionAuditEntry
27011+
| OrgUpdateMemberRepositoryInvitationPermissionAuditEntry
27012+
| PrivateRepositoryForkingDisableAuditEntry
27013+
| PrivateRepositoryForkingEnableAuditEntry
27014+
| RepoAccessAuditEntry
27015+
| RepoAddMemberAuditEntry
27016+
| RepoAddTopicAuditEntry
27017+
| RepoArchivedAuditEntry
27018+
| RepoChangeMergeSettingAuditEntry
27019+
| RepoConfigDisableAnonymousGitAccessAuditEntry
27020+
| RepoConfigDisableCollaboratorsOnlyAuditEntry
27021+
| RepoConfigDisableContributorsOnlyAuditEntry
27022+
| RepoConfigDisableSockpuppetDisallowedAuditEntry
27023+
| RepoConfigEnableAnonymousGitAccessAuditEntry
27024+
| RepoConfigEnableCollaboratorsOnlyAuditEntry
27025+
| RepoConfigEnableContributorsOnlyAuditEntry
27026+
| RepoConfigEnableSockpuppetDisallowedAuditEntry
27027+
| RepoConfigLockAnonymousGitAccessAuditEntry
27028+
| RepoConfigUnlockAnonymousGitAccessAuditEntry
27029+
| RepoCreateAuditEntry
27030+
| RepoDestroyAuditEntry
27031+
| RepoRemoveMemberAuditEntry
27032+
| RepoRemoveTopicAuditEntry
27033+
| RepositoryVisibilityChangeDisableAuditEntry
27034+
| RepositoryVisibilityChangeEnableAuditEntry
27035+
| TeamAddMemberAuditEntry
27036+
| TeamAddRepositoryAuditEntry
27037+
| TeamChangeParentTeamAuditEntry
27038+
| TeamRemoveMemberAuditEntry
27039+
| TeamRemoveRepositoryAuditEntry
27040+
27041+
"""
27042+
The connection type for OrganizationAuditEntry.
27043+
"""
27044+
type OrganizationAuditEntryConnection {
27045+
"""
27046+
A list of edges.
27047+
"""
27048+
edges: [OrganizationAuditEntryEdge]
27049+
27050+
"""
27051+
A list of nodes.
27052+
"""
27053+
nodes: [OrganizationAuditEntry]
27054+
27055+
"""
27056+
Information to aid in pagination.
27057+
"""
27058+
pageInfo: PageInfo!
27059+
27060+
"""
27061+
Identifies the total count of items in the connection.
27062+
"""
27063+
totalCount: Int!
27064+
}
27065+
27066+
"""
27067+
Metadata for an audit entry with action org.*
27068+
"""
27069+
interface OrganizationAuditEntryData {
27070+
"""
27071+
The Organization associated with the Audit Entry.
27072+
"""
27073+
organization: Organization
27074+
27075+
"""
27076+
The name of the Organization.
27077+
"""
27078+
organizationName: String
27079+
27080+
"""
27081+
The HTTP path for the organization
27082+
"""
27083+
organizationResourcePath: URI
27084+
27085+
"""
27086+
The HTTP URL for the organization
27087+
"""
27088+
organizationUrl: URI
27089+
}
27090+
27091+
"""
27092+
An edge in a connection.
27093+
"""
27094+
type OrganizationAuditEntryEdge {
27095+
"""
27096+
A cursor for use in pagination.
27097+
"""
27098+
cursor: String!
27099+
27100+
"""
27101+
The item at the end of the edge.
27102+
"""
27103+
node: OrganizationAuditEntry
27104+
}
27105+
27106+
"""
27107+
A list of organizations managed by an enterprise.
27108+
"""
27109+
type OrganizationConnection {
27110+
"""
27111+
A list of edges.
27112+
"""
27113+
edges: [OrganizationEdge]
27114+
27115+
"""
27116+
A list of nodes.
27117+
"""
27118+
nodes: [Organization]
27119+
27120+
"""
27121+
Information to aid in pagination.
27122+
"""
27123+
pageInfo: PageInfo!
27124+
27125+
"""
27126+
Identifies the total count of items in the connection.
27127+
"""
27128+
totalCount: Int!
27129+
}
27130+
27131+
"""
27132+
An edge in a connection.
27133+
"""
27134+
type OrganizationEdge {
27135+
"""
27136+
A cursor for use in pagination.
27137+
"""
27138+
cursor: String!
27139+
27140+
"""
27141+
The item at the end of the edge.
27142+
"""
27143+
node: Organization
27144+
}
27145+
27146+
"""
27147+
The connection type for User.
27148+
"""
27149+
type OrganizationEnterpriseOwnerConnection {
27150+
"""
27151+
A list of edges.
27152+
"""
27153+
edges: [OrganizationEnterpriseOwnerEdge]
27154+
27155+
"""
27156+
A list of nodes.
27157+
"""
27158+
nodes: [User]
27159+
27160+
"""
27161+
Information to aid in pagination.
27162+
"""
27163+
pageInfo: PageInfo!
27164+
27165+
"""
27166+
Identifies the total count of items in the connection.
27167+
"""
27168+
totalCount: Int!
27169+
}
27170+
27171+
"""
27172+
An enterprise owner in the context of an organization that is part of the enterprise.
27173+
"""
27174+
type OrganizationEnterpriseOwnerEdge {
27175+
"""
27176+
A cursor for use in pagination.
27177+
"""
27178+
cursor: String!
27179+
27180+
"""
27181+
The item at the end of the edge.
27182+
"""
27183+
node: User
27184+
27185+
"""
27186+
The role of the owner with respect to the organization.
27187+
"""
27188+
organizationRole: RoleInOrganization!
27189+
}
27190+
27191+
"""
27192+
An Identity Provider configured to provision SAML and SCIM identities for Organizations
27193+
"""
27194+
type OrganizationIdentityProvider implements Node {
27195+
"""
27196+
The digest algorithm used to sign SAML requests for the Identity Provider.
27197+
"""
27198+
digestMethod: URI
27199+
27200+
"""
27201+
External Identities provisioned by this Identity Provider
27202+
"""
27203+
externalIdentities(
27204+
"""
27205+
Returns the elements in the list that come after the specified cursor.
27206+
"""
27207+
after: String
27208+
27209+
"""
27210+
Returns the elements in the list that come before the specified cursor.
27211+
"""
27212+
before: String
27213+
27214+
"""
27215+
Returns the first _n_ elements from the list.
27216+
"""
27217+
first: Int
27218+
27219+
"""
27220+
Filter to external identities with valid org membership only
27221+
"""
27222+
membersOnly: Boolean
27223+
2684527224
"""
2684627225
Filter to external identities with the users login
2684727226
"""

0 commit comments

Comments
 (0)