Skip to main content
Version: 3.0

CallQueryComponent 数据查询

结构声明

interface CallQueryComponent {
"concept": "CallQueryComponent", // 产品概念
"typeAnnotation": TypeAnnotation, // 类型
"select": QuerySelectExpression, // select
"from": QueryFromExpression, // from
"where": LogicItem, // where
"wherePlayground": Array<LogicItem>, // where 草稿态
"groupBy": Array<QueryGroupByExpression>, // groupBy
"having": LogicItem, // having
"havingPlayground": Array<LogicItem>, // having 草稿态
"orderBy": Array<QueryOrderByExpression>, // orderBy
"limit": QueryLimitExpression, // limit
"ideVersion": string, // 查询组件的局部版本,值为上线时的 IDE 版本
}

示例

简单示例

{
"concept": "CallQueryComponent",
"typeAnnotation": null,
"select": null,
"from": null,
"where": null,
"wherePlayground": [],
"groupBy": [],
"having": null,
"havingPlayground": [],
"orderBy": [],
"limit": null,
"ideVersion": null
}