Rercherche par attribut partiel de molécule
Langage métier: Donne-moi les molécules dans emolgine dont l’inchikey commence par “AATM”
Cypher: MATCH (mol:Molecule) WHERE mol.id STARTS WITH “AATM” RETURN mol

Rercherche par attribut partiel de cluster_mol_site
Langage métier: Donne-moi les cluster_mol_site associés au minhash (5,49,37,132,66)
Cypher: MATCH (c:Cluster_mol_site) WHERE c.id STARTS WITH “5a49a37a54a132a66” RETURN c

MATCH r=(csite:Cluster_mol_site)-[:IN_DB]->(cdb:Cluster_mol_db) WHERE cdb.id ENDS WITH “ambinter” RETURN r LIMIT 20
