UNPKG

tencentcloud-sdk-nodejs

Version:
50 lines (49 loc) 2.14 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Client = void 0; /* eslint-disable @typescript-eslint/no-unused-vars */ /* * Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ const abstract_client_1 = require("../../../common/abstract_client"); /** * tkgdq client * @class */ class Client extends abstract_client_1.AbstractClient { constructor(clientConfig) { super("tkgdq.tencentcloudapi.com", "2019-04-11", clientConfig); } /** * 输入实体名称,返回实体相关的信息如实体别名、实体英文名、实体详细信息、相关实体等 */ async DescribeEntity(req, cb) { return this.request("DescribeEntity", req, cb); } /** * 三元组查询,主要分为两类,SP查询和PO查询。SP查询表示已知主语和谓语查询宾语,PO查询表示已知宾语和谓语查询主语。每一个SP或PO查询都是一个可独立执行的查询,TQL支持SP查询的嵌套查询,即主语可以是一个嵌套的子查询。其他复杂的三元组查询方法,请参考官网API文档示例。 */ async DescribeTriple(req, cb) { return this.request("DescribeTriple", req, cb); } /** * 输入两个实体,返回两个实体间的关系,例如马化腾与腾讯公司不仅是相关实体,二者还存在隶属关系(马化腾属于腾讯公司)。 */ async DescribeRelation(req, cb) { return this.request("DescribeRelation", req, cb); } } exports.Client = Client;