{{ query.code }}
mutation {
createAuthor(name: "{{ author.name }}", age: {{ author.age }}, nationality: "{{ author.nationality }}") {
id
name
age
nationality
}
}
mutation {
createBook(title: "{{ book.title }}", publicationYear: {{ book.publicationYear }}, genre: "{{ book.genre }}", authorId: {{ book.authorId }}) {
id
title
publicationYear
genre
author {
id
name
age
nationality
}
}
}
{{ mutation.code }}