Hello,
I have this two request with apoc :
CALL apoc.path.expandConfig(start, {
relationshipFilter: "A|B>",
labelFilter: "-C",
maxLevel: 6,
minLevel: 1,
uniqueness: 'NODE_PATH',
endNodes:[end]}) YIELD path
RETURN path;
it work perfectly but i have a...