I have tried q.Match('fooIndex')
, where fooIndex is an index without field, but it returns a weird object which is not a list of documents
Asked
Active
Viewed 537 times
2

Samuel Nihoul
- 60
- 11
1 Answers
2
Match('fooIndex')
returns a SetRef
. You would have to Map
,Paginate
the result SetRef
and pass to a Lambda
to Get
the documents.
This should do to get 100 documents.
Map(Paginate(Match('fooIndex'),{size:100}),Lambda("x",Get(Var("x"))))

Jay
- 91
- 1