@runbook-docs/mcp-server
Version:
Runbook Model Context Protocol Server
31 lines (30 loc) • 542 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = `
mutation createArticle(
$bookUid: ID!
$name: String!
$bodyMarkdown: String
$categoryUids: [ID!]
) {
createArticle(
input: {
bookUid: $bookUid
name: $name
bodyMarkdown: $bodyMarkdown
isPublished: true
categoryUids: $categoryUids
}
) {
article {
uid
id
}
success
errors {
attribute
message
}
}
}
`;