启动思维地图并连接Graql shell后,我尝试添加一个类型和一个实例:
insert person isa entity-type;
insert 'carl' isa person;
然而,当我打开可视化工具时,我无法看到类型或实例。
如果我在shell中运行匹配查询,我可以很好地看到它。
答案 0 :(得分:1)
对于您在Graql Shell中编写的每个insert
或delete
查询,您需要在结尾处编写commit
命令。只有这样,您的类型或实例才会在图表中保留。
所以在你的情况下,它将是:
insert person isa entity-type;
insert 'carl' isa person;
commit