Skip to content

Commit 01f9a06

Browse files
committed
Add 'stored_fields' param to Exists, Explain and Search endpoints
Closes #554
1 parent 348fb4d commit 01f9a06

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

src/Elasticsearch/Endpoints/Exists.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ public function getParamWhitelist()
6060
'refresh',
6161
'routing',
6262
'version',
63+
'stored_fields'
6364
);
6465
}
6566

src/Elasticsearch/Endpoints/Explain.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ public function getParamWhitelist()
8686
'_source',
8787
'_source_exclude',
8888
'_source_include',
89+
'stored_fields'
8990
);
9091
}
9192

src/Elasticsearch/Endpoints/Search.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ public function getParamWhitelist()
9595
'docvalue_fields',
9696
'filter_path',
9797
'terminate_after',
98+
'stored_fields'
9899
);
99100
}
100101

0 commit comments

Comments
 (0)