Skip to content

carePlans

Fetch paginated care plan collection

Arguments

after · Cursor · Cursor to fetch results after

Returns

[CarePlan!]

Example

query carePlans(
$after: Cursor
$offset: Int
$patient_id: ID
$page_size: Int
$sort_by: String
$order_by: CarePlanOrderKeys
$template_search_keywords: String
$templates_only: Boolean
) {
carePlans(
after: $after
offset: $offset
patient_id: $patient_id
page_size: $page_size
sort_by: $sort_by
order_by: $order_by
template_search_keywords: $template_search_keywords
templates_only: $templates_only
) {
assigned_to
created_at
creator
cursor
description
documents
feature_toggle
goals
group_plan_is_active_for_given_user
has_users_with_real_emails
id
is_active
is_group
is_hidden
is_template
name
patient
recommendations
updated_at
user_group
}
}