Hi team, how to get the last ingested date of the table and the table name, I need curl and grapl ql command, Can someone please help
Hi, something like this would work!
search(input: {type: DATASET, query: "", start: 0, count: 10}) {
start
count
total
searchResults {
entity {
urn
type
... on Dataset {
name
lastIngested
}
}
}
}
}```