Symptom Categories

Use the symptomCategories query to list all the symptoms categories available.

Available Fields

Field Name
Type
Description

id

ID

Symptom category Id.

name

String

Symptom category name.

description

String

Symptom category description.

createdAt

DateTime

Date when the symptom category was created.

updatedAt

DateTime

Date when the symptom category was last updated.

Example

query{
  symptomCategories{
    edges{
      node{
        id
        name
        description
        createdAt
        updatedAt
      }
    }
  }
}

Last updated

Was this helpful?