DeleteAiSkillPayload
ObjectAutogenerated return type of DeleteAiSkill.
mutation { organization(id: $organizationId) { deleteAiSkill } }
Example
mutation DeleteAiSkill(
$organizationId: ID!
$input: DeleteAiSkillInput!
) {
organization(id: $organizationId) {
deleteAiSkill(input: $input) {
aiSkill
errors
}
}
}