Github user pluradj commented on the pull request:

    
https://github.com/apache/incubator-tinkerpop/pull/308#issuecomment-218965743
  
    I was able to get the graph to render in Gephi. I'm running Gephi 0.9.1 on 
Mac. Applying the layout and fiddling with the viz properties worked fine.
    
    Running the visual traversal didn't seem to do anything. I didn't see any 
event changes flowing through the graph. Here's is the Gremlin Console for 
those steps:
    
    ```
    gremlin> :remote config visualTraversal graph
    ==>Connection to Gephi - http://localhost:8080/workspace2 with 
stepDelay:1000, startRGBColor:[0.0, 1.0, 0.5], colorToFade:g, 
colorFadeRate:0.7, startSize:3.0,sizeDecrementRate:0.33
    gremlin> traversal = g.V(2).in().out('knows').has('age', 
gt(30)).outE('created').has('weight', gt(0.5d)).inV();null
    ==>null
    gremlin> :> traversal
    ==>v[5]
    ==>false
    ```
    
    Some other comments for the docs:
    1. The default workspace is now `workspace1`. This should be updated in a 
couple spots.
    2. In the traversal example, the trailing `;null` is important to prevent 
the auto-iteration, right? If so, the docs should call this out specifically as 
a footnote.
    3. `visualTraversal` should appear in the `:remote config` parameters table.
    4. There doesn't seem to be a good way to see the existing configuration 
values. `:remote config visualTraversal graph` displays all config values 
(except `visualTraversal`), but maybe it might be better if for example 
`:remote config workspace` with no arguments would return the current value.
    5. Along the same lines, `:remote config help` might be nice to let the 
user know what parameters can be configured.



---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to