Skip to content

ConversationMembershipsAllCounts

Counts for all conversation membership tabs (active, scheduled, archived, closed)

Fields

active_count · Int! · required · Count of active (non-archived, non-closed) conversation memberships
archived_count · Int! · required · Count of archived conversation memberships
closed_count · Int! · required · Count of closed conversation memberships
scheduled_count · Int! · required · Count of scheduled conversation memberships

Used By

Definition

"""
Counts for all conversation membership tabs (active, scheduled, archived, closed)
"""
type ConversationMembershipsAllCounts {
"""
Count of active (non-archived, non-closed) conversation memberships
"""
active_count: Int!
"""
Count of archived conversation memberships
"""
archived_count: Int!
"""
Count of closed conversation memberships
"""
closed_count: Int!
"""
Count of scheduled conversation memberships
"""
scheduled_count: Int!
}