Hi, I have a question to the howtographql tutorial...
# prisma-whats-new
a
Hi, I have a question to the howtographql tutorial. I'm following it until [chapter 6](https://www.howtographql.com/react-apollo/6-more-mutations-and-updating-the-store/) and now I'm getting the following error
Cannot query field "votes" on type "Feed"
for the react app in the dev tools network tab. I'm new to graphql and not sure where and how to add the votes in the schema.
OK, I've found my mistake. My query was wrong: Had
feed {links {} votes {} }
but it has to be
feed { links { ... votes {} }
- votes inside of links query object.
👌 2