skillbox/client/src/graphql/gql/queries/snapshots/detail.gql

47 lines
693 B
GraphQL

#import "../../fragments/contentBlockInterfaceParts.gql"
query SnapshotDetail($id: ID!) {
snapshot(id: $id) {
id
title
metaTitle
heroImage {
id
src
srcset
alt
}
created
changes {
newContentBlocks
newObjectives
hiddenContentBlocks
hiddenObjectives
}
creator
objectiveGroups {
id
title
displayTitle
hidden
objectives {
hidden
id
text
}
}
chapters {
id
description
title
titleHidden
descriptionHidden
contentBlocks {
id
...ContentBlockInterfaceParts
hidden
}
}
}
}