UNPKG

@runbook-docs/mcp-server

Version:
30 lines (29 loc) 477 B
export default ` mutation updateArticle( $uid: ID! $name: String $bodyMarkdown: String $categoryUids: [ID!] ) { updateArticle( input: { uid: $uid name: $name bodyMarkdown: $bodyMarkdown isPublished: true categoryUids: $categoryUids createHistory: true } ) { article { uid id } success errors { attribute message } } } `;