Skip to content

GroupCarePlanUserConnection

A connection between a user and a care plan

Fields

active · Boolean! · required · The care plan active status
care_plan_id · ID · The ID of the care plan
id · ID! · required · The unique identifier of the join
user_group_id · ID · The ID of the user_group
user_id · ID · The ID of the client

Used By

Definition

"""
A connection between a user and a care plan
"""
type GroupCarePlanUserConnection {
"""
The care plan active status
"""
active: Boolean!
"""
The ID of the care plan
"""
care_plan_id: ID
"""
The unique identifier of the join
"""
id: ID!
"""
The ID of the user_group
"""
user_group_id: ID
"""
The ID of the client
"""
user_id: ID
}