neo4j从一个返回组合数组

w41d8nur  于 2021-07-23  发布在  Java
关注(0)|答案(1)|浏览(343)

我有一个简单的节点对象。

@Id
    @GeneratedValue
    private Long id;

    private String text;

    @Relationship(type = "CONTAINS")
    private Entry entry;

    @Relationship(type = "ATTACHED_TO", direction = Relationship.INCOMING)
    private Set<ContentAttachment> attachments = new HashSet<ContentAttachment>();

我需要的是返回所有contentattachment id的1个数组。所以match(t:texteditorcontent)返回t.attachments.ids。这将返回一个数组,我希望所有的ID都在一个组合数组中。有没有一种方法可以对查询本身执行此操作?

06odsfpq

06odsfpq1#

我太蠢了,我只需要匹配contentattachment并返回id。

相关问题