Skip to content

CourseCompletionInfoGroupsType

Completion info for group participants enrolled to the course

Fields

completed · Int · Count of users in the group which completed the course
label · String · Group name
total · Int · Count of users in the group
user_ids · [String!] · Group participant ids
value · String · Group ID

Used By

Definition

"""
Completion info for group participants enrolled to the course
"""
type CourseCompletionInfoGroupsType {
"""
Count of users in the group which completed the course
"""
completed: Int
"""
Group name
"""
label: String
"""
Count of users in the group
"""
total: Int
"""
Group participant ids
"""
user_ids: [String!]
"""
Group ID
"""
value: String
}