I have Titan (with embedded cassandra running on my system).
cd titan-cassandra-0.3.1
bin/titan.sh config/titan-server-rexster.xml config/titan-server-cassandra.properties
I have rexster server running
cd rexster-console-2.3.0
bin/rexster-console.sh
I have installed bulbs on my system as follows.
sudo apt-get install python2.7-dev
sudo apt-get install libyaml-dev
sudo pip install https://github.com/espeed/bulbs/tarball/master
If I try the following from python code on my machine I run the following.
from bulbs.titan import Graph
g = Graph()
switch = g.vertices.create(name="switch")
device = g.vertices.create(name="device")
g.edges.create(switch, "connected to", device)
My question is How do I know if the vertices with the above names have been created by querying the groovy command line in rexster?