Testing these technologies with nodejs.
pnpm compile && pnpm start
after running the project, connect to http://localhost:4000 and run the queries
Book{
title: String
author: Author
}
Author{
name: String
books: [Book]
}
books: [Book]
authors: [Author]
addBook(title: String, author:String): Book;
removeBook(title:String): Book;