query {
getAllBooks {
id
title
publicationYear
genre
author {
id
name
age
nationality
}
}
}
query {
getAllAuthors {
id
name
age
nationality
books {
id
title
publicationYear
genre
}
}
}
query {
getAuthor(id: 1) {
id
name
age
nationality
books {
id
title
publicationYear
genre
}
}
}
query {
getBook(id: 1) {
id
title
publicationYear
genre
author {
id
name
age
nationality
}
}
}
query {
getAllGenres
}
query {
getBooksByGenre(genre: "Fantasy") {
id
title
publicationYear
genre
author {
id
name
age
nationality
}
}
}
mutation {
createAuthor(name: "Alice", age: 29, nationality: "British") {
id
name
age
nationality
}
}
mutation {
createBook(title: "Lord of the Rings", publicationYear: 1954, genre: "fantasy", authorId: 2) {
id
title
publicationYear
genre
author {
id
name
age
nationality
}
}
}
mutation {
deleteAuthor(authorId: 1)
}
mutation {
deleteBook(bookId: 1)
}