2025-07-16 09:24:19 -04:00
|
|
|
fragment PageTemplate on DataHubPageTemplate {
|
2025-07-08 17:47:11 -04:00
|
|
|
urn
|
|
|
|
type
|
|
|
|
properties {
|
|
|
|
rows {
|
|
|
|
...PageTemplateRow
|
|
|
|
}
|
|
|
|
surface {
|
|
|
|
surfaceType
|
|
|
|
}
|
|
|
|
visibility {
|
|
|
|
scope
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fragment PageTemplateRow on DataHubPageTemplateRow {
|
|
|
|
modules {
|
|
|
|
...PageModule
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fragment PageModule on DataHubPageModule {
|
|
|
|
urn
|
|
|
|
type
|
|
|
|
properties {
|
|
|
|
name
|
|
|
|
type
|
|
|
|
visibility {
|
|
|
|
scope
|
|
|
|
}
|
2025-07-10 18:02:15 +03:00
|
|
|
params {
|
|
|
|
richTextParams {
|
|
|
|
content
|
|
|
|
}
|
|
|
|
}
|
2025-07-08 17:47:11 -04:00
|
|
|
}
|
|
|
|
}
|
2025-07-16 09:24:19 -04:00
|
|
|
|
|
|
|
mutation upsertPageTemplate($input: UpsertPageTemplateInput!) {
|
|
|
|
upsertPageTemplate(input: $input) {
|
|
|
|
urn
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mutation upsertPageModule($input: UpsertPageModuleInput!) {
|
|
|
|
upsertPageModule(input: $input) {
|
|
|
|
urn
|
|
|
|
}
|
|
|
|
}
|