You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is currently not possible to query Elastic 8 via certificate,
28
+
It is currently not possible to query Elastic 8 via certificate,
29
29
but only disabling ssl with the configuration `"xpack.security.http.ssl.enabled=false"`, using the basic authentication via the header config (see `config parameter` below)
30
30
or (not recommended) disabling security via `xpack.security.enabled=false`
31
31
====
@@ -74,7 +74,7 @@ Here an example:
74
74
[source,cypher]
75
75
----
76
76
// It's important to create an index to improve performance
77
-
CREATE INDEX ON :Document(id)
77
+
CREATE INDEX FOR (n:Document) ON (n.id)
78
78
// First query: get first chunk of data + the scroll_id for pagination
79
79
CALL apoc.es.query('localhost','test-index','test-type','name:Neo4j&size=1&scroll=5m',null) yield value with value._scroll_id as scrollId, value.hits.hits as hits
By default, the `<index param>` and `<id param>` will be populated as `_all`, while the `<id param>`, if not present, will be removed from the endpoint
240
+
By default, the `<index param>` and `<id param>` will be populated as `_all`, while the `<id param>`, if not present, will be removed from the endpoint
186
241
| `<host>/<index param>/<type param>/<id param>_stats?<query param>`. Note that you only need to enter one of three values between `<index param>`,`<id param>` and `<type param>`, the others will eventually be excluded from the endpoint.
187
242
188
243
The type param is usually an underscore string indicating the type of the API, e.g. `_doc` or `_update` (while previously indicated https://www.elastic.co/guide/en/elasticsearch/reference/6.1/removal-of-types.html[the mapping types]).
0 commit comments