I feel like I should be able to figure this out but I'm stuck on the syntax for google api calls in node using google-api-nodejs-client.
Here is my code to query for books that accepts a search string as 'query', and this works just fine.
client.books.volumes.list({q: query}).withAuthClient(oath2Client);
As it is now, it returns a list of books with all of the data pertaining to those books. But how do I change this to filter the results to say just id, title, and authors?