You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tinkerpop.apache.org by spmallette <gi...@git.apache.org> on 2018/09/24 23:27:39 UTC

[GitHub] tinkerpop issue #938: Add link to Elixir language driver

Github user spmallette commented on the issue:

    https://github.com/apache/tinkerpop/pull/938
  
    
    @samhavens  First, thanks for making us aware of this. Second, I've started a thread on the dev mailing list to call attention to this (all web site changes go through community discussion over there) - you can see the thread here:
    
    https://lists.apache.org/thread.html/6172f72fea030a0c46f983eda42321b7c4a958bed6038fe676990fc2@%3Cdev.tinkerpop.apache.org%3E
    
    Third, could you please edit your README (and perhaps even the project description) to mention "Apache TinkerPop™".  
    
    Finally, do you have a more complex example of Gremlin in Elixer? I'd love to see more of the syntax - I looked at the tests, but I didn't see a nice sized query - preferably using the "modern" graph for context.  Even if it's not all working yet, could you demonstrate what this would look like:
    
    ```
    g.V().has("name","marko").        
      out("knows").                     
      out("knows").
      values("name") 
    ```
    
    and maybe:
    
    ```
     g.V().match(
          as("a").out("knows").as("b"),
          as("a").out("created").as("c"),
          as("b").out("created").as("c"),
          as("c").in("created").count().is(2)).
            select("c").by("name")
    ```


---