スタートアップ(英語)
コミュニティ(英語)
トレーニング(英語)
チュートリアル(英語)
ドキュメント
API、AI、ツール (英語)
schema {
query: Query
}
type Query {
bookById(id: ID): Book
books: [Book]
bestsellers: Bestsellers
}
type Book {
id: ID!
name: String
pageCount: Int
author: Author
}
type Author {
id: ID!
firstName: String
lastName: String
}
type Bestsellers {
books: [Book]
authors: [Author]
}


