Mutation
mutation UpdateSidekickCustomSkill($input: UpdateSidekickCustomSkillInput!) {
updateSidekickCustomSkill(input: $input) {
customSkill {
id
name
displayName
description
instructions
isEnabled
}
error {
message
type
code
fields {
field
message
type
}
}
}
}Variables
{
"input": {
"customSkillId": "id"
}
}Response
{
"data": {
"updateSidekickCustomSkill": {
"customSkill": {
"id": "id",
"name": "string",
"displayName": "string",
"description": "string",
"instructions": "string",
"isEnabled": true
},
"error": {
"message": "string",
"type": "VALIDATION",
"code": "string",
"fields": [
{
"field": "string",
"message": "string",
"type": "VALIDATION"
}
]
}
}
}
}Mutations
updateSidekickCustomSkill
Update a workspace custom skill. Only the provided fields are changed.
MUTATION
updateSidekickCustomSkill(input: UpdateSidekickCustomSkillInput!): UpdateSidekickCustomSkillOutput!Arguments
input
required
Returns
customSkill
error
Mutation
mutation UpdateSidekickCustomSkill($input: UpdateSidekickCustomSkillInput!) {
updateSidekickCustomSkill(input: $input) {
customSkill {
id
name
displayName
description
instructions
isEnabled
}
error {
message
type
code
fields {
field
message
type
}
}
}
}Variables
{
"input": {
"customSkillId": "id"
}
}Response
{
"data": {
"updateSidekickCustomSkill": {
"customSkill": {
"id": "id",
"name": "string",
"displayName": "string",
"description": "string",
"instructions": "string",
"isEnabled": true
},
"error": {
"message": "string",
"type": "VALIDATION",
"code": "string",
"fields": [
{
"field": "string",
"message": "string",
"type": "VALIDATION"
}
]
}
}
}
}Was this page helpful?

