Skip to content

icdCodes

All ICD Codes

Arguments

is_favorited · Boolean · The favorited status of the ICD Code
only_valid · Boolean · when true, only codes considered to be currently valid will be returned. When false, does nothing
should_paginate · Boolean · Whether results are paginated, highly recommended for use
after · Cursor · Cursor to fetch results after

Returns

[IcdCode!]

Example

query icdCodes(
$is_billable: Boolean
$is_favorited: Boolean
$keywords: String
$only_valid: Boolean
$order_by: IcdCodeOrderKeys
$offset: Int
$should_paginate: Boolean
$after: Cursor
) {
icdCodes(
is_billable: $is_billable
is_favorited: $is_favorited
keywords: $keywords
only_valid: $only_valid
order_by: $order_by
offset: $offset
should_paginate: $should_paginate
after: $after
) {
category
code
created_at
cursor
description
display_name
id
is_favorite
updated_at
}
}