...
The $queryId is the ID string that you received when you first created the query. You can also find the queries you need by using the List Saved Queries function.
$queryString (array)
The $queryString array allows you to pass dynamic values to the query, to return the results you want. When we created the query, we set variables, or placeholders, for "event", "gte" (greater than or equals), "lte" (less than or equals), and a "group".
...
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
Array ( [0] => Array ( [_id] => 56e5f063219b38e07abac24156de2fr0219b38e071aac27e [name] => Login [tags] => Array ( [username] => johnsmith [group] => Inspector ) [date] => 2016-03-13T22:57:39.774Z ) [1] => Array ( [_id] => 56ebd3e80a9b38e073ba1428 [name] => Login [tags] => Array ( [username] => johnsmith [group] => Inspector ) [date] => 2016-03-18T01:03:36.217Z ) ) |
...