We are using this lib to query dse graph. https://github.com/mpollmeier/gremlin-scala
we can query and get vertex using vertexId if vertex primary key just single key like UUID. for
ex. g.V("veretxId=UUID,~label=vertexLabel")
But if vertex primary key is made composite keys for
ex.addressTD : UUId postCode: Int sName: String lName: String.
now vertex primary key is composite key of these four values.
Now if query in Datastax Studio and get vertex using this query
g.V("{sName=\"TREVALLYN\",lName=\"TREVALLYN\",~label=tasLabel,postCode=7250,addressID=ad71d33c-0aaa-4014-a381-c189c30d45c5}")
it will return vertex in datastax studio.
While using https://github.com/mpollmeier/gremlin-scala this lib. Its seems it is not working. I am sending vertexId in a prescribed format like this
"{sName=\"TREVALLYN\",lName=\"TREVALLYN\",~label=tasLabel,postCode=7250,addressID=ad71d33c-0aaa-4014-a381-c189c30d45c5}"