Hi
I use Tamino 4.4 with “Tamino API for Java” but I come from Tamino 2.2.
In a query, I have a result of 4000 XML but only need the document from positon >= 300
My first idea is
I’d recommend looking at the XQuery tutorial in the Tamino documentation.
XQuery is significantly different to X-Query.
A lot of XQuery is FLWOR expressions (for/let/where/order/return).
simple example to return all ABC documents:
input()/ABC
to return ABC documents from position 300:
(for $p in input()/ABC return $p)[position() >= 300]