I have a data schema where users can review products. user and product are vertices, and reviews is a MANY2MANY relation between users and products. reviews has edge properties such as title and body.
I want to write a query to get all reviews for a product, as well as the users that wrote the review. I can get the reviews using the following, but I don't know how to add all the user properties.
g.({product}).inE("reviews").values()
How can I get user information per review as well?