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

Commit e27e2cd

Browse files
author
Create or Update Pull Request Action
committed
WIP: github schema.graphql changed - please review
1 parent 90e92a7 commit e27e2cd

File tree

1 file changed

+36
-343
lines changed

1 file changed

+36
-343
lines changed

example/github/schema.graphql

Lines changed: 36 additions & 343 deletions
Original file line numberDiff line numberDiff line change
@@ -25399,6 +25399,42 @@ type Organization implements Actor & MemberStatusable & Node & PackageOwner & Pr
2539925399
state: MigrationState
2540025400
): RepositoryMigrationConnection!
2540125401

25402+
"""
25403+
When true the organization requires all members, billing managers, and outside
25404+
collaborators to enable two-factor authentication.
25405+
"""
25406+
repositoryMigrations(
25407+
"""
25408+
Returns the elements in the list that come after the specified cursor.
25409+
"""
25410+
after: String
25411+
25412+
"""
25413+
Returns the elements in the list that come before the specified cursor.
25414+
"""
25415+
before: String
25416+
25417+
"""
25418+
Returns the first _n_ elements from the list.
25419+
"""
25420+
first: Int
25421+
25422+
"""
25423+
Returns the last _n_ elements from the list.
25424+
"""
25425+
last: Int
25426+
25427+
"""
25428+
Ordering options for repository migrations returned.
25429+
"""
25430+
orderBy: RepositoryMigrationOrder = {field: CREATED_AT, direction: ASC}
25431+
25432+
"""
25433+
Filter repository migrations by state.
25434+
"""
25435+
state: MigrationState
25436+
): RepositoryMigrationConnection!
25437+
2540225438
"""
2540325439
When true the organization requires all members, billing managers, and outside
2540425440
collaborators to enable two-factor authentication.
@@ -26446,349 +26482,6 @@ type OrganizationIdentityProvider implements Node {
2644626482
"""
2644726483
last: Int
2644826484

