## MedplumClient.readPatientEverything() method

Executes the Patient "everything" operation for a patient.

**Signature:**

```typescript
readPatientEverything(id: string, options?: MedplumRequestOptions): ReadablePromise<Bundle>;
```

## Parameters

| Parameter | Type | Description |
| --- | --- | --- |
| id | string | The Patient Id |
| options | [MedplumRequestOptions](/content/docs/sdk/core.medplumrequestoptions) | _(Optional)_ Optional fetch options. |

**Returns:**

[ReadablePromise](/content/docs/sdk/core.readablepromise) <Bundle>

A Bundle of all Resources related to the Patient

## Example

Example:

```typescript
const bundle = await medplum.readPatientEverything('123');

console.log(bundle);
```

See the [FHIR "patient-everything" operation](https://hl7.org/fhir/operation-patient-everything.html) for full details.

- [MedplumClient.readPatientEverything() method](/content/docs/sdk/core.medplumclient.readpatienteverything#medplumclientreadpatienteverything-method/index.html)
- [Parameters](/content/docs/sdk/core.medplumclient.readpatienteverything#parameters/index.html)
- [Example](/content/docs/sdk/core.medplumclient.readpatienteverything#example/index.html)
