GET /ask/games/:gameSlug/stats/review_count
NO
NO
{
count: 9487
}
GET /ask/game/:gameSlug/stats/player_review_average
NO
NO
{
rows: [
{
persona_id: 1
score: 2.4
}
{
persona_id: 2
score: 4.2
}
...
]
totalRowCount
}
GET /ask/game/:gameSlug/stats/player_topic_review_average
NO
NO
{
rows: [
{
persona_id: 1
scores: [
{
topic_id: 1
score: 2.4
}
{
topic_id: 2
score: 4.2
}
...
]
}
...
]
totalRowCount
}
GET /ask/game/:gameSlug/stats/player_num_answered_questions
NO
NO
{
rows: [
{
persona_id: 1
num_assigned_questions: 10
num_answered_questions: 2
}
...
]
totalRowCount
}
GET /ask/game/:gameSlug/stats/player_popular_questions
NO
NO
{
rows: [
{
persona: { // simplifiedPersonaObject
id
type
status
title
name
avatar
start_date
end_date
data: {}
}
questions: [
{ // simplifiedQuestionObject
id
status
slug
type
persona: {} // simplifiedPersonaObject
topic_type
topic_id
topic_title
title
content
data: {} // threshold is here
push: {
count
}
}
...
]
}
...
]
totalRowCount
}