216 lines
6.0 KiB
GraphQL
Raw Normal View History

query getAutoCompleteResults($input: AutoCompleteInput!) {
autoComplete(input: $input) {
query
suggestions
}
}
query getAutoCompleteAllResults($input: AutoCompleteInput!) {
autoCompleteForAll(input: $input) {
query
suggestions {
type
suggestions
}
}
}
query getSearchResults($input: SearchInput!) {
search(input: $input) {
start
count
total
searchResults {
entity {
urn
type
... on Dataset {
name
origin
description
uri
platform {
name
info {
logoUrl
}
}
editableProperties {
description
}
platformNativeType
tags
properties {
key
value
}
ownership {
...ownershipFields
}
globalTags {
...globalTagsFields
}
glossaryTerms {
...glossaryTerms
}
}
... on CorpUser {
username
info {
active
displayName
title
firstName
lastName
fullName
}
editableInfo {
pictureLink
}
}
... on Dashboard {
urn
type
tool
dashboardId
info {
name
description
externalUrl
access
lastModified {
time
}
}
ownership {
...ownershipFields
}
globalTags {
...globalTagsFields
}
editableProperties {
description
}
}
... on Chart {
urn
type
tool
chartId
info {
name
description
externalUrl
type
access
lastModified {
time
}
}
ownership {
...ownershipFields
}
globalTags {
...globalTagsFields
}
editableProperties {
description
}
}
... on DataFlow {
urn
type
orchestrator
flowId
cluster
info {
name
description
project
}
ownership {
...ownershipFields
}
globalTags {
...globalTagsFields
}
editableProperties {
description
}
}
... on DataJob {
urn
type
dataFlow {
...nonRecursiveDataFlowFields
}
jobId
ownership {
...ownershipFields
}
inputOutput {
inputDatasets {
...nonRecursiveDatasetFields
}
outputDatasets {
...nonRecursiveDatasetFields
}
}
info {
name
description
}
globalTags {
...globalTagsFields
}
editableProperties {
description
}
}
... on GlossaryTerm {
name
glossaryTermInfo {
definition
termSource
sourceRef
sourceUrl
customProperties {
key
value
}
}
}
... on MLFeatureTable {
urn
type
name
description
featureTableProperties {
description
mlFeatures {
urn
}
mlPrimaryKeys {
urn
}
}
ownership {
...ownershipFields
}
}
}
matchedFields {
name
value
}
}
facets {
field
aggregations {
value
count
}
}
}
}