OBJECT

IcdCode

icd code

link GraphQL Schema definition

  • type IcdCode {
  • # The category of the ICD code
  • category: String
  • # The ICD code
  • code: String
  • # The date the ICD code was created
  • created_at: String!
  • # The description of the ICD code
  • description: String
  • # A display name - for use in labels
  • display_name: String
  • # The unique identifier of the ICD code
  • id: ID!
  • # Whether the ICD code is marked as favorite
  • #
  • # Arguments
  • # known_value: The known value of is_favorite (from the query
  • # argument)
  • is_favorite(known_value: Boolean): Boolean
  • # The date the ICD code was updated
  • updated_at: String!
  • }