Using #Cayley as my knowledge graph with #python. (Entities and their relationships are in RDF N-quad format: "subject", "predicate", "object", "label".) But I can barely wrap my head around the Gizmo API syntax. Only simple queries make sense to my tiny brain! Like this returns all the predicates:
`query = graph.V("<predicates>").Out("<are>").All()`
And this returns all the things known about "Bob":
`query = graph.V("Bob").Out().All()`
But what about all predicates for Bob?
🤔