Description Usage Arguments Details
Get the source of a document by its index, type and id.
1 2 3 4 5 6 7 8 | getSource(client, ...)
## S3 method for class 'elasticsearch'
getSource(client, index, type = "_all", id,
parent = NULL, source = TRUE, realtime = TRUE, routing = NULL,
preference = "random", refresh = FALSE, version = NULL,
version_type = NULL, raw = FALSE, validate_params = TRUE,
source_include = NULL, source_exclude = NULL)
|
index |
String The name of the index |
type |
String The type of the document; use _all to fetch the first document matching the ID across all types |
id |
String The document ID |
parent |
String The ID of the parent document |
source |
String, String[], Logical True or false to return the _source field or not, or a list of fields to return |
realtime |
Logical Specify whether to perform the operation in realtime or search mode |
routing |
String Specific routing value |
preference |
String Specify the node or shard the operation should be performed on (default: random) |
refresh |
Logical Refresh the shard containing the document before performing the operation |
version |
Number Explicit version number for concurrency control |
source_include |
String, String[], Logical A list of fields to extract and return from the _source field |
source_exclude |
String, String[], Logical A list of fields to exclude from the returned _source field |
versionType |
String Specific version type |
getSource
retrieves source from index
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.