mirror of
https://github.com/zammad/zammad
synced 2026-05-24 09:48:36 +00:00
Co-authored-by: Dominik Klein <dk@zammad.com> Co-authored-by: Florian Liebe <fl@zammad.com> Co-authored-by: Dusan Vuckovic <dv@zammad.com>
13 lines
277 B
GraphQL
13 lines
277 B
GraphQL
mutation aiAssistanceTextToolsRun(
|
|
$input: String!
|
|
$textToolId: ID!
|
|
$templateRenderContext: TemplateRenderContextInput!
|
|
) {
|
|
aiAssistanceTextToolsRun(
|
|
input: $input
|
|
textToolId: $textToolId
|
|
templateRenderContext: $templateRenderContext
|
|
) {
|
|
output
|
|
}
|
|
}
|