26449-
"""
26450-
Filter to external identities with the users login
26451-
"""
26452-
privacy: TeamPrivacy
26453-
26454-
"""
26455-
If non-null, filters teams with query on team name and team slug
26456-
"""
26457-
query: String
26458-
26459-
"""
26460-
If non-null, filters teams according to whether the viewer is an admin or member on team
26461-
"""
26462-
role: TeamRole
26463-
26464-
"""
26465-
If true, restrict to only root teams
26466-
"""
26467-
rootTeamsOnly: Boolean = false
26468-
26469-
"""
26470-
User logins to filter by
26471-
"""
26472-
userLogins: [String!]
26473-
): TeamConnection!
26474-
26475-
"""
26476-
The HTTP path listing organization's teams
26477-
"""
26478-
teamsResourcePath: URI!
26479-
26480-
"""
26481-
The HTTP URL listing organization's teams
26482-
"""
26483-
teamsUrl: URI!
26484-
26485-
"""
26486-
The organization's Twitter username.
26487-
"""
26488-
twitterUsername: String
26489-
26490-
"""
26491-
Identifies the date and time when the object was last updated.
26492-
"""
26493-
updatedAt: DateTime!
26494-
26495-
"""
26496-
The HTTP URL for this organization.
26497-
"""
26498-
url: URI!
26499-
26500-
"""
26501-
Organization is adminable by the viewer.
26502-
"""
26503-
viewerCanAdminister: Boolean!
26504-
26505-
"""
26506-
Can the viewer pin repositories and gists to the profile?
26507-
"""
26508-
viewerCanChangePinnedItems: Boolean!
26509-
26510-
"""
26511-
Can the current viewer create new projects on this owner.
26512-
"""
26513-
viewerCanCreateProjects: Boolean!
26514-
26515-
"""
26516-
Viewer can create repositories on this organization
26517-
"""
26518-
viewerCanCreateRepositories: Boolean!
26519-
26520-
"""
26521-
Viewer can create teams on this organization.
26522-
"""
26523-
viewerCanCreateTeams: Boolean!
26524-
26525-
"""
26526-
Whether or not the viewer is able to sponsor this user/organization.
26527-
"""
26528-
viewerCanSponsor: Boolean!
26529-
26530-
"""
26531-
Viewer is an active member of this organization.
26532-
"""
26533-
viewerIsAMember: Boolean!
26534-
26535-
"""
26536-
True if the viewer is sponsoring this user/organization.
26537-
"""
26538-
viewerIsSponsoring: Boolean!
26539-
26540-
"""
26541-
The organization's public profile URL.
26542-
"""
26543-
websiteUrl: URI
26544-
}
26545-
26546-
"""
26547-
An audit entry in an organization audit log.
26548-
"""
26549-
union OrganizationAuditEntry =
26550-
MembersCanDeleteReposClearAuditEntry
26551-
| MembersCanDeleteReposDisableAuditEntry
26552-
| MembersCanDeleteReposEnableAuditEntry
26553-
| OauthApplicationCreateAuditEntry
26554-
| OrgAddBillingManagerAuditEntry
26555-
| OrgAddMemberAuditEntry
26556-
| OrgBlockUserAuditEntry
26557-
| OrgConfigDisableCollaboratorsOnlyAuditEntry
26558-
| OrgConfigEnableCollaboratorsOnlyAuditEntry
26559-
| OrgCreateAuditEntry
26560-
| OrgDisableOauthAppRestrictionsAuditEntry
26561-
| OrgDisableSamlAuditEntry
26562-
| OrgDisableTwoFactorRequirementAuditEntry
26563-
| OrgEnableOauthAppRestrictionsAuditEntry
26564-
| OrgEnableSamlAuditEntry
26565-
| OrgEnableTwoFactorRequirementAuditEntry
26566-
| OrgInviteMemberAuditEntry
26567-
| OrgInviteToBusinessAuditEntry
26568-
| OrgOauthAppAccessApprovedAuditEntry
26569-
| OrgOauthAppAccessDeniedAuditEntry
26570-
| OrgOauthAppAccessRequestedAuditEntry
26571-
| OrgRemoveBillingManagerAuditEntry
26572-
| OrgRemoveMemberAuditEntry
26573-
| OrgRemoveOutsideCollaboratorAuditEntry
26574-
| OrgRestoreMemberAuditEntry
26575-
| OrgUnblockUserAuditEntry
26576-
| OrgUpdateDefaultRepositoryPermissionAuditEntry
26577-
| OrgUpdateMemberAuditEntry
26578-
| OrgUpdateMemberRepositoryCreationPermissionAuditEntry
26579-
| OrgUpdateMemberRepositoryInvitationPermissionAuditEntry
26580-
| PrivateRepositoryForkingDisableAuditEntry
26581-
| PrivateRepositoryForkingEnableAuditEntry
26582-
| RepoAccessAuditEntry
26583-
| RepoAddMemberAuditEntry
26584-
| RepoAddTopicAuditEntry
26585-
| RepoArchivedAuditEntry
26586-
| RepoChangeMergeSettingAuditEntry
26587-
| RepoConfigDisableAnonymousGitAccessAuditEntry
26588-
| RepoConfigDisableCollaboratorsOnlyAuditEntry
26589-
| RepoConfigDisableContributorsOnlyAuditEntry
26590-
| RepoConfigDisableSockpuppetDisallowedAuditEntry
26591-
| RepoConfigEnableAnonymousGitAccessAuditEntry
26592-
| RepoConfigEnableCollaboratorsOnlyAuditEntry
26593-
| RepoConfigEnableContributorsOnlyAuditEntry
26594-
| RepoConfigEnableSockpuppetDisallowedAuditEntry
26595-
| RepoConfigLockAnonymousGitAccessAuditEntry
26596-
| RepoConfigUnlockAnonymousGitAccessAuditEntry
26597-
| RepoCreateAuditEntry
26598-
| RepoDestroyAuditEntry
26599-
| RepoRemoveMemberAuditEntry
26600-
| RepoRemoveTopicAuditEntry
26601-
| RepositoryVisibilityChangeDisableAuditEntry
26602-
| RepositoryVisibilityChangeEnableAuditEntry
26603-
| TeamAddMemberAuditEntry
26604-
| TeamAddRepositoryAuditEntry
26605-
| TeamChangeParentTeamAuditEntry
26606-
| TeamRemoveMemberAuditEntry
26607-
| TeamRemoveRepositoryAuditEntry
26608-
26609-
"""
26610-
The connection type for OrganizationAuditEntry.
26611-
"""
26612-
type OrganizationAuditEntryConnection {
26613-
"""
26614-
A list of edges.
26615-
"""
26616-
edges: [OrganizationAuditEntryEdge]
26617-
26618-
"""
26619-
A list of nodes.
26620-
"""
26621-
nodes: [OrganizationAuditEntry]
26622-
26623-
"""
26624-
Information to aid in pagination.
26625-
"""
26626-
pageInfo: PageInfo!
26627-
26628-
"""
26629-
Identifies the total count of items in the connection.
26630-
"""
26631-
totalCount: Int!
26632-
}
26633-
26634-
"""
26635-
Metadata for an audit entry with action org.*
26636-
"""
26637-
interface OrganizationAuditEntryData {
26638-
"""
26639-
The Organization associated with the Audit Entry.
26640-
"""
26641-
organization: Organization
26642-
26643-
"""
26644-
The name of the Organization.
26645-
"""
26646-
organizationName: String
26647-
26648-
"""
26649-
The HTTP path for the organization
26650-
"""
26651-
organizationResourcePath: URI
26652-
26653-
"""
26654-
The HTTP URL for the organization
26655-
"""
26656-
organizationUrl: URI
26657-
}
26658-
26659-
"""
26660-
An edge in a connection.
26661-
"""
26662-
type OrganizationAuditEntryEdge {
26663-
"""
26664-
A cursor for use in pagination.
26665-
"""
26666-
cursor: String!
26667-
26668-
"""
26669-
The item at the end of the edge.
26670-
"""
26671-
node: OrganizationAuditEntry
26672-
}
26673-
26674-
"""
26675-
A list of organizations managed by an enterprise.
26676-
"""
26677-
type OrganizationConnection {
26678-
"""
26679-
A list of edges.
26680-
"""
26681-
edges: [OrganizationEdge]
26682-
26683-
"""
26684-
A list of nodes.
26685-
"""
26686-
nodes: [Organization]
26687-
26688-
"""
26689-
Information to aid in pagination.
26690-
"""
26691-
pageInfo: PageInfo!
26692-
26693-
"""
26694-
Identifies the total count of items in the connection.
26695-
"""
26696-
totalCount: Int!
26697-
}
26698-
26699-
"""
26700-
An edge in a connection.
26701-
"""
26702-
type OrganizationEdge {
26703-
"""
26704-
A cursor for use in pagination.
26705-
"""
26706-
cursor: String!
26707-
26708-
"""
26709-
The item at the end of the edge.
26710-
"""
26711-
node: Organization
26712-
}
26713-
26714-
"""
26715-
The connection type for User.
26716-
"""
26717-
type OrganizationEnterpriseOwnerConnection {
26718-
"""
26719-
A list of edges.
26720-
"""
26721-
edges: [OrganizationEnterpriseOwnerEdge]
26722-
26723-
"""
26724-
A list of nodes.
26725-
"""
26726-
nodes: [User]
26727-
26728-
"""
26729-
Information to aid in pagination.
26730-
"""
26731-
pageInfo: PageInfo!
26732-
26733-
"""
26734-
Identifies the total count of items in the connection.
26735-
"""
26736-
totalCount: Int!
26737-
}
26738-
26739-
"""
26740-
An enterprise owner in the context of an organization that is part of the enterprise.
26741-
"""
26742-
type OrganizationEnterpriseOwnerEdge {
26743-
"""
26744-
A cursor for use in pagination.
26745-
"""
26746-
cursor: String!
26747-
26748-
"""
26749-
The item at the end of the edge.
26750-
"""
26751-
node: User
26752-
26753-
"""
26754-
The role of the owner with respect to the organization.
26755-
"""
26756-
organizationRole: RoleInOrganization!
26757-
}
26758-
26759-
"""
26760-
An Identity Provider configured to provision SAML and SCIM identities for Organizations
26761-
"""
26762-
type OrganizationIdentityProvider implements Node {
26763-
"""
26764-
The digest algorithm used to sign SAML requests for the Identity Provider.
26765-
"""
26766-
digestMethod: URI
26767-
26768-
"""
26769-
External Identities provisioned by this Identity Provider
26770-
"""
26771-
externalIdentities(
26772-
"""
26773-
Returns the elements in the list that come after the specified cursor.
26774-
"""
26775-
after: String
26776-
26777-
"""
26778-
Returns the elements in the list that come before the specified cursor.
26779-
"""
26780-
before: String
26781-
26782-
"""
26783-
Returns the first _n_ elements from the list.
26784-
"""
26785-
first: Int
26786-
26787-
"""
26788-
Filter to external identities with valid org membership only
26789-
"""
26790-
membersOnly: Boolean
26791-
2679226485
"""
2679326486
Filter to external identities with the users login
2679426487
"""

0 commit comments

Comments
 (0)