Hi team, how to get the last ingested date of the ...
# getting-started
s
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
✅ 1
d
Hi, something like this would work!
Copy code
{
  search(input: {type: DATASET, query: "", start: 0, count: 10}) {
    start
    count
    total
    searchResults {
      entity {
        urn
        type
        ... on Dataset {
          name
          lastIngested
        }
      }
    }
  }
}