cli/src/gql/mutations/strings/ProjectScheduleDelete.graphql
Brody Over 898a59d63a
feat(delete): use projectScheduleDelete mutation for soft deletion (#827)
Switch from immediate `projectDelete` to `projectScheduleDelete` which
provides a 48-hour grace period before the project is permanently removed.

Made-with: Cursor
2026-03-30 23:53:31 -04:00

3 lines
82 B
GraphQL

mutation ProjectScheduleDelete($id: String!) {
projectScheduleDelete(id: $id)
}