I was trying to run this basic curl and found DataHub isn’t listening on port 8080. Did I miss a config setting?
curl --location --request POST '<http://localhost:8080/api/graphql>' \
--header 'Authorization: Bearer <my-access-token>' \
--header 'Content-Type: application/json' \
--data-raw '{ "query": "mutation createDomain { createDomain(input: { name: \"Marketing\", description: \"Entities related to the marketing department.\" }) }", "variables":{}}'