Tools, FAQ, Tutorials:
Hyperledger Composer Access Query File
What Is Hyperledger Composer Query File (*.qry)?
✍: FYIcenter.com
A Hyperledger Composer Query file
is a source code file that define queries to
retrieve business objects from the Business Network.
A access control file uses the Query language and the .qry file extension. Here is an example of an query file from the Fund Clearing Network, queries.qry:
/**
* Queries for Fund Clearing
*/
query TransferRequestsByBankInState {
description: "Select all TransferRequests for a participating bank in a given state"
statement:
SELECT org.clearing.TransferRequest
WHERE (fromBank == _$bank)
}
query TransferRequestsByBanksInState {
description: "Select all TransferRequests for a participating bank in a given state"
statement:
SELECT org.clearing.TransferRequest
WHERE ((fromBank == _$bank1 AND toBank == _$bank2 AND state == _$state) OR (fromBank == _$bank2 AND toBank == _$bank1 AND state == _$state))
}
query BatchTransferRequestById {
description: "Select a BatchTransferRequest by the UUID"
statement:
SELECT org.clearing.BatchTransferRequest
WHERE (_$batchId == batchId)
}
query BatchTransferRequestsByBankInState {
description: "Select all BatchTransferRequests in a given state for a participating bank"
statement:
SELECT org.clearing.BatchTransferRequest
WHERE ((parties CONTAINS _$party) AND (state == _$state))
}
query BatchTransferRequestForBanksInState {
description: "Select all BatchTransferRequests in a given state for two participating banks"
statement:
SELECT org.clearing.BatchTransferRequest
WHERE ((parties CONTAINS [_$bank1, _$bank2]) AND (state == _$state))
}
Â
⇒ Business Network Archive (BNA) File
⇠Hyperledger Composer Access Control File
2020-11-22, ∼1499🔥, 0💬
Popular Posts:
How To Loop through an Array without Using "foreach" in PHP? PHP offers the following functions to a...
How to create a new API on the Publisher Dashboard of an Azure API Management Service? If you are ne...
How to use the JSON to XML Conversion Tool at freeformatter.com? If you want to try the JSON to XML ...
How to add an API to an API product for internal testing on the Publisher Portal of an Azure API Man...
How To Truncate an Array in PHP? If you want to remove a chunk of values from an array, you can use ...