Mutation
mutation DeleteWorkspaceCursorIntegration($id: ID!) {
deleteWorkspaceCursorIntegration(id: $id) {
id
error {
message
type
code
fields {
field
message
type
}
}
}
}Variables
{
"id": "id"
}Response
{
"data": {
"deleteWorkspaceCursorIntegration": {
"id": "id",
"error": {
"message": "string",
"type": "VALIDATION",
"code": "string",
"fields": [
{
"field": "string",
"message": "string",
"type": "VALIDATION"
}
]
}
}
}
}Mutations
deleteWorkspaceCursorIntegration
Removes the workspace’s Cursor integration. If no integration with the given ID exists, the operation succeeds and returns a null id. Requires the workspaceCursorIntegration:delete permission.
MUTATION
deleteWorkspaceCursorIntegration(id: ID!): DeleteWorkspaceCursorIntegrationOutput!Arguments
id
ID!
required
id
ID
error
Mutation
mutation DeleteWorkspaceCursorIntegration($id: ID!) {
deleteWorkspaceCursorIntegration(id: $id) {
id
error {
message
type
code
fields {
field
message
type
}
}
}
}Variables
{
"id": "id"
}Response
{
"data": {
"deleteWorkspaceCursorIntegration": {
"id": "id",
"error": {
"message": "string",
"type": "VALIDATION",
"code": "string",
"fields": [
{
"field": "string",
"message": "string",
"type": "VALIDATION"
}
]
}
}
}
}Was this page helpful?

