Skip to content

Commit 8250f5c

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

2 files changed

Lines changed: 12 additions & 8 deletions

File tree

docs/manager/graphql-reference/supergraph.graphql

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,9 @@ input AdminAppConfigPolicyItemInput
213213
scopeSources: [String!]!
214214
}
215215

216-
"""Added in UNRELEASED. Admin bulk create input — items carry any scope."""
216+
"""
217+
Added in UNRELEASED. Admin bulk create input — items carry any scope (BEP-1052 §3).
218+
"""
217219
input AdminBulkCreateAppConfigFragmentInput
218220
@join__type(graph: STRAWBERRY)
219221
{
@@ -1065,7 +1067,7 @@ input AppConfigFilter
10651067
userId: UUIDFilter = null
10661068
}
10671069

1068-
"""Added in UNRELEASED. Raw per-scope app-config fragment."""
1070+
"""Added in UNRELEASED. Raw per-scope app-config fragment (BEP-1052 §2)."""
10691071
type AppConfigFragment
10701072
@join__type(graph: STRAWBERRY)
10711073
{
@@ -13904,12 +13906,12 @@ type Query
1390413906
adminAppConfigFragments(filter: AppConfigFragmentFilter = null, orderBy: [AppConfigFragmentOrderBy!] = null, first: Int = null, after: String = null, last: Int = null, before: String = null, limit: Int = null, offset: Int = null): [AppConfigFragment!]! @join__field(graph: STRAWBERRY)
1390513907

1390613908
"""
13907-
Added in UNRELEASED. Public (no-auth) `PUBLIC`-scope app-config fragments — the subset of raw fragments that carry no personally-scoped data.
13909+
Added in UNRELEASED. Public (no-auth) `PUBLIC`-scope app-config fragments — the subset of raw fragments that carry no personally-scoped data (BEP-1052 §3).
1390813910
"""
1390913911
publicAppConfigFragments(filter: AppConfigFragmentFilter = null, orderBy: [AppConfigFragmentOrderBy!] = null, first: Int = null, after: String = null, last: Int = null, before: String = null, limit: Int = null, offset: Int = null): [AppConfigFragment!]! @join__field(graph: STRAWBERRY)
1391013912

1391113913
"""
13912-
Added in UNRELEASED. Caller's own merged AppConfig list (auth required). Chain per policy ; the adapter pins `(USER, current_user)` internally.
13914+
Added in UNRELEASED. Caller's own merged AppConfig list (auth required). Chain per policy (BEP-1052 §5); the adapter pins `(USER, current_user)` internally.
1391313915
"""
1391413916
myAppConfigs(filter: AppConfigFilter = null, orderBy: [AppConfigOrderBy!] = null, first: Int = null, after: String = null, last: Int = null, before: String = null, limit: Int = null, offset: Int = null): [AppConfig!]! @join__field(graph: STRAWBERRY)
1391513917

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

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,9 @@ input AdminAppConfigPolicyItemInput {
163163
scopeSources: [String!]!
164164
}
165165

166-
"""Added in UNRELEASED. Admin bulk create input — items carry any scope."""
166+
"""
167+
Added in UNRELEASED. Admin bulk create input — items carry any scope (BEP-1052 §3).
168+
"""
167169
input AdminBulkCreateAppConfigFragmentInput {
168170
"""Rows to create."""
169171
items: [AdminAppConfigFragmentItemInput!]!
@@ -747,7 +749,7 @@ input AppConfigFilter {
747749
userId: UUIDFilter = null
748750
}
749751

750-
"""Added in UNRELEASED. Raw per-scope app-config fragment."""
752+
"""Added in UNRELEASED. Raw per-scope app-config fragment (BEP-1052 §2)."""
751753
type AppConfigFragment {
752754
"""Row ID."""
753755
id: UUID!
@@ -8999,12 +9001,12 @@ type Query {
89999001
adminAppConfigFragments(filter: AppConfigFragmentFilter = null, orderBy: [AppConfigFragmentOrderBy!] = null, first: Int = null, after: String = null, last: Int = null, before: String = null, limit: Int = null, offset: Int = null): [AppConfigFragment!]!
90009002

90019003
"""
9002-
Added in UNRELEASED. Public (no-auth) `PUBLIC`-scope app-config fragments — the subset of raw fragments that carry no personally-scoped data.
9004+
Added in UNRELEASED. Public (no-auth) `PUBLIC`-scope app-config fragments — the subset of raw fragments that carry no personally-scoped data (BEP-1052 §3).
90039005
"""
90049006
publicAppConfigFragments(filter: AppConfigFragmentFilter = null, orderBy: [AppConfigFragmentOrderBy!] = null, first: Int = null, after: String = null, last: Int = null, before: String = null, limit: Int = null, offset: Int = null): [AppConfigFragment!]!
90059007

90069008
"""
9007-
Added in UNRELEASED. Caller's own merged AppConfig list (auth required). Chain per policy ; the adapter pins `(USER, current_user)` internally.
9009+
Added in UNRELEASED. Caller's own merged AppConfig list (auth required). Chain per policy (BEP-1052 §5); the adapter pins `(USER, current_user)` internally.
90089010
"""
90099011
myAppConfigs(filter: AppConfigFilter = null, orderBy: [AppConfigOrderBy!] = null, first: Int = null, after: String = null, last: Int = null, before: String = null, limit: Int = null, offset: Int = null): [AppConfig!]!
90109012

0 commit comments

Comments
 (0)