Skip to content

IcdCodesPolicy

icd codes policies join table

Fields

code · String · The ICD code
created_at · String · The date when the join was created
description · String · The description of the join
icd_code · IcdCode · The ICD code object
icd_code_id · ID · The ID of the joined ICD code
id · ID · The unique identifier of the join between ICD code and policy.
policy_id · ID · The ID of the joined policy
updated_at · String · The date updated

Used By

Definition

"""
icd codes policies join table
"""
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
}