Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TECHDOCS-4676: Update read-from-index-layer.md #523

Merged
merged 1 commit into from
Jun 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/read-from-index-layer.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ App works!

## Create `IndexLayerClient`

You can use the `IndexLayerClient` object to request any data and partition metadata from an [index layer](https://developer.here.com/documentation/data-user-guide/portal/layers/layers.html#index-layers).
You can use the `IndexLayerClient` object to request any data and partition metadata from an [index layer](https://www.here.com/docs/bundle/data-api-developer-guide/page/README.html#index-layers).

**To create the `IndexLayerClient` object:**

Expand All @@ -85,7 +85,7 @@ You can use the `IndexLayerClient` object to request any data and partition meta

## Get partition metadata from an index layer

Partition metadata from an [index layer](https://developer.here.com/documentation/data-user-guide/portal/layers/layers.html#index-layers) consists of the following information about the partition:
Partition metadata from an [index layer](https://www.here.com/docs/bundle/data-api-developer-guide/page/README.html#index-layers) consists of the following information about the partition:

- ID (data handle)
- Data size
Expand Down Expand Up @@ -131,7 +131,7 @@ const partitions = await indexLayerClient.getPartitions(request),

## Get data from an index layer

An [index layer](https://developer.here.com/documentation/data-user-guide/portal/layers/layers.html#index-layers) is an index of the catalog data by attributes. You can query the index layer to get the data handles of data that meets your query criteria, and you can then use these data handles to get the corresponding data.
An [index layer](https://www.here.com/docs/bundle/data-api-developer-guide/page/README.html#index-layers) is an index of the catalog data by attributes. You can query the index layer to get the data handles of data that meets your query criteria, and you can then use these data handles to get the corresponding data.

**To get data from the index layer:**

Expand Down
Loading