chilly-processor-85299
02/29/2024, 5:33 PMchilly-processor-85299
02/29/2024, 5:34 PMquery readDescription {
dataset(urn: "urn:li:dataset:(urn:li:dataPlatform:hive,fct_users_deleted,PROD)") {
properties {
description
}
}
}
{
"data": {
"dataset": {
"properties": {
"description": "table containing all the users deleted on a single day"
}
}
},
"extensions": {}
}
chilly-processor-85299
02/29/2024, 5:37 PMmutation updateDataset {
updateDataset(
urn:"urn:li:dataset:(urn:li:dataPlatform:hive,fct_users_deleted,PROD)",
input: {
editableProperties: {
description: "This is a new description."
}
}
) {
urn
}
}
query readDescription {
dataset(urn: "urn:li:dataset:(urn:li:dataPlatform:hive,fct_users_deleted,PROD)") {
properties {
description
}
}
}
{
"data": {
"dataset": {
"properties": {
"description": "table containing all the users deleted on a single day"
}
}
},
"extensions": {}
}
rich-barista-93413
02/29/2024, 6:25 PMchilly-processor-85299
02/29/2024, 7:06 PM