graql

    3熱度

    1回答

    我已經開始嘗試使用java api來自動化一些工作。有沒有一種簡單的方法可以將我可以在Visualizer和Shell上運行的graql查詢轉換爲可以與java api一起使用的查詢。 例如查詢: match $x isa product 我看到,我可以寫爲 match(var("x").isa("product")); 有沒有辦法來映射字符串格式自動java的格式? 我覺得我缺少一些簡單

    1熱度

    1回答

    Var message = var().isa("message"); insert(message).execute(); Var relation = var().isa("connection") .rel("role1", id("existing-id")) .rel("role2", message); insert(relation).execute();

    2熱度

    2回答

    我有一個只有幾個頂點的小圖。如何使用graql打印出圖中所有的頂點?

    0熱度

    1回答

    啓動思維導圖,並與Graql外殼連接,我嘗試添加一個類型和實例後: insert person isa entity-type; insert 'carl' isa person; 然而,當我打開了Visualiser的我做不到請參閱類型或實例。 如果我在shell中運行匹配查詢,我可以看到它很好。

    1熱度

    1回答

    我創建了以下簡單的模式: insert name sub resource datatype string; id sub resource datatype string; person sub entity has name has id; 和數據: insert $x isa person has name "Bob" has id bob; 我怎樣才能得到我已經附加到實體上