Skip to content

Commit 827e774

Browse files
chore: update api schema dump
Co-authored-by: octodog <mu001@lablup.com>
1 parent 6f36a05 commit 827e774

2 files changed

Lines changed: 4 additions & 76 deletions

File tree

docs/manager/graphql-reference/supergraph.graphql

Lines changed: 2 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -11503,8 +11503,8 @@ type RouteEdge
1150311503
input RouteFilter
1150411504
@join__type(graph: STRAWBERRY)
1150511505
{
11506-
status: RouteStatusFilter = null
11507-
trafficStatus: RouteTrafficStatusFilter = null
11506+
status: [RouteStatus!] = null
11507+
trafficStatus: [RouteTrafficStatus!] = null
1150811508
AND: [RouteFilter!] = null
1150911509
OR: [RouteFilter!] = null
1151011510
NOT: [RouteFilter!] = null
@@ -11628,25 +11628,6 @@ enum RouteStatus
1162811628
FAILED_TO_START @join__enumValue(graph: STRAWBERRY)
1162911629
}
1163011630

11631-
"""
11632-
Added in 26.3.0. Filter for route status with equality and membership operators.
11633-
"""
11634-
input RouteStatusFilter
11635-
@join__type(graph: STRAWBERRY)
11636-
{
11637-
"""Matches routes with this exact status."""
11638-
equals: RouteStatus = null
11639-
11640-
"""Matches routes whose status is in this list."""
11641-
in: [RouteStatus!] = null
11642-
11643-
"""Excludes routes with this exact status."""
11644-
notEquals: RouteStatus = null
11645-
11646-
"""Excludes routes whose status is in this list."""
11647-
notIn: [RouteStatus!] = null
11648-
}
11649-
1165011631
"""
1165111632
Added in 25.19.0. Traffic routing status for a route. Controls whether traffic should be sent to this route.
1165211633
"""
@@ -11657,25 +11638,6 @@ enum RouteTrafficStatus
1165711638
INACTIVE @join__enumValue(graph: STRAWBERRY)
1165811639
}
1165911640

11660-
"""
11661-
Added in 26.3.0. Filter for route traffic status with equality and membership operators.
11662-
"""
11663-
input RouteTrafficStatusFilter
11664-
@join__type(graph: STRAWBERRY)
11665-
{
11666-
"""Matches routes with this exact traffic status."""
11667-
equals: RouteTrafficStatus = null
11668-
11669-
"""Matches routes whose traffic status is in this list."""
11670-
in: [RouteTrafficStatus!] = null
11671-
11672-
"""Excludes routes with this exact traffic status."""
11673-
notEquals: RouteTrafficStatus = null
11674-
11675-
"""Excludes routes whose traffic status is in this list."""
11676-
notIn: [RouteTrafficStatus!] = null
11677-
}
11678-
1167911641
type Routing implements Item
1168011642
@join__implements(graph: GRAPHENE, interface: "Item")
1168111643
@join__type(graph: GRAPHENE)

docs/manager/graphql-reference/v2-schema.graphql

Lines changed: 2 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -6859,8 +6859,8 @@ type RouteEdge {
68596859

68606860
"""Added in 25.19.0. Filter for routes."""
68616861
input RouteFilter {
6862-
status: RouteStatusFilter = null
6863-
trafficStatus: RouteTrafficStatusFilter = null
6862+
status: [RouteStatus!] = null
6863+
trafficStatus: [RouteTrafficStatus!] = null
68646864
AND: [RouteFilter!] = null
68656865
OR: [RouteFilter!] = null
68666866
NOT: [RouteFilter!] = null
@@ -6963,23 +6963,6 @@ enum RouteStatus {
69636963
FAILED_TO_START
69646964
}
69656965

6966-
"""
6967-
Added in 26.3.0. Filter for route status with equality and membership operators.
6968-
"""
6969-
input RouteStatusFilter {
6970-
"""Matches routes with this exact status."""
6971-
equals: RouteStatus = null
6972-
6973-
"""Matches routes whose status is in this list."""
6974-
in: [RouteStatus!] = null
6975-
6976-
"""Excludes routes with this exact status."""
6977-
notEquals: RouteStatus = null
6978-
6979-
"""Excludes routes whose status is in this list."""
6980-
notIn: [RouteStatus!] = null
6981-
}
6982-
69836966
"""
69846967
Added in 25.19.0. Traffic routing status for a route. Controls whether traffic should be sent to this route.
69856968
"""
@@ -6988,23 +6971,6 @@ enum RouteTrafficStatus {
69886971
INACTIVE
69896972
}
69906973

6991-
"""
6992-
Added in 26.3.0. Filter for route traffic status with equality and membership operators.
6993-
"""
6994-
input RouteTrafficStatusFilter {
6995-
"""Matches routes with this exact traffic status."""
6996-
equals: RouteTrafficStatus = null
6997-
6998-
"""Matches routes whose traffic status is in this list."""
6999-
in: [RouteTrafficStatus!] = null
7000-
7001-
"""Excludes routes with this exact traffic status."""
7002-
notEquals: RouteTrafficStatus = null
7003-
7004-
"""Excludes routes whose traffic status is in this list."""
7005-
notIn: [RouteTrafficStatus!] = null
7006-
}
7007-
70086974
"""Added in 24.09.0. Input for SMTP authentication credentials"""
70096975
input SMTPAuthInput {
70106976
username: String = null

0 commit comments

Comments
 (0)