Symptom

Use the symptom query to retrieve Symptom details by Id.

Required Arguments

Argument
Type
Description

id

ID!

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 {
  symptom(id:"U3ltcHRvbTpkMjQ5M2IyMC04YzhiLTQwMDUtODg4Ny0wMzE1YWQ4MzYzYTg="){
    id
    name
    description
    createdAt
    updatedAt
    categories{
      id
      name
      description
    }
  }
}

Last updated

Was this helpful?