Symptoms

Use the symptoms query to list all the symptoms available for the users.

Required Arguments

Argument
Type
Description

id

ID

Used to filter my Symptom Id.

Available Fields

Field Name
Type
Description

id

ID

Symptom Id.

name

String

Symptom name.

description

String

Symptom description.

createdAt

DateTime

Date when the symptom was created.

updatedAt

DateTime

Date when the symptom was last updated.

categories

SymptomCategory

Example

query{
 symptoms{
    edges{
      node{
        id
        name
        description
        createdAt
        updatedAt
        categories{
          id
          name
          description
        }
      }
    }
  }
}

Last updated

Was this helpful?