OBJECT
Channel
For more details, see Query.channel.
link GraphQL Schema definition
- type Channel {
- # The unique identifier for a channel in UUID format.
- ID! :
- # Name of the channel.
- String :
- # The channel description.
- String :
- # The privacy level of a channel ('org' or 'private').
- String :
- # A list of image urls for the icon(s) for a Channel.
- String!] : [
- # Objectives are special tags that channel creators can optionally apply to a
- # Channel.
- String :
- # Is this channel discoverable by the rest of the users on the plan?
- Boolean :
- # Is analytics reporting enabled for this Channel?
- Boolean :
- # The date the channel was created in ISO 8601 format.
- DateTime :
- # The date the channel was archived in ISO 8601 format. Will be null if not
- # archived.
- DateTime :
- # Enterprise Only. The list of Members that have been assigned to the Channel.
- ChannelMember] : [
- # The channel owner.
- User :
- # The list of content (Courses, Paths, Projects, External Link, etc) that have
- # been added to the Channel.
- ChannelContent] : [
- # The identifier of the plan that the channel belongs to.
- String :
- # The number of members in the channel.
- Int :
- # The average channel completion percentage over all members in the channel.
- Float! :
- # The aggregated duration of content in a channel in hours.
- Float :
- # The aggregated duration of content in a channel in seconds.
- Float :
- # The last time a user engaged with the channel.
- DateTime :
- # The last time that PaaS processed a record corresponding to this channel. Filter
- # on this field when retrieving deltas.
- DateTime! :
- # If true, this channel has been deleted from your plan and you should delete it
- # from your data source.
- Boolean! :
- }
link Require by
- AddChannelPayloadA type that describes the returned payload from the AddChannel mutation
- ChannelConnectionA type that describes the return type for the channels query. Channels can then be accessed via nodes or edges
- ChannelEdgeA type that describes an edge in the ChannelV2Connection. Essentially, a ChannelV2Edge is a wrapper object for ChannelV2. The only addition is a cursor placed on each record that can be used in subsequent queries to fetch ChannelV2 records after 'cursor'.
- QueryQueries are read only graphQL APIs that allow access to your data. The following advanced analytics APIs are available only to Enterprise plans: channelProgress, SkillAssessmentResult(s) and roleIqLearnerLevels.