OBJECT

IcdCodesPolicy

icd codes policies join table

link GraphQL Schema definition

  • type IcdCodesPolicy {
  • # The ICD code
  • code: String
  • # The date when the join was created
  • created_at: String
  • # The description of the join
  • description: String
  • # The ICD code object
  • icd_code: IcdCode
  • # The ID of the joined ICD code
  • icd_code_id: ID
  • # The unique identifier of the join between ICD code and policy.
  • id: ID
  • # The ID of the joined policy
  • policy_id: ID
  • # The date updated
  • updated_at: String
  • }