在Hyperledger Composer中查询简单数据

时间:2018-05-10 07:41:12

标签: hyperledger hyperledger-composer

我的结构定义如下:

concept Data
{
  o Double Temp
  o Double Hum
}


asset Reading identified by ReadingID
{
    o String ReadingID
    o String DeviceID
    o Integer Time
    o Data Data
}

在Composer中,我可以在不编码的情况下搜索ReadingID,因为它是“主键”,并且会自动定义此查询。

但是,如果我想检索所有资产,使用相同的DeviceID检索“读取”,我的意思是,使用DeviceID进行查询,我该怎么办?我正在阅读教程,但没有使用基本类型查询的示例,如String。

1 个答案:

答案 0 :(得分:1)

正确,你可以做到这一点 - 所以,(为了他人的利益'阅读'这个)你可以在queries.qry文件中定义一个查询:

例如

query selectReading {
  description: "my query"
  statement:
      SELECT org.acme.biznet.Reading
          WHERE (DeviceID ==_$device_id)
}


return query('selectReading', {device_id: device} )
// return query('selectReading', {device_id: '1234567'} )
        .then(function (results) {


           for (var n = 0; n < results.length; n++) {
            // process array of results
           }
       });

等。上面的device是脚本文件中的var或等等。