Skip to content

Commit d39ed1f

Browse files
jopemachineclaude
andcommitted
chore(BA-5830): refresh schema dump after rebase reset my_bulk_* renames
The `-X theirs` rebase onto BA-5829 reset the schema dump back to the older `BulkCreateMy*` / `bulkCreateMy*` field / type / mutation names. Re-apply the rename to the dump artefacts so the api-updated check sees a clean diff against the regenerated schema. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 9579667 commit d39ed1f

2 files changed

Lines changed: 16 additions & 16 deletions

File tree

docs/manager/graphql-reference/supergraph.graphql

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2267,17 +2267,17 @@ type BulkAssignRolePayload
22672267
"""
22682268
Added in UNRELEASED. Self-service bulk create — scope is `USER` / `current_user`.
22692269
"""
2270-
input BulkCreateMyAppConfigFragmentInput
2270+
input MyBulkCreateAppConfigFragmentInput
22712271
@join__type(graph: STRAWBERRY)
22722272
{
22732273
"""USER-scope rows to create."""
22742274
items: [MyAppConfigFragmentItemInput!]!
22752275
}
22762276

22772277
"""
2278-
Added in UNRELEASED. Payload for `bulkCreateMyAppConfigFragments` (recomputed views).
2278+
Added in UNRELEASED. Payload for `myBulkCreateAppConfigFragments` (recomputed views).
22792279
"""
2280-
type BulkCreateMyAppConfigFragmentsPayload
2280+
type MyBulkCreateAppConfigFragmentsPayload
22812281
@join__type(graph: STRAWBERRY)
22822282
{
22832283
"""Recomputed merged AppConfig views for each created USER fragment."""
@@ -2442,17 +2442,17 @@ type BulkRevokeRolePayload
24422442
"""
24432443
Added in UNRELEASED. Self-service bulk update — scope is `USER` / `current_user`.
24442444
"""
2445-
input BulkUpdateMyAppConfigFragmentInput
2445+
input MyBulkUpdateAppConfigFragmentInput
24462446
@join__type(graph: STRAWBERRY)
24472447
{
24482448
"""USER-scope rows to update."""
24492449
items: [MyAppConfigFragmentItemInput!]!
24502450
}
24512451

24522452
"""
2453-
Added in UNRELEASED. Payload for `bulkUpdateMyAppConfigFragments` (recomputed views).
2453+
Added in UNRELEASED. Payload for `myBulkUpdateAppConfigFragments` (recomputed views).
24542454
"""
2455-
type BulkUpdateMyAppConfigFragmentsPayload
2455+
type MyBulkUpdateAppConfigFragmentsPayload
24562456
@join__type(graph: STRAWBERRY)
24572457
{
24582458
"""Recomputed merged AppConfig views for each updated USER fragment."""
@@ -11334,12 +11334,12 @@ type Mutation
1133411334
"""
1133511335
Added in UNRELEASED. Strict insert on the caller's USER row; duplicates fail per-item. Returns recomputed merged `AppConfig` views.
1133611336
"""
11337-
bulkCreateMyAppConfigFragments(input: BulkCreateMyAppConfigFragmentInput!): BulkCreateMyAppConfigFragmentsPayload! @join__field(graph: STRAWBERRY)
11337+
myBulkCreateAppConfigFragments(input: MyBulkCreateAppConfigFragmentInput!): MyBulkCreateAppConfigFragmentsPayload! @join__field(graph: STRAWBERRY)
1133811338

1133911339
"""
1134011340
Added in UNRELEASED. Wholesale replacement on the caller's USER row; missing rows are returned as failures. Returns recomputed merged `AppConfig` views.
1134111341
"""
11342-
bulkUpdateMyAppConfigFragments(input: BulkUpdateMyAppConfigFragmentInput!): BulkUpdateMyAppConfigFragmentsPayload! @join__field(graph: STRAWBERRY)
11342+
myBulkUpdateAppConfigFragments(input: MyBulkUpdateAppConfigFragmentInput!): MyBulkUpdateAppConfigFragmentsPayload! @join__field(graph: STRAWBERRY)
1134311343

1134411344
"""Added in 26.3.0. Create a new query definition (admin only)"""
1134511345
adminCreatePrometheusQueryPreset(input: CreateQueryDefinitionInput!): CreateQueryDefinitionPayload! @join__field(graph: STRAWBERRY)

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1604,15 +1604,15 @@ type BulkAssignRolePayload {
16041604
"""
16051605
Added in UNRELEASED. Self-service bulk create — scope is `USER` / `current_user`.
16061606
"""
1607-
input BulkCreateMyAppConfigFragmentInput {
1607+
input MyBulkCreateAppConfigFragmentInput {
16081608
"""USER-scope rows to create."""
16091609
items: [MyAppConfigFragmentItemInput!]!
16101610
}
16111611

16121612
"""
1613-
Added in UNRELEASED. Payload for `bulkCreateMyAppConfigFragments` (recomputed views).
1613+
Added in UNRELEASED. Payload for `myBulkCreateAppConfigFragments` (recomputed views).
16141614
"""
1615-
type BulkCreateMyAppConfigFragmentsPayload {
1615+
type MyBulkCreateAppConfigFragmentsPayload {
16161616
"""Recomputed merged AppConfig views for each created USER fragment."""
16171617
created: [AppConfig!]!
16181618

@@ -1747,15 +1747,15 @@ type BulkRevokeRolePayload {
17471747
"""
17481748
Added in UNRELEASED. Self-service bulk update — scope is `USER` / `current_user`.
17491749
"""
1750-
input BulkUpdateMyAppConfigFragmentInput {
1750+
input MyBulkUpdateAppConfigFragmentInput {
17511751
"""USER-scope rows to update."""
17521752
items: [MyAppConfigFragmentItemInput!]!
17531753
}
17541754

17551755
"""
1756-
Added in UNRELEASED. Payload for `bulkUpdateMyAppConfigFragments` (recomputed views).
1756+
Added in UNRELEASED. Payload for `myBulkUpdateAppConfigFragments` (recomputed views).
17571757
"""
1758-
type BulkUpdateMyAppConfigFragmentsPayload {
1758+
type MyBulkUpdateAppConfigFragmentsPayload {
17591759
"""Recomputed merged AppConfig views for each updated USER fragment."""
17601760
updated: [AppConfig!]!
17611761

@@ -7218,12 +7218,12 @@ type Mutation {
72187218
"""
72197219
Added in UNRELEASED. Strict insert on the caller's USER row; duplicates fail per-item. Returns recomputed merged `AppConfig` views.
72207220
"""
7221-
bulkCreateMyAppConfigFragments(input: BulkCreateMyAppConfigFragmentInput!): BulkCreateMyAppConfigFragmentsPayload!
7221+
myBulkCreateAppConfigFragments(input: MyBulkCreateAppConfigFragmentInput!): MyBulkCreateAppConfigFragmentsPayload!
72227222

72237223
"""
72247224
Added in UNRELEASED. Wholesale replacement on the caller's USER row; missing rows are returned as failures. Returns recomputed merged `AppConfig` views.
72257225
"""
7226-
bulkUpdateMyAppConfigFragments(input: BulkUpdateMyAppConfigFragmentInput!): BulkUpdateMyAppConfigFragmentsPayload!
7226+
myBulkUpdateAppConfigFragments(input: MyBulkUpdateAppConfigFragmentInput!): MyBulkUpdateAppConfigFragmentsPayload!
72277227

72287228
"""Added in 26.3.0. Create a new query definition (admin only)"""
72297229
adminCreatePrometheusQueryPreset(input: CreateQueryDefinitionInput!): CreateQueryDefinitionPayload!

0 commit comments

Comments
 (0)