Is there a way to get list of all entities current...
# getting-started
w
Is there a way to get list of all entities currently ingested in the Datahub? This command :
Copy code
curl --location --request GET '<http://localhost:8080/entities/urn%3Ali%3Achart%3Acustomers>'
is for specific type of entity - Chart. To get list of all the entities, I tried:
Copy code
curl --location --request GET '<http://localhost:8080/entities/>'
..but it resulted in error 500 with the message that GET op is not supported.
b
We will be building out a GraphQL API for listing entities inside of DataHub very soon. See the GraphQL API documentation here https://datahubproject.io/docs/api/graphql/overview
🚀 1