Hi guysm how can i get dataset stats using graphql...
# all-things-deployment
f
Hi guysm how can i get dataset stats using graphql,i see that its required a paramtere (resource), but i cant find what it is
this kind of stats
b
u can use the <datahub-url>/api/graphiql to test your query
Copy code
{
  dataset(urn: $urn) {
    datasetProfiles(limit: 15) {
      timestampMillis
    }
  }
}
gets you the past 15 profiles's worth of timestamps
f
look like its empty
Copy code
datasetProfiles(limit: 15) {
      timestampMillis
    }