40 lines
463 B
GraphQL
40 lines
463 B
GraphQL
#import "./highlightParts.gql"
|
|
#import "./wagtailIMageParts.gql"
|
|
|
|
fragment ModuleLegacyParts on ModuleNode {
|
|
id
|
|
title
|
|
metaTitle
|
|
teaser
|
|
intro
|
|
slug
|
|
heroSource
|
|
heroImage {
|
|
...WagtailImageParts
|
|
}
|
|
solutionsEnabled
|
|
highlights {
|
|
...HighlightLegacyParts
|
|
}
|
|
language
|
|
inEditMode @client
|
|
level {
|
|
id
|
|
name
|
|
}
|
|
category {
|
|
id
|
|
name
|
|
}
|
|
topic {
|
|
slug
|
|
title
|
|
}
|
|
bookmark {
|
|
note {
|
|
id
|
|
text
|
|
}
|
|
}
|
|
}
|