> For the complete documentation index, see [llms.txt](https://docs.suggestic.com/graphql/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.suggestic.com/graphql/query/queries/tracking/symptoms/symptom.md).

# 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 | [Symptom category](/graphql/objects/symptoms/symptom-category.md). |

### Example

{% tabs %}
{% tab title="Request" %}

```graphql
query {
  symptom(id:"U3ltcHRvbTpkMjQ5M2IyMC04YzhiLTQwMDUtODg4Ny0wMzE1YWQ4MzYzYTg="){
    id
    name
    description
    createdAt
    updatedAt
    categories{
      id
      name
      description
    }
  }
}
```

{% endtab %}

{% tab title="Response" %}

```graphql
{
  "data": {
    "symptom": {
      "id": "U3ltcHRvbTpkMjQ5M2IyMC04YzhiLTQwMDUtODg4Ny0wMzE1YWQ4MzYzYTg=",
      "name": "Abdominal pain/cramping",
      "description": "Pain or discomfort in the stomach area",
      "createdAt": "2025-05-21T16:09:13.202366+00:00",
      "updatedAt": "2025-05-21T16:09:13.202392+00:00",
      "categories": [
        {
          "id": "U3ltcHRvbUNhdGVnb3J5OjBiZDUzNTg5LWVjMDYtNGU0Ni1hMjQzLTc3MTQ1OTU0NjZmNA==",
          "name": "Gastrointestinal"
        }
      ]
    }
  }
}
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.suggestic.com/graphql/query/queries/tracking/symptoms/symptom.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
