We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9522669 commit c5233a4Copy full SHA for c5233a4
docs/sphinx/quickstart.rst
@@ -45,8 +45,7 @@ Using the client
45
46
Time to use Elasticsearch! This section walks you through the most important
47
operations of Elasticsearch. The following examples assume that the Python
48
-client has already initiated and don't contain the Elasticsearch `include`
49
-statement.
+client was instantiated as above.
50
51
52
Creating an index
@@ -94,7 +93,7 @@ This is how you can create a single match query with the Python client:
94
93
95
.. code-block:: python
96
97
- client.search(index="my_index", query={"match": {"foo": "foo"}})
+ client.search(index="my_index", query={"match": {"foo": {"query": "foo"}}})
98
99
100
Updating documents
0 commit comments