2023-05-17 00:17:25 -07:00
|
|
|
query getDataProduct($urn: String!) {
|
|
|
|
dataProduct(urn: $urn) {
|
2024-07-15 15:14:15 -04:00
|
|
|
urn
|
|
|
|
type
|
2023-05-17 00:17:25 -07:00
|
|
|
...dataProductFields
|
2024-03-20 15:25:36 -04:00
|
|
|
privileges {
|
|
|
|
...entityPrivileges
|
|
|
|
}
|
2024-01-23 16:30:02 -05:00
|
|
|
autoRenderAspects: aspects(input: { autoRenderOnly: true }) {
|
|
|
|
...autoRenderAspectFields
|
|
|
|
}
|
2024-02-08 12:21:05 -05:00
|
|
|
structuredProperties {
|
|
|
|
properties {
|
|
|
|
...structuredPropertiesFields
|
|
|
|
}
|
|
|
|
}
|
2024-02-13 15:02:52 -05:00
|
|
|
forms {
|
|
|
|
...formsFields
|
|
|
|
}
|
2025-01-29 20:42:01 -05:00
|
|
|
...notes
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
query getDataProductsList($input: SearchAcrossEntitiesInput!) {
|
|
|
|
searchAcrossEntities(input: $input) {
|
|
|
|
searchResults {
|
|
|
|
entity {
|
|
|
|
... on DataProduct {
|
|
|
|
urn
|
|
|
|
type
|
|
|
|
properties {
|
|
|
|
name
|
|
|
|
description
|
|
|
|
numAssets
|
|
|
|
}
|
|
|
|
domain {
|
|
|
|
...entityDomain
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-05-17 00:17:25 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fragment dataProductFields on DataProduct {
|
|
|
|
...dataProductSearchFields
|
|
|
|
properties {
|
|
|
|
customProperties {
|
|
|
|
key
|
|
|
|
value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
institutionalMemory {
|
|
|
|
...institutionalMemoryFields
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fragment dataProductSearchFields on DataProduct {
|
|
|
|
urn
|
|
|
|
type
|
|
|
|
properties {
|
|
|
|
name
|
|
|
|
description
|
|
|
|
externalUrl
|
|
|
|
}
|
|
|
|
ownership {
|
|
|
|
...ownershipFields
|
|
|
|
}
|
|
|
|
tags {
|
|
|
|
...globalTagsFields
|
|
|
|
}
|
|
|
|
glossaryTerms {
|
|
|
|
...glossaryTerms
|
|
|
|
}
|
|
|
|
domain {
|
|
|
|
...entityDomain
|
|
|
|
}
|
2023-07-26 10:56:40 -04:00
|
|
|
entities(input: { start: 0, count: 0, query: "*" }) {
|
|
|
|
total
|
|
|
|
}
|
2023-05-17 00:17:25 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
mutation createDataProduct($input: CreateDataProductInput!) {
|
|
|
|
createDataProduct(input: $input) {
|
|
|
|
...dataProductSearchFields
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mutation updateDataProduct($urn: String!, $input: UpdateDataProductInput!) {
|
|
|
|
updateDataProduct(urn: $urn, input: $input) {
|
|
|
|
...dataProductSearchFields
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mutation deleteDataProduct($urn: String!) {
|
|
|
|
deleteDataProduct(urn: $urn)
|
|
|
|
}
|
|
|
|
|
|
|
|
mutation batchSetDataProduct($input: BatchSetDataProductInput!) {
|
|
|
|
batchSetDataProduct(input: $input)
|
|
|
|
}
|