I'm trying to execute this query with HL Composer v0.19.4. But it always returns an empty array[].
query getTransactionsBetweenIntervalMadeByParticipant{
description: "Get all transactions made by participant between an interval"
statement:
SELECT org.hyperledger.composer.system.HistorianRecord
WHERE ((participantInvoking==_$participantInvoking) AND (_$fromTime>transactionTimestamp) AND (_$toTime<transactionTimestamp))
Which is the right format of the timestamp that must be passed to the query?
(I tried with "yyyy-MM-ddTHH:mm:ss.zzz" and with Unix timestamp but didn't work).