I'm issuing AQL via:
I read this post about randomly select a document, but I need a query to select multiple document each time!
please help!
Just increase the limit, e.g. return 20 random documents from collection nodes:
FOR node IN nodes
SORT RAND()
LIMIT 20
RETURN node
please see https://docs.arangodb.com/3.0/AQL/Operations/Limit.html for more details.
@Simran-B , @dothebart : thanks a lot guys...