UNPKG

@runbook-docs/mcp-server

Version:
31 lines (30 loc) 542 B
"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 } } } `;