mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-27 11:29:59 +00:00
40 lines
847 B
GraphQL
40 lines
847 B
GraphQL
![]() |
query getDataset($urn: String!) {
|
||
|
dataset(urn: $urn) {
|
||
|
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
|
||
|
}
|
||
|
}
|
||
|
}
|