UNPKG

@runbook-docs/mcp-server

Version:
34 lines (33 loc) 632 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = ` query getBookWithRunStates( $bookUid: ID! $first: Int = 20 $offset: Int = null ) { node(id: $bookUid) { ... on Book { __typename uid name bookType initialArticle { uid } runStates(first: $first, offset: $offset) { nodes { uid readyToFinish status createdAt completedAt currentArticle { uid } } } } } } `;