Hi all! Im trying send a request to graphql to search for the datasets and get the error 503 😞 It work for 3000 records. but I need more. {
search(input: { type: DATASET, query: "hasOwners:True", start: 0, count: 7000 }) {
start
count
total
searchResults {
entity {
urn
type
...on Dataset
{
ownership {
owners { type
owner
{
...on CorpUser {
username
}
}
}
}
}
}
}
}
}