OBJECT

Topic

link GraphQL Schema definition

  • type Topic implements Node {
  • id: ID!
  • # The name of the topic.
  • name: String!
  • # The ordinal of the topic.
  • ordinal: Int!
  • # The type of the topic.
  • type: TopicType!
  • modelID: String
  • modelVersion: String
  • # The total number of posts that are tagged with the topic.
  • totalPosts: Int!
  • visible: Boolean!
  • words: [String!]
  • wordFrequencies: Map
  • generatedLabel: String
  • clusterID: Int
  • clusterLabel: String
  • # The trending boost of the topic.
  • trendingBoost: Float!
  • medicalSearchSuggestions: [String!]
  • description: String
  • archivedAt: Time
  • definitionForEmbedding: String
  • # The tenant that the topic belongs to.
  • tenant: Tenant
  • # The cover image of the topic.
  • cover: MediaItem
  • # The cover image of the topic.
  • coverImage: Image
  • # The users that are subscribed to the topic.
  • users: [User!]
  • # The classifications of the topic.
  • classifications: [TopicClassification!]
  • # The classification categories associated with this topic.
  • categories: [ClassificationCategory!]
  • # The posts that are tagged with the topic.
  • posts: [Post!]
  • # The articles that are tagged with the topic.
  • pubmedArticles: [PubmedArticle!]
  • # The articles that are tagged with the topic.
  • articles: [Article!]
  • # The videos that are tagged with the topic.
  • videos: [Video!]
  • # The videos that are tagged with the topic.
  • classificationRequests: [ClassificationRequest!]
  • # The NPI taxonomies that are tagged with the topic.
  • npiTaxonomies: [NpiTaxonomy!]
  • # The children topics of the topic.
  • parent: Topic
  • children: [Topic!]
  • pubmedTopicClusters: [PubmedTopicCluster!]
  • embeddings: [TopicEmbedding!]
  • # The topics that are related to the topic.
  • relatedTo: Topic
  • related: [Topic!]
  • licenseRequirements: [LicenseRequirementTopic!]
  • topicNpiTaxonomies: [TopicNpiTaxonomy!]
  • topicPubmedTopicCluster: [TopicPubmedTopicCluster!]
  • }