# Download and extract the Apollo Router binary
$ curl -sSL https://router.apollo.dev/download/nix/latest | sh
# Download the example supergraph schema
$ curl -sSL https://supergraph.demo.starstuff.dev/ > supergraph-schema.graphql
# Run the binary
$ ./router --config router.yaml --supergraph supergraph-schema.graphql
$ export HONEYCOMB_API_KEY=<YOUR-API-KEY>
$ export HONEYCOMB_DATASET=<YOUR-DATASET>
$ docker-compose up -d --build
$ curl --request POST \
--header "content-type: application/json" \
--url "http://0.0.0.0:4000/" \
--data "{"query":"query { __typename }"}"