Skip to content

Commit 1b82cdd

Browse files
chore: update api schema dump
Co-authored-by: octodog <mu001@lablup.com>
1 parent f1acbd7 commit 1b82cdd

2 files changed

Lines changed: 84 additions & 84 deletions

File tree

docs/manager/graphql-reference/supergraph.graphql

Lines changed: 46 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -2264,29 +2264,6 @@ type BulkAssignRolePayload
22642264
failed: [BulkAssignRoleError!]!
22652265
}
22662266

2267-
"""
2268-
Added in UNRELEASED. Self-service bulk create — scope is `USER` / `current_user`.
2269-
"""
2270-
input MyBulkCreateAppConfigFragmentInput
2271-
@join__type(graph: STRAWBERRY)
2272-
{
2273-
"""USER-scope rows to create."""
2274-
items: [MyAppConfigFragmentItemInput!]!
2275-
}
2276-
2277-
"""
2278-
Added in UNRELEASED. Payload for `myBulkCreateAppConfigFragments` (recomputed views).
2279-
"""
2280-
type MyBulkCreateAppConfigFragmentsPayload
2281-
@join__type(graph: STRAWBERRY)
2282-
{
2283-
"""Recomputed merged AppConfig views for each created USER fragment."""
2284-
created: [AppConfig!]!
2285-
2286-
"""Per-item failures."""
2287-
failed: [AppConfigFragmentBulkError!]!
2288-
}
2289-
22902267
"""Added in 26.2.0. Payload for bulk user creation mutation."""
22912268
type BulkCreateUsersV2Payload
22922269
@join__type(graph: STRAWBERRY)
@@ -2439,29 +2416,6 @@ type BulkRevokeRolePayload
24392416
failed: [BulkRevokeRoleError!]!
24402417
}
24412418

2442-
"""
2443-
Added in UNRELEASED. Self-service bulk update — scope is `USER` / `current_user`.
2444-
"""
2445-
input MyBulkUpdateAppConfigFragmentInput
2446-
@join__type(graph: STRAWBERRY)
2447-
{
2448-
"""USER-scope rows to update."""
2449-
items: [MyAppConfigFragmentItemInput!]!
2450-
}
2451-
2452-
"""
2453-
Added in UNRELEASED. Payload for `myBulkUpdateAppConfigFragments` (recomputed views).
2454-
"""
2455-
type MyBulkUpdateAppConfigFragmentsPayload
2456-
@join__type(graph: STRAWBERRY)
2457-
{
2458-
"""Recomputed merged AppConfig views for each updated USER fragment."""
2459-
updated: [AppConfig!]!
2460-
2461-
"""Per-item failures."""
2462-
failed: [AppConfigFragmentBulkError!]!
2463-
}
2464-
24652419
"""Added in 26.3.0. Payload for bulk user update mutation."""
24662420
type BulkUpdateUsersV2Payload
24672421
@join__type(graph: STRAWBERRY)
@@ -11571,6 +11525,52 @@ input MyAppConfigFragmentItemInput
1157111525
config: JSON!
1157211526
}
1157311527

11528+
"""
11529+
Added in UNRELEASED. Self-service bulk create — scope is `USER` / `current_user`.
11530+
"""
11531+
input MyBulkCreateAppConfigFragmentInput
11532+
@join__type(graph: STRAWBERRY)
11533+
{
11534+
"""USER-scope rows to create."""
11535+
items: [MyAppConfigFragmentItemInput!]!
11536+
}
11537+
11538+
"""
11539+
Added in UNRELEASED. Payload for `myBulkCreateAppConfigFragments` (recomputed views).
11540+
"""
11541+
type MyBulkCreateAppConfigFragmentsPayload
11542+
@join__type(graph: STRAWBERRY)
11543+
{
11544+
"""Recomputed merged AppConfig views for each created USER fragment."""
11545+
created: [AppConfig!]!
11546+
11547+
"""Per-item failures."""
11548+
failed: [AppConfigFragmentBulkError!]!
11549+
}
11550+
11551+
"""
11552+
Added in UNRELEASED. Self-service bulk update — scope is `USER` / `current_user`.
11553+
"""
11554+
input MyBulkUpdateAppConfigFragmentInput
11555+
@join__type(graph: STRAWBERRY)
11556+
{
11557+
"""USER-scope rows to update."""
11558+
items: [MyAppConfigFragmentItemInput!]!
11559+
}
11560+
11561+
"""
11562+
Added in UNRELEASED. Payload for `myBulkUpdateAppConfigFragments` (recomputed views).
11563+
"""
11564+
type MyBulkUpdateAppConfigFragmentsPayload
11565+
@join__type(graph: STRAWBERRY)
11566+
{
11567+
"""Recomputed merged AppConfig views for each updated USER fragment."""
11568+
updated: [AppConfig!]!
11569+
11570+
"""Per-item failures."""
11571+
failed: [AppConfigFragmentBulkError!]!
11572+
}
11573+
1157411574
"""
1157511575
Added in 26.4.2. Query result returning the current client's IP address.
1157611576
"""

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

