Skip to content

Commit e2e94f0

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

2 files changed

Lines changed: 30 additions & 0 deletions

File tree

docs/manager/graphql-reference/supergraph.graphql

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10753,6 +10753,21 @@ type Mutation
1075310753
"""Added in 26.4.2. Permanently purge multiple virtual folders."""
1075410754
bulkPurgeVfoldersV2(input: BulkPurgeVFoldersV2Input!): BulkPurgeVFoldersV2Payload! @join__field(graph: STRAWBERRY)
1075510755

10756+
"""
10757+
Added in UNRELEASED. Create a virtual folder owned by the specified project. Requires project-scoped CREATE permission.
10758+
"""
10759+
createProjectVfolderV2(projectId: UUID!, input: CreateVFolderV2Input!): CreateVFolderV2Payload! @join__field(graph: STRAWBERRY)
10760+
10761+
"""
10762+
Added in UNRELEASED. Soft-delete a virtual folder that belongs to the specified project. Requires project-scoped DELETE permission.
10763+
"""
10764+
deleteProjectVfolderV2(projectId: UUID!, vfolderId: UUID!): DeleteVFolderV2Payload! @join__field(graph: STRAWBERRY)
10765+
10766+
"""
10767+
Added in UNRELEASED. Soft-delete multiple virtual folders that all belong to the specified project. Requires project-scoped DELETE permission.
10768+
"""
10769+
bulkDeleteProjectVfoldersV2(projectId: UUID!, input: BulkDeleteVFoldersV2Input!): BulkDeleteVFoldersV2Payload! @join__field(graph: STRAWBERRY)
10770+
1075610771
"""Added in 26.4.2. Clone a virtual folder."""
1075710772
cloneVfolderV2(vfolderId: UUID!, input: CloneVFolderV2Input!): CloneVFolderV2Payload! @join__field(graph: STRAWBERRY)
1075810773

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

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6745,6 +6745,21 @@ type Mutation {
67456745
"""Added in 26.4.2. Permanently purge multiple virtual folders."""
67466746
bulkPurgeVfoldersV2(input: BulkPurgeVFoldersV2Input!): BulkPurgeVFoldersV2Payload!
67476747

6748+
"""
6749+
Added in UNRELEASED. Create a virtual folder owned by the specified project. Requires project-scoped CREATE permission.
6750+
"""
6751+
createProjectVfolderV2(projectId: UUID!, input: CreateVFolderV2Input!): CreateVFolderV2Payload!
6752+
6753+
"""
6754+
Added in UNRELEASED. Soft-delete a virtual folder that belongs to the specified project. Requires project-scoped DELETE permission.
6755+
"""
6756+
deleteProjectVfolderV2(projectId: UUID!, vfolderId: UUID!): DeleteVFolderV2Payload!
6757+
6758+
"""
6759+
Added in UNRELEASED. Soft-delete multiple virtual folders that all belong to the specified project. Requires project-scoped DELETE permission.
6760+
"""
6761+
bulkDeleteProjectVfoldersV2(projectId: UUID!, input: BulkDeleteVFoldersV2Input!): BulkDeleteVFoldersV2Payload!
6762+
67486763
"""Added in 26.4.2. Clone a virtual folder."""
67496764
cloneVfolderV2(vfolderId: UUID!, input: CloneVFolderV2Input!): CloneVFolderV2Payload!
67506765

0 commit comments

Comments
 (0)