summaryrefslogtreecommitdiff
path: root/rest-api-spec/test/scroll/10_basic.yaml
blob: 3dbca7498c5ef31841fd2b60587c7f005517371a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
---
"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" }