Skip to content

[DOCS] Add link to stored fields example #4576

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

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions specification/_doc_ids/table.csv
Original file line number Diff line number Diff line change
Expand Up @@ -604,6 +604,7 @@ reroute-processor,https://www.elastic.co/docs/reference/enrich-processor/reroute
render-search-template-api,https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-render-search-template
reset-transform,https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-transform-reset-transform
restore-snapshot,https://www.elastic.co/docs/deploy-manage/tools/snapshot-and-restore/restore-snapshot
retrieve-stored-fields,https://www.elastic.co/docs/reference/elasticsearch/rest-apis/retrieve-stored-fields
role-restriction,https://www.elastic.co/docs/deploy-manage/users-roles/cluster-or-deployment-auth/role-restriction
rollup-agg-limitations,https://www.elastic.co/docs/manage-data/lifecycle/rollup/rollup-aggregation-limitations
rollup-delete-job,https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-rollup-delete-job
Expand Down
7 changes: 4 additions & 3 deletions specification/_global/get/GetRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export interface Request extends RequestBase {
query_parameters: {
/**
* Indicates whether the request forces synthetic `_source`.
* Use this paramater to test if the mapping supports synthetic `_source` and to get a sense of the worst case performance.
* Use this parameter to test if the mapping supports synthetic `_source` and to get a sense of the worst case performance.
* Fetches with this parameter enabled will be slower than enabling synthetic source natively in the index.
* @availability stack since=8.4.0 visibility=feature_flag feature_flag=es.index_mode_feature_flag_registered
*/
Expand Down Expand Up @@ -163,8 +163,9 @@ export interface Request extends RequestBase {
* A comma-separated list of stored fields to return as part of a hit.
* If no fields are specified, no stored fields are included in the response.
* If this field is specified, the `_source` parameter defaults to `false`.
* Only leaf fields can be retrieved with the `stored_field` option.
* Object fields can't be returned;​if specified, the request fails.
* Only leaf fields can be retrieved with the `stored_fields` option.
* Object fields can't be returned; if specified, the request fails.
* @ext_doc_id retrieve-stored-fields
*/
stored_fields?: Fields
/**
Expand Down