mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-12 19:27:09 +00:00
51 lines
795 B
GraphQL
51 lines
795 B
GraphQL
fragment pageTemplateFields on DataHubPageTemplate {
|
|
urn
|
|
type
|
|
properties {
|
|
rows {
|
|
...PageTemplateRow
|
|
}
|
|
surface {
|
|
surfaceType
|
|
}
|
|
visibility {
|
|
scope
|
|
}
|
|
created {
|
|
time
|
|
}
|
|
lastModified {
|
|
time
|
|
}
|
|
}
|
|
}
|
|
|
|
fragment PageTemplateRow on DataHubPageTemplateRow {
|
|
modules {
|
|
...PageModule
|
|
}
|
|
}
|
|
|
|
fragment PageModule on DataHubPageModule {
|
|
urn
|
|
type
|
|
properties {
|
|
name
|
|
type
|
|
created {
|
|
time
|
|
}
|
|
lastModified {
|
|
time
|
|
}
|
|
visibility {
|
|
scope
|
|
}
|
|
params {
|
|
richTextParams {
|
|
content
|
|
}
|
|
}
|
|
}
|
|
}
|