8 lines
198 B
GraphQL
Raw Normal View History

query getEntities($urns: [String!]!, $checkForExistence: Boolean) {
entities(urns: $urns, checkForExistence: $checkForExistence) {
urn
type
...searchResultFields
}
}