> Portal Navigation:
> 
> - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version.
> - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages).
> - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`).
> - Top-level index of all portals: https://dev.wix.com/docs/llms.txt
> - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt

## Resource: getResolvedData()

## Article: getResolvedData()

## Article Link: https://dev.wix.com/docs/sdk/host-modules/editor/react-elements/data/get-resolved-data.md

## Article Content:

<!-- Source: packages/public-editor-platform-sdk/src/element/index.ts in wix-private/editor-platform -->
# getResolvedData()

Retrieves the current value of a single data field from the selected component, by `dataItemKey`.

Call [`getData()`](https://dev.wix.com/docs/sdk/host-modules/editor/react-elements/data/get-data.md) to retrieve every data field at once. Call `getResolvedData()` when you only need one field, or when you want to avoid re-fetching values you already have.

## Syntax

```ts
function getResolvedData(options: { dataItemKey: string }): Promise<unknown>
```

## Parameters

| Name | Type | Description |
| :---- | :---- | :---- |
| `options.dataItemKey` | string | Key of the data field to retrieve. Must match a key returned by [`getDataDefinitions()`](https://dev.wix.com/docs/sdk/host-modules/editor/react-elements/data/get-data-definitions.md). |

## Returns

`Promise<unknown>`

The current value of the requested data field.

## Example

```js
import { reactElements } from '@wix/editor';

const heroImage = await reactElements.getResolvedData({
  dataItemKey: 'heroImage',
});
```

## See also

- [getData()](https://dev.wix.com/docs/sdk/host-modules/editor/react-elements/data/get-data.md)
- [getDataDefinitions()](https://dev.wix.com/docs/sdk/host-modules/editor/react-elements/data/get-data-definitions.md)
- [About the React Elements API](https://dev.wix.com/docs/sdk/host-modules/editor/react-elements/introduction.md)