UNPKG

@runbook-docs/mcp-server

Version:
32 lines (31 loc) 552 B
export 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 } } } } } } `;