New listener

This commit is contained in:
Ali Sadeghi
2025-08-03 23:19:16 +03:30
parent 28cc64a052
commit 876c278ac4
26 changed files with 1626 additions and 683 deletions

View File

@@ -0,0 +1,5 @@
extend type Mutation {
createDataCenter(input: DataCenterCreateInput!): DataCenter
updateDataCenter(id: ID!, input: DataCenterUpdateInput!): DataCenter
deleteDataCenter(id: ID!): Boolean
}