I am implementing a GraphQL server (Hasura), the normal setup looks like this:
docker run -d --net=host \
-e HASURA_GRAPHQL_DATABASE_URL=postgres://username:password@hostname:port/dbname \
-e HASURA_GRAPHQL_ENABLE_CONSOLE=true \
hasura/graphql-engine:latest
I couldn't find in the docs a way to use multiple databases within the same instance, is it even possible?