Advanced Use
Last updated
Was this helpful?
Was this helpful?
./cayley repl -c cayley_overview.ymlcayley> :a subject predicate object label .cayley> :d subject predicate object .// Simple math
cayley> 2 + 2
// JavaScript syntax
cayley> x = 2 * 8
cayley> x
// See all the entities in this small follow graph.
cayley> graph.Vertex().All()
// See only dani.
cayley> graph.Vertex("<dani>").All()
// See who dani follows.
cayley> graph.Vertex("<dani>").Out("<follows>").All()./cayley http -c cayley_overview.ymllistening on :64210, web interface at http://localhost:64210./cayley http --config=cayley.cfg.overview --host=0.0.0.0:64210