John Joyce 550cdc51ee
feat(React Incubation): React Playground Proof of Concept (#2059)
Co-authored-by: John Joyce <jjoyce0510@gmail.com>
2021-01-17 12:54:49 -08:00

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
}
}
}