mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-07 16:57:52 +00:00
34 lines
511 B
GraphQL
34 lines
511 B
GraphQL
![]() |
fragment pageTemplateFields on DataHubPageTemplate {
|
||
|
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
|
||
|
}
|
||
|
}
|
||
|
}
|