Skip to content

FormHistory

A form history object

Fields

action · FormHistoryAction · Action of the form history object
created_at · ISO8601DateTime · Date/Time created
creator · User · The User who created form history object or dietitian of the patient
id · ID! · required · The unique identifier of the form history object
patient · User · The patient who owns the form history object
title · String · The title describing form history creation

Used By

Definition

"""
A form history object
"""
type FormHistory {
"""
Action of the form history object
"""
action: FormHistoryAction
"""
Date/Time created
"""
created_at: ISO8601DateTime
"""
The User who created form history object or dietitian of the patient
"""
creator: User
"""
The unique identifier of the form history object
"""
id: ID!
"""
The patient who owns the form history object
"""
patient: User
"""
The title describing form history creation
"""
title: String
}