OBJECT

ContinuingEducationTopic

link GraphQL Schema definition

  • type ContinuingEducationTopic {
  • # The id of the backing Topic
  • topicID: ID!
  • # The name value for the backing Topic
  • topicName: String!
  • # The id of the backing LicenseRequirementTopic
  • licenseRequirementTopicID: ID!
  • licenseRequirementTopic: LicenseRequirementTopic!
  • goal: Float!
  • earned: Float!
  • progress: Float!
  • ceUnit: CertifyingBoardCeUnit!
  • # Arguments
  • # after: [Not documented]
  • # first: [Not documented]
  • # before: [Not documented]
  • # last: [Not documented]
  • posts(after: Cursor, first: Int, before: Cursor, last: Int): PostConnection!
  • id: ID!
  • postCount: Int!
  • description: String!
  • appliesToDescription: String!
  • contentAvailable: Boolean!
  • required: Boolean!
  • # True if the user is actively tracking this topic (if the user has opted in to
  • # tracking)
  • activelyTracking: Boolean!
  • conditions: [String!]!
  • educationCreditIDs: [Int!]!
  • }