Skip to content

CptCode

The CPT code

Fields

category · String · The CPT code category
deprecated Always returns nil
code · String · The CPT code
created_at · String! · required · The date when the CPT code was created
cursor · Cursor! · required · Pagination cursor
description · String · The description of the CPT code
display_name · String · The name of the CPT code for use in labels
id · ID! · required · The unique identifier of the CPT code
is_favorite · Boolean · Whether a CPT code marked as favorite
last_fee · Float · The last fee applied to this CPT code by a provider
updated_at · String! · required · The date when the CPT code was updated

Used By

Definition

"""
The CPT code
"""
type CptCode {
"""
The CPT code category
"""
category: String @deprecated(reason: "Always returns nil")
"""
The CPT code
"""
code: String
"""
The date when the CPT code was created
"""
created_at: String!
"""
Pagination cursor
"""
cursor: Cursor!
"""
The description of the CPT code
"""
description: String
"""
The name of the CPT code for use in labels
"""
display_name: String
"""
The unique identifier of the CPT code
"""
id: ID!
"""
Whether a CPT code marked as favorite
"""
is_favorite(
"""
The known value of is_favorite (from the query argument)
"""
known_value: Boolean
): Boolean
"""
The last fee applied to this CPT code by a provider
"""
last_fee: Float
"""
The date when the CPT code was updated
"""
updated_at: String!
}