Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: mgajdosikNo with Output XML node, you will need to create python node for that. Eventually if you know that you can expect only x thousands records, where x is below reasonable amount, you can have a filter node with multiple outputs and use the following syntax to separate the records, and then attach multiple output xml nodes to each of the output.
output 1 {
emit * where execCount<=1000
}
output 2 {
emit * where execCount>1000 and execCount<=2000
}
etc
Marek