Streaks
query getStreaks($user_id: String!) {
user(user_id: $user_id) {
user_id
engagement {
streaks(transport_mode: CAR, variant: STREAK_VARIANT_DAY, type: STREAK_TYPE_STRICT) {
# provides the best streaks
best {
slice {
name # name of the score the streak is tracking. Ex: OVERALL_SCORE, LEGAL_SCORE
value # value of the streak
}
}
# provides the current on-going streaks
current {
slice {
name # name of the score the streak is tracking. Ex: OVERALL_SCORE, LEGAL_SCORE
value # value of the streak
}
}
}
}
}
}
Sub Streaks
Streaks
Comment
Streaks Context
Example Wireframe

Last updated