Construct the final search (this may happen automatically with most search handlers).
This may optimize the search.
only returns the elements that match the given filter.
first either returns the first element of the search or nothing, if no elements are present.
index returns the element at the given index if it exists
last either returns the last element of the search or nothing, if no elements are present.
merge combines the search results with those of another search.
select returns only the elements at the given indices.
Rest
...select: Selectskip returns all elements of the search except the first count
ones.
tail returns all elements of the search except the first one.
take returns the first count
elements of the search.
Allows you to construct a search query from a FlowrSearchGeneratorNode. Please use the Q object to create an object of this class! In the end, you can freeze the search by calling FlowrSearchBuilder#build, however, the search executors may do that for you.
See