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.
是否可以构建 JqlQuery,它通过其键返回特定 EntryValueChange 的更改?就像是:
QueryBuilder.byInstanceId(1L, GraphNode.class) .withChangedProperty("data").withChangedKey("test").build()'
如果没有,手动过滤是唯一的选择还是我可以以某种方式扩展服务?
不,您所能做的就是byValueObjectId 在 ValueObject 是 Map 值时使用 Map 键进行查询。
byValueObjectId
例如:
QueryBuilder.byValueObjectId(1, Entity.class, "someMapOfValueObjects/someKey") .build()