Skip to content

SymptomOption

A Symptom Option

Fields

id · ID! · required · Custom Symptoms use numeric IDs. Standard symptoms just use the symptom name
name · String! · required · The symptom name
value · Int! · required · The symptom value

Used By

Definition

"""
A Symptom Option
"""
type SymptomOption {
"""
Custom Symptoms use numeric IDs. Standard symptoms just use the symptom name
"""
id: ID!
"""
The symptom name
"""
name: String!
"""
The symptom value
"""
value: Int!
}