hotchoc fusion demo - getting started guide
To get started with HotChoc fusion
Clone this repository here https://github.com/mitzenjeremywoo/fusion-demo/tree/main
Run the command in the README.md. If you are running in linux, then build.sh would work fine. Otherwise run the command from the fusion-demo root directory.
Run one of the services, lets say account - dotnet run --project Accounts
Then run dotnet run --project Gateway
To go http://localhost:5098/graphql/ and run the following command:-
query {
users {
nodes {
id
name
}
}
}
You should be able to get an outputs shown below:
Comments