ldbc/ldbc_snb_docs

Person-hasInterest-Tag and Forum-hasTag-Tag have a cardinality of 1..* instead of 0..*

szarnyasg opened this issue · 2 comments

There are many Messages without Tags but no Forums and no Persons (without Tag interests).

To validate on the data sets, run:

match (f:Forum)
where not (f)-[:HAS_TAG]->(:Tag)
return f
match (p:Person)
where not (p)-[:HAS_INTEREST]->(:Tag)
return p

These both return empty results.