declare const _default: "\n  query getBookWithRunStates(\n    $bookUid: ID!\n    $first: Int = 20\n    $offset: Int = null\n  ) {\n    node(id: $bookUid) {\n      ... on Book {\n        __typename\n        uid\n        name\n        bookType\n        initialArticle {\n          uid\n        }\n        runStates(first: $first, offset: $offset) {\n          nodes {\n            uid\n            readyToFinish\n            status\n            createdAt\n            completedAt\n            currentArticle {\n              uid\n            }\n          }\n        }\n      }\n    }\n  }\n";
export default _default;
