We want to create one GraphQL schema using EF Core and Hotchocolate. Our data is in several databases two Azure SQL and one PostgresQL. In the first DB we have descriptive data and in other two real-time pricing data from different data vendors. We need to have one schema where we have a combination of descriptive and pricing information from several data vendors.
What is the best way to configure Hotchocolate server with EF core to get data from those DBs into one schema? It's not a problem to create several schemas but what is the optimal way to have only one without stiching?