mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-19 22:58:05 +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
|
|
}
|
|
}
|
|
}
|