Skip to content

CptCodesPolicy

cpt codes policies join table

Fields

code · String · cpt code
cpt_code_id · ID · id of instance of joins between cpt_code and policy
created_at · String! · required · date created
description · String · cpt code description
id · ID! · required · The unique identifier of the join between cpt_code and policy.
policy_id · ID · policy id
updated_at · String! · required · date updated

Used By

Definition

"""
cpt codes policies join table
"""
type CptCodesPolicy {
"""
cpt code
"""
code: String
"""
id of instance of joins between cpt_code and policy
"""
cpt_code_id: ID
"""
date created
"""
created_at: String!
"""
cpt code description
"""
description: String
"""
The unique identifier of the join between cpt_code and policy.
"""
id: ID!
"""
policy id
"""
policy_id: ID
"""
date updated
"""
updated_at: String!
}