GDS native projection - multi labels node support?

Does GDS 2.5 native projection support projecting nodes who must have a set of labels ?

As an example, given these nodes
(n1:A)
(n2:B)
(n3:A:B)

Is it possible to only project the node n3 having both labels A and B?

the label semantics in native projection loads nodes with any of these labels.
For your case, you need to use cypher projection.
Theoretically, you could also do native + graph.filter, but I doubt its faster and also takes more memory.

1 Like