Hello all,
I have a searchAcrossEntities query in GraphQL that returns DATASET entries, and I’m trying to search for Schema entries as well. It seems listed as a valid “types” value, but the search always fails when I include SCHEMA_FIELDS in a call. I see from an issue on the DataHub GitHub from about a year ago that this type of search was not supported as SCHEMA are not treated as their own separate entity. Is there any way to query them in GraphQL at all? We are using v0.12.0.
searchAcrossEntities(input: { types: [SCHEMA_FIELDS], query: "name", count: 20}) {
start
count
total
searchResults {
entity {
type
... on Dataset {
urn
type
platform {
name
}
name
}
}
}
}
}```