I understand that there are examples on how to use CQL to add data that can later be accessed through Gremlin, e.g., here. (This link looks like a duplicate more or less?). However, I am having trouble finding in depth documentation. Is there somewhere to learn more about how CQL commands map to their Gremlin equivalents? Thanks
UPDATE:
I'm adding more detail to clarify my question, hopefully this helps.
Specifically I'm wondering:
1. Is there documentation for the CQL commands that interact with Graph? E.g.,
WITH VERTEX LABEL ... WITH EDGE LABEL ... FROM ... TO graph_engine = ...
Is there somewhere that I can see all the options and parameters for these CQL commands? Maybe there's java docs, or other documentation somewhere?
2. And related to that, where can I find details on the requirements for the Cassandra tables that are generated by Gremlin queries?
E.g., I recently found out that the table that has an EDGE LABEL needs to have its primary key be a combination of the primary keys of the LABELs. Of course this makes sense intuitively, and the examples given in the docs demonstrate what it looks like, but they don't always describe what is necessary vs best practice vs what they just happened to do for this example. Is there a reference I can look at that gives more details on this?
I'm mostly looking for reference material/documentation, thanks.