I am trying to run a query like :
query temp{
description: "Find bidder with highest balance"
statement:
SELECT org.dltlabs.auctionModel.Bidder
WHERE (balance > _$balance)
ORDER BY balance
}
I am running a query on Hyperledger composer playground. It gives me an error saying :
Error: Cannot sort on field(s) "balance" when using the default index
How can we sort in the Playground using query or order by?