有一种方法可以检索表格中的所有字段吗?
我需要提供一个系统,用户可以在该系统中为某个表创建自定义字段
我尝试了这个,但意外崩溃了
let db : Graph = Graph()
let test = Entity(type: "test", graph: db)
test["field1"] = "test1"
test["field2"] = "test2"
test["field3"] = "test3"
let dict = test.properties
dump(dict.keys) // <- crash here, unexpectedly found nil when bla bla
谢谢