Hello Everybody.
Im building a query to collect info from all the nodes in Orion.Nodes.
I think pagination would be in order to decrease the chance the reply will timeout.
I found that you can do pagination like this with SWQL:
SELECT NodeID, Status, Caption
FROM Orion.Nodes
ORDER BY NodeID
WITH ROWS 1 TO 1000
But how do you find out what the highest NodeID is that you need to query to.