All tasks completed by Working Group for term should be provided.
How many threads were created | 0 |
---|---|
How many threads were deleted | 0 |
How many posts were created | 0 |
How many posts were deleted | 0 |
How many posts exists* | 0 |
*Use this query to get data about how many posts exists
query AllExistingPosts($councilEndTimeStamp: DateTime!) {
forumPosts(limit: 100000, where: {createdAt_lte: $councilEndTimeStamp}) {
id
}
}
{
"councilEndTimeStamp": 1657673292000
}
I use this query to get these data:
forum
(except regular posting) transactions made by the group, who made it, and why, eg.*visualisation of a chart should be done in excel or similar tool
query ForumDataReport($councilStartBlock: Int!, $councilEndBlock: Int!) {
categoryCreatedEvents(where: {inBlock_gte: $councilStartBlock, inBlock_lt: $councilEndBlock}, limit: 100) {
category {
id
parentId
parent {
title
}
title
description
}
inBlock
}
categoryArchivalStatusUpdatedEvents(where: {inBlock_gte: $councilStartBlock, inBlock_lt: $councilEndBlock}, limit: 100) {
inBlock
category {
id
title
description
moderators {
id
}
}
newArchivalStatus
}
categoryDeletedEvents(where: {inBlock_gte: $councilStartBlock, inBlock_lt: $councilEndBlock}, limit: 100) {
inBlock
category {
id
title
description
}
}
threadModeratedEvents(where: {inBlock_gte: $councilStartBlock, inBlock_lt: $councilEndBlock}, limit: 100) {
inBlock
rationale
thread {
id
author {
handle
}
}
}
threadMetadataUpdatedEvents(where: {inBlock_gte: $councilStartBlock, inBlock_lt: $councilEndBlock}, limit: 100) {
inBlock
thread {
id
title
author {
handle
}
}
}
threadDeletedEvents(where: {inBlock_gte: $councilStartBlock, inBlock_lt: $councilEndBlock}, limit: 100) {
inBlock
thread {
title
id
author {
handle
}
category {
title
id
}
}
}
threadMovedEvents(where: {inBlock_gte: $councilStartBlock, inBlock_lt: $councilEndBlock}, limit: 100) {
inBlock
actorId
thread {
id
title
author {
handle
}
}
oldCategory {
id
title
}
newCategory {
id
title
}
}
categoryMembershipOfModeratorUpdatedEvents(where: {inBlock_gte: $councilStartBlock, inBlock_lt: $councilEndBlock}, limit: 100) {
inBlock
category {
id
title
}
moderator {
id
}
moderatorId
newCanModerateValue
}
categoryStickyThreadUpdateEvents(where: {inBlock_gte: $councilStartBlock, inBlock_lt: $councilEndBlock}, limit: 100) {
inBlock
category {
title
id
}
newStickyThreads {
title
id
}
}
threadCreatedEvents(where: {inBlock_gte: $councilStartBlock, inBlock_lt: $councilEndBlock}, limit: 100) {
inBlock
thread {
id
title
author {
handle
}
category {
id
title
}
}
}
}