Lines changed: 38 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1601,25 +1601,6 @@ type BulkAssignRolePayload {
16011601
failed: [BulkAssignRoleError!]!
16021602
}
16031603

1604-
"""
1605-
Added in UNRELEASED. Self-service bulk create — scope is `USER` / `current_user`.
1606-
"""
1607-
input MyBulkCreateAppConfigFragmentInput {
1608-
"""USER-scope rows to create."""
1609-
items: [MyAppConfigFragmentItemInput!]!
1610-
}
1611-
1612-
"""
1613-
Added in UNRELEASED. Payload for `myBulkCreateAppConfigFragments` (recomputed views).
1614-
"""
1615-
type MyBulkCreateAppConfigFragmentsPayload {
1616-
"""Recomputed merged AppConfig views for each created USER fragment."""
1617-
created: [AppConfig!]!
1618-
1619-
"""Per-item failures."""
1620-
failed: [AppConfigFragmentBulkError!]!
1621-
}
1622-
16231604
"""Added in 26.2.0. Error information for a failed user in bulk creation."""
16241605
type BulkCreateUserV2Error {
16251606
"""Original position in the input list."""
@@ -1744,25 +1725,6 @@ type BulkRevokeRolePayload {
17441725
failed: [BulkRevokeRoleError!]!
17451726
}
17461727

1747-
"""
1748-
Added in UNRELEASED. Self-service bulk update — scope is `USER` / `current_user`.
1749-
"""
1750-
input MyBulkUpdateAppConfigFragmentInput {
1751-
"""USER-scope rows to update."""
1752-
items: [MyAppConfigFragmentItemInput!]!
1753-
}
1754-
1755-
"""
1756-
Added in UNRELEASED. Payload for `myBulkUpdateAppConfigFragments` (recomputed views).
1757-
"""
1758-
type MyBulkUpdateAppConfigFragmentsPayload {
1759-
"""Recomputed merged AppConfig views for each updated USER fragment."""
1760-
updated: [AppConfig!]!
1761-
1762-
"""Per-item failures."""
1763-
failed: [AppConfigFragmentBulkError!]!
1764-
}
1765-
17661728
"""Added in 26.3.0. Error information for a failed user in bulk update."""
17671729
type BulkUpdateUserV2Error {
17681730
"""UUID of the user that failed to update."""
@@ -7453,6 +7415,44 @@ input MyAppConfigFragmentItemInput {
74537415
config: JSON!
74547416
}
74557417

7418+
"""
7419+
Added in UNRELEASED. Self-service bulk create — scope is `USER` / `current_user`.
7420+
"""
7421+
input MyBulkCreateAppConfigFragmentInput {
7422+
"""USER-scope rows to create."""
7423+
items: [MyAppConfigFragmentItemInput!]!
7424+
}
7425+
7426+
"""
7427+
Added in UNRELEASED. Payload for `myBulkCreateAppConfigFragments` (recomputed views).
7428+
"""
7429+
type MyBulkCreateAppConfigFragmentsPayload {
7430+
"""Recomputed merged AppConfig views for each created USER fragment."""
7431+
created: [AppConfig!]!
7432+
7433+
"""Per-item failures."""
7434+
failed: [AppConfigFragmentBulkError!]!
7435+
}
7436+
7437+
"""
7438+
Added in UNRELEASED. Self-service bulk update — scope is `USER` / `current_user`.
7439+
"""
7440+
input MyBulkUpdateAppConfigFragmentInput {
7441+
"""USER-scope rows to update."""
7442+
items: [MyAppConfigFragmentItemInput!]!
7443+
}
7444+
7445+
"""
7446+
Added in UNRELEASED. Payload for `myBulkUpdateAppConfigFragments` (recomputed views).
7447+
"""
7448+
type MyBulkUpdateAppConfigFragmentsPayload {
7449+
"""Recomputed merged AppConfig views for each updated USER fragment."""
7450+
updated: [AppConfig!]!
7451+
7452+
"""Per-item failures."""
7453+
failed: [AppConfigFragmentBulkError!]!
7454+
}
7455+
74567456
"""
74577457
Added in 26.4.2. Query result returning the current client's IP address.
74587458
"""

0 commit comments

Comments
 (0)