Pregunta a l'IA
Hola! Pregunta'm qualsevol cosa
Useful queries
Typified vs non-typified

Properties like phase or type are typified, accepting only certain values. Some of these queries will help you get the valid values from a specific property.

Non-typified properties, like name or title, are expected to be all different.

Possible values of contact's type

g.V().hasLabel('contact').values('type').dedup()

Possible values of dossier's phase

g.V().hasLabel('dossier').values('phase').dedup()