validate: Validate a search

Description Usage Arguments See Also Examples

View source: R/validate.R

Description

Validate a search

Usage

1
validate(conn, index, type = NULL, ...)

Arguments

conn

an Elasticsearch connection object, see connect()

index

Index name. Required.

type

Document type. Optional.

...

Additional args passed on to Search()

See Also

Search()

Examples

 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
## Not run: 
x <- connect()

if (!index_exists(x, "twitter")) index_create(x, "twitter")
docs_create(x, 'twitter', id=1, body = list(
   "user" = "foobar", 
   "post_date" = "2014-01-03",
   "message" = "trying out Elasticsearch"
 )
)
validate(x, "twitter", q='user:foobar')
validate(x, "twitter", q='user:foobar')

body <- '{
"query" : {
  "bool" : {
    "must" : {
      "query_string" : {
        "query" : "*:*"
      }
    },
    "filter" : {
      "term" : { "user" : "kimchy" }
    }
  }
}
}'
validate(x, "twitter", body = body)

## End(Not run)

elastic documentation built on March 17, 2021, 1:07 a.m.

Related to validate in elastic...