Skip to content

Commit b731e45

Browse files
fregataaclaude
andcommitted
chore: update api schema dump
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent eb9fc95 commit b731e45

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

docs/manager/graphql-reference/supergraph.graphql

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3954,6 +3954,9 @@ Added in UNRELEASED. Input for creating a virtual folder within a project.
39543954
input CreateVFolderInProjectInput
39553955
@join__type(graph: STRAWBERRY)
39563956
{
3957+
"""Project UUID that owns the vfolder."""
3958+
projectId: UUID!
3959+
39573960
"""VFolder name."""
39583961
name: String!
39593962

@@ -10823,7 +10826,7 @@ type Mutation
1082310826
"""
1082410827
Added in UNRELEASED. Create a virtual folder owned by the specified project. Requires project-scoped CREATE permission.
1082510828
"""
10826-
createVFolderInProject(projectId: UUID!, input: CreateVFolderInProjectInput!): CreateVFolderV2Payload! @join__field(graph: STRAWBERRY)
10829+
createVFolderInProject(input: CreateVFolderInProjectInput!): CreateVFolderV2Payload! @join__field(graph: STRAWBERRY)
1082710830

1082810831
"""Added in 26.4.2. Soft-delete a virtual folder (move to trash)."""
1082910832
deleteVfolderV2(vfolderId: UUID!): DeleteVFolderV2Payload! @join__field(graph: STRAWBERRY)

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2473,6 +2473,9 @@ type CreateVFSStoragePayload {
24732473
Added in UNRELEASED. Input for creating a virtual folder within a project.
24742474
"""
24752475
input CreateVFolderInProjectInput {
2476+
"""Project UUID that owns the vfolder."""
2477+
projectId: UUID!
2478+
24762479
"""VFolder name."""
24772480
name: String!
24782481

@@ -6811,7 +6814,7 @@ type Mutation {
68116814
"""
68126815
Added in UNRELEASED. Create a virtual folder owned by the specified project. Requires project-scoped CREATE permission.
68136816
"""
6814-
createVFolderInProject(projectId: UUID!, input: CreateVFolderInProjectInput!): CreateVFolderV2Payload!
6817+
createVFolderInProject(input: CreateVFolderInProjectInput!): CreateVFolderV2Payload!
68156818

68166819
"""Added in 26.4.2. Soft-delete a virtual folder (move to trash)."""
68176820
deleteVfolderV2(vfolderId: UUID!): DeleteVFolderV2Payload!

0 commit comments

Comments
 (0)