skillbox/client/src/graphql/gql/queries/myActivity.gql

113 lines
1.8 KiB
GraphQL

query MyActivityQuery {
myInstrumentActivity {
edges {
node {
id
title
contents
type {
id
type
category {
id
name
foreground
background
}
}
slug
bookmarks {
id
uuid
note {
id
text
}
}
}
}
}
myActivity {
edges {
node {
id
title
slug
metaTitle
topic {
title
}
mySubmissions {
edges {
node {
id
text
assignment {
id
title
}
}
}
}
myAnswers {
edges {
node {
id
survey {
id
title
}
}
}
}
myContentBookmarks {
edges {
node {
id
uuid
note {
id
text
}
contentBlock {
id
type
contents
}
}
}
}
myChapterBookmarks {
edges {
node {
id
note {
id
text
}
chapter {
id
title
description
}
}
}
}
bookmark {
id
note {
id
text
}
module {
id
teaser
metaTitle
intro
}
}
}
}
}
}