I am creating a hot chocolate service as a gateway for merging data from multiple rest endpoints. But I am having a hard time finding any resources that explain how to resolve guids to objects from other endpoints.
For example one service has a db with the products and another service has a db with the reviews.
How do I setup hot chocolate so that this query can be executed?
query {
product(id: $id) {
id
title
review {
comment
}
}
}
```