1afceba69b
* update to ES 7 * more updates to make tests run * update the test matrix * remove python 3.3 * update xpack apis * relative imports
24 lines
957 B
Python
24 lines
957 B
Python
from ..utils import NamespacedClient, query_params, _make_path, SKIP_IN_PATH
|
|
|
|
|
|
class GraphClient(NamespacedClient):
|
|
@query_params("routing", "timeout")
|
|
def explore(self, index=None, doc_type=None, body=None, params=None):
|
|
"""
|
|
`<https://www.elastic.co/guide/en/elasticsearch/reference/current/graph-explore-api.html>`_
|
|
|
|
:arg index: A comma-separated list of index names to search; use `_all`
|
|
or empty string to perform the operation on all indices
|
|
:arg doc_type: A comma-separated list of document types to search; leave
|
|
empty to perform the operation on all types
|
|
:arg body: Graph Query DSL
|
|
:arg routing: Specific routing value
|
|
:arg timeout: Explicit operation timeout
|
|
"""
|
|
return self.transport.perform_request(
|
|
"GET",
|
|
_make_path(index, doc_type, "_graph", "explore"),
|
|
params=params,
|
|
body=body,
|
|
)
|