本文整理匯總了TypeScript中@connections/shared/schema-node.model.SchemaNode.getMaxLevels方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript model.SchemaNode.getMaxLevels方法的具體用法?TypeScript model.SchemaNode.getMaxLevels怎麽用?TypeScript model.SchemaNode.getMaxLevels使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類@connections/shared/schema-node.model.SchemaNode
的用法示例。
在下文中一共展示了model.SchemaNode.getMaxLevels方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: it
it("should create, root with 2 children", () => {
console.log("========== [SchemaNode] should create, root with 2 children");
schemaNode = SchemaNode.create(
{
"name": "restaurants",
"type": "collection",
"path": "collection=restaurants",
"connectionName": "conn1",
"queryable": true,
"children": [
{
"name": "grades",
"type": "embedded",
"path": "collection=restaurants/embedded=grades",
"connectionName": "conn1",
"queryable": true,
"children": []
},
{
"name": "address",
"type": "embedded",
"path": "collection=restaurants/embedded=address",
"connectionName": "conn1",
"queryable": true,
"children": []
},
],
});
expect(schemaNode.getName()).toEqual("restaurants");
expect(schemaNode.getType()).toEqual("collection");
expect(schemaNode.getPath()).toEqual("collection=restaurants");
expect(schemaNode.getConnectionName()).toEqual("conn1");
expect(schemaNode.isQueryable()).toEqual(true);
expect(schemaNode.getMaxLevels()).toEqual(2);
expect(schemaNode.getChildren().length).toEqual(2);
expect(schemaNode.getChildren()[0].getName()).toEqual("grades");
expect(schemaNode.getChildren()[0].getType()).toEqual("embedded");
expect(schemaNode.getChildren()[0].getPath()).toEqual("collection=restaurants/embedded=grades");
expect(schemaNode.getChildren()[0].getConnectionName()).toEqual("conn1");
expect(schemaNode.getChildren()[0].isQueryable()).toEqual(true);
expect(schemaNode.getChildren()[0].getMaxLevels()).toEqual(1);
expect(schemaNode.getChildren()[0].getChildren().length).toEqual(0);
expect(schemaNode.getChildren()[1].getName()).toEqual("address");
expect(schemaNode.getChildren()[1].getType()).toEqual("embedded");
expect(schemaNode.getChildren()[1].getPath()).toEqual("collection=restaurants/embedded=address");
expect(schemaNode.getChildren()[1].getConnectionName()).toEqual("conn1");
expect(schemaNode.getChildren()[1].isQueryable()).toEqual(true);
expect(schemaNode.getChildren()[1].getMaxLevels()).toEqual(1);
expect(schemaNode.getChildren()[1].getChildren().length).toEqual(0);
});