patient
columns and relationships of "patient"
type patient {
attributes: PatientAttributes!
id: uuid!
patientAddresses(
distinct_on: [patientAddress_select_column!]
limit: Int
offset: Int
order_by: [patientAddress_order_by!]
where: patientAddress_bool_exp
): [patientAddress!]!
paymentMethods(
distinct_on: [paymentMethod_select_column!]
limit: Int
offset: Int
order_by: [paymentMethod_order_by!]
where: paymentMethod_bool_exp
): [paymentMethod!]!
serviceHistory: PatientServiceHistory
}
Fields
patient.attributes
● PatientAttributes!
non-null object
patient.id
● uuid!
non-null scalar
patient.patientAddresses
● [patientAddress!]!
non-null object
An array relationship
patient.patientAddresses.distinct_on
● [patientAddress_select_column!]
list enum
distinct select on columns
patient.patientAddresses.limit
● Int
scalar
limit the number of rows returned
patient.patientAddresses.offset
● Int
scalar
skip the first n rows. Use only with order_by
patient.patientAddresses.order_by
● [patientAddress_order_by!]
list input
sort the rows by one or more columns
patient.patientAddresses.where
● patientAddress_bool_exp
input
filter the rows returned
patient.paymentMethods
● [paymentMethod!]!
non-null object
An array relationship
patient.paymentMethods.distinct_on
● [paymentMethod_select_column!]
list enum
distinct select on columns
patient.paymentMethods.limit
● Int
scalar
limit the number of rows returned
patient.paymentMethods.offset
● Int
scalar
skip the first n rows. Use only with order_by
patient.paymentMethods.order_by
● [paymentMethod_order_by!]
list input
sort the rows by one or more columns
patient.paymentMethods.where
● paymentMethod_bool_exp
input
filter the rows returned
patient.serviceHistory
● PatientServiceHistory
object
Returned By
insert_patient_one
mutation ● patient_by_pk
query ● patient_by_pk
subscription ● patient_stream
subscription ● patient
query ● patient
subscription ● search_patientWorkspace
query ● search_patientWorkspace
subscription ● searchPatients
query ● searchPatients
subscription
Member Of
MeOutput
object ● patient_aggregate
object ● patient_mutation_response
object ● patientAddress
object ● patientInvite
object