mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-26 11:00:06 +00:00
76 lines
1.9 KiB
GraphQL
76 lines
1.9 KiB
GraphQL
![]() |
query getAutoCompleteResults($input: AutoCompleteInput!) {
|
||
|
autoComplete(input: $input) {
|
||
|
query
|
||
|
suggestions
|
||
|
}
|
||
|
}
|
||
|
|
||
|
query getSearchResults($input: SearchInput!) {
|
||
|
search(input: $input) {
|
||
|
start
|
||
|
count
|
||
|
total
|
||
|
elements {
|
||
|
__typename
|
||
|
... on Dataset {
|
||
|
urn
|
||
|
platform
|
||
|
name
|
||
|
origin
|
||
|
description
|
||
|
uri
|
||
|
platformNativeType
|
||
|
tags
|
||
|
properties {
|
||
|
key
|
||
|
value
|
||
|
}
|
||
|
createdTime
|
||
|
modifiedTime
|
||
|
ownership {
|
||
|
owners {
|
||
|
owner {
|
||
|
urn
|
||
|
username
|
||
|
info {
|
||
|
active
|
||
|
displayName
|
||
|
title
|
||
|
firstName
|
||
|
lastName
|
||
|
fullName
|
||
|
}
|
||
|
editableInfo {
|
||
|
pictureLink
|
||
|
}
|
||
|
}
|
||
|
type
|
||
|
}
|
||
|
lastModified
|
||
|
}
|
||
|
}
|
||
|
... on CorpUser {
|
||
|
urn
|
||
|
username
|
||
|
info {
|
||
|
active
|
||
|
displayName
|
||
|
title
|
||
|
firstName
|
||
|
lastName
|
||
|
}
|
||
|
editableInfo {
|
||
|
pictureLink
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
facets {
|
||
|
field
|
||
|
aggregations {
|
||
|
value
|
||
|
count
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|