amazon-archives / dynamodb-janusgraph-storage-backend

The Amazon DynamoDB Storage Backend for JanusGraph
Apache License 2.0
447 stars 99 forks source link

Investigate issues with select() in Graph of Gods walkthrough in Titan #177

Closed amcp closed 7 years ago

amcp commented 7 years ago

167 discovered a discrepancy but it is not clear if the discrepancy is related to JG or not.

pluradj commented 7 years ago

There was a bug in the Titan docs. It is corrected in the JanusGraph docs.

g.V(pluto).out('brother').as('god').out('lives').as('place').select()

should be

g.V(pluto).out('brother').as('god').out('lives').as('place').select('god', 'place')

amcp commented 7 years ago

Closing as the Titan docs were buggy. Thank you @pluradj