1
0
mirror of synced 2026-01-08 03:01:54 -05:00

GraphQL schema update (#39046)

Co-authored-by: rachmari <rachmari@users.noreply.github.com>
This commit is contained in:
docs-bot
2023-07-13 09:56:38 -07:00
committed by GitHub
parent efe2f4551c
commit 7cec0a863d
7 changed files with 249 additions and 0 deletions

View File

@@ -14921,6 +14921,31 @@ type EnvironmentEdge {
node: Environment
}
"""
Properties by which environments connections can be ordered
"""
enum EnvironmentOrderField {
"""
Order environments by name.
"""
NAME
}
"""
Ordering options for environments
"""
input Environments {
"""
The direction in which to order environments by the specified field.
"""
direction: OrderDirection!
"""
The field to order environments by.
"""
field: EnvironmentOrderField!
}
"""
An external identity provisioned by SAML SSO or SCIM. If SAML is configured on
the organization, the external identity is visible to (1) organization owners,
@@ -42149,6 +42174,11 @@ type Repository implements Node & PackageOwner & ProjectOwner & ProjectV2Recent
Returns the last _n_ elements from the list.
"""
last: Int
"""
Ordering options for the environments
"""
orderBy: Environments = {field: NAME, direction: ASC}
): EnvironmentConnection!
"""