# 本type Book { # ID bookId: ID! # 本のタイトル name: String! # 著者名 author: String!} type Query { # 稼働チェック live: Boolean! # 本を取得 getBook(bookId:ID!): Book}