我是hyperledger的初学者。我想从Asset of Car中检索所有数据,以便在hyperledger composer中的javascript文件中执行某些操作。我不需要逐个输入资产车的ID。我该怎么办?
的模型
participant Car identified by participant id{
o String id
o String name
}
asset CarAsset identified by id{
o String id
o String type
}
transaction CarTransaction{
--> UserAsset asset
//what can i do in here?
}
交易
function carTransaction(tx){
//what can i do in here?
}
答案 0 :(得分:1)
如果您想要所有汽车的数据,您可以编写查询并在交易功能中使用它
query.qry
query select Cars {
description: "Select all cars"
statement:
SELECT <your namespace>.Car
}
查看此查询tutorial可能会有所帮助