OpenSearch/rest-api-spec/test/scroll/10_basic.yaml

33 lines
553 B
YAML

---
"Basic scroll":
- do:
indices.create:
index: test_scroll
- do:
index:
index: test_scroll
type: test
id: 42
body: { foo: bar }
- do:
indices.refresh: {}
- do:
search:
index: test_scroll
search_type: scan
scroll: 1m
body:
query:
match_all: {}
- set: {_scroll_id: scroll_id}
- do:
scroll:
scroll_id: $scroll_id
- match: {hits.total: 1 }
- match: {hits.hits.0._id: "42" }