Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经在我的应用程序中使用字段名称和姓氏创建了一个带有库图的实体,我已经插入了一条记录 perfetto 现在我如何才能从实体中仅获取一个名称?谢谢翁贝托
你的问题不是很清楚。我认为您想在 Graph 中搜索具有属性键的实体,对吗?如果是这样,这就是您要寻找的东西。
let graph: Graph = Graph() let collection: Array<Entity> = graph.searchForEntity(properties: [(key: "name", value: nil)])
该集合将包含所有具有属性键的实体name。
name