You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Jen Hammock edited this page Nov 1, 2019
·
2 revisions
Term tree
MATCH (child:Term)-[rel:parent_term|:synonym_of]->(parent:Term)
RETURN DISTINCT child.name, parent.name
LIMIT 10000;
Terms not in use
MATCH (t:Term)
WHERE NOT (:Trait)-->(t) AND (t)<-[rel:parent_term|:synonym_of]->(:Term) AND (:MetaData)-->(t)
RETURN DISTINCT t.name, t.uri
LIMIT 1000;
Orphan terms
MATCH (t:Term)
WHERE NOT (t)--(:Term)
RETURN DISTINCT t.name, t.uri
LIMIT 1000;