Pierre, thanks for pointing it out! Fixed in https://github.com/neo4j/community/commit/d7b442e14461e9256a1747adca3d4128466089a5
Cheers, /peter neubauer GTalk: neubauer.peter Skype peter.neubauer Phone +46 704 106975 LinkedIn http://www.linkedin.com/in/neubauer Twitter http://twitter.com/peterneubauer http://www.neo4j.org - Your high performance graph database. http://startupbootcamp.org/ - Öresund - Innovation happens HERE. http://www.thoughtmade.com - Scandinavia's coolest Bring-a-Thing party. On Thu, Jun 9, 2011 at 3:00 PM, Pierre De Wilde <[email protected]> wrote: > Hi, > > I have noticed a subtle typo in webadmin console cheat sheet ( > http://localhost:7474/webadmin/#/console/): > > Create relation > >> myRelation = g.addEdge(edgeProps, refNode, secondNode, 'KNOWS') > > > will create the edge without the properties. The correct syntax is: > > > Create relation > >> myRelation = g.addEdge(refNode, secondNode, 'KNOWS', edgeProps) > > See > https://github.com/tinkerpop/gremlin/blob/master/src/main/groovy/com/tinkerpop/gremlin/loaders/GraphLoader.groovy > for supported .addEdges() definitions. > > Pierre > _______________________________________________ > Neo4j mailing list > [email protected] > https://lists.neo4j.org/mailman/listinfo/user > _______________________________________________ Neo4j mailing list [email protected] https://lists.neo4j.org/mailman/listinfo/user

