import { ExpressionNode, LOGIC_TYPE } from '../LogicItem'; import { CallInterParam } from './CallInterParam'; /** * 数据查询 * @TODO: 当前类目前主要用于生成文档 */ export declare class CallGraphQL extends ExpressionNode { /** * 逻辑节点类型 */ readonly type: LOGIC_TYPE; /** * Code */ readonly schemaRef: string; /** * Code */ readonly operationName: string; /** * 跳转页面参数 */ readonly params: Array; /** * 生成 JS 脚本 */ toScript(): string; }