首页 > 其他分享 >飞步fireboom 不同库关联查询

飞步fireboom 不同库关联查询

时间:2023-06-07 12:24:33浏览次数:38  
标签:name iot fireboom 查询 tid device id tenant 飞步

fireboom 关联查询 demo 列表

query MyQuery($skip: Int = 10, $take: Int = 10,$tid:Int) {
 list: iot_device_bill_findManydevice_information(skip: $skip, take: $take) {
   tenant_id @export(as:"tid")
   tenant_info:_join{
     data:iot_core_findFirstsys_tenant (where:{tenant_id:{equals:$tid}}) @transform(get:"tenant_name"){
       tenant_name
     }
   }
   start_time
   device_name
   device_id
   device_code
   id
   del_flag
 }
 count: iot_device_bill_aggregatedevice_information @transform(get: "_count._all") {
   _count {
     _all
   }
 }
}

详情

query MyQuery($id: String = "",$tid:Int) {
  iot_device_bill_findFirstdevice_information(where: {id: {equals: $id}}) {
    device_code
    device_id
    device_name
    create_time
    description
    id
    location
    location_id
    online
    pro_id
    pro_name
    tenant_id @export(as:"tid")
    zuhu:_join{
      zuhuinfo:iot_core_findFirstsys_tenant(where:{tenant_id:{equals:$tid}}) {
        tenant_name
        tenant_type
       
      }
    }
  }
}

标签:name,iot,fireboom,查询,tid,device,id,tenant,飞步
From: https://www.cnblogs.com/freefei/p/17462975.html

相关文章

  • mysql 查询故障排查之字符集的锅
    在查询优化的处理中,一般想到的是在对应关联字段上增加对应索引来加快访问速度.但有时加了索引,即使是唯一索引也无法提高查询速度. descselectxxx;查看对应自行计划,使用了索引,但是对应的耗时却特别的高. descformat=jsonselectxxxx;查看具体的消耗发现在表字段关联的......
  • 【HMS Core】Health Kit查询历史数据查询数据和返回数据不一致
    【问题描述】查询一个月运动记录,只能查询到最早5月26的数据,但是华为健康app里的数据最早为5月8日,为什么会查询不到?【解决方案】1、需要检查是否申请了历史数据权限,查询数据时,出于对用户的数据保护,只允许开发者查询在用户授权之后的数据。例如用户是在2022年2月14日授权,那么2022年2......
  • 【HMS Core】Health Kit查询历史数据查询数据和返回数据不一致
    【问题描述】查询一个月运动记录,只能查询到最早5月26的数据,但是华为健康app里的数据最早为5月8日,为什么会查询不到? 【解决方案】1、需要检查是否申请了历史数据权限,查询数据时,出于对用户的数据保护,只允许开发者查询在用户授权之后的数据。例如用户是在2022年2月14日授权,那么2......
  • 时间查询
    SELECT*FROMsys_logininforWHEREdate_trunc('day',access_time)=to_timestamp('2023-06-0510:10:10','yyyy-mm-dd');--2023-01-0100:00:00+002023-06-0100:00:00+002023-06-0700:00:00+00selectdate_trunc('year',......
  • elasticsearch查询
    elasticsearch查询,elasticsearch常见查询,elasticsearch命令elasticsearch常用命令1、查询索引GET_cat/indices 2、查看es磁盘使用情况GET_cat/allocation?v&pretty 3、查看es分词情况GET_analyze{"text":"中国"}elasticsearch常用查询查询基本语法,所......
  • Gorm - sql查询某个字段为空时赋默认值
    场景:查询时报错err{"error":"sql:Scanerroroncolumnindex0,name\"mobile\":convertingNULLtostringisunsupported"}总结:根据项目需要,在数据库查询时,可能需要对查询结果进行封装,为避免前端抛出空指针异常(NullPointException),对于没有值的字段也不能......
  • MYSQL联合查询
       ......
  • MYSQL查询
         子查询   分页查询 ......
  • MYSQL分页查询
          ......
  • SQL 跨库查询
    --1.openrowset--查询select*fromopenrowset('SQLOLEDB','sql服务器名';'用户名';'密码',数据库名.dbo.表名)--生成本地表select*into表fromopenrowset('SQLOLEDB','sql服务器名';'用户名';'密码&......