Skip to content

Commit

Permalink
Fix placeholder
Browse files Browse the repository at this point in the history
  • Loading branch information
ryn5 committed Sep 29, 2023
1 parent e5583ee commit 762af3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gremlin-javascript/example/example.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ async function basicGremlinExample() {
// Basic Gremlin: adding and retrieving data
const v1 = await g.addV('person').property('name','marko').next();
const v2 = await g.addV('person').property('name','stephen').next();
const v3 = await g.addV('person').property('name','fwefwefwe').next();
const v3 = await g.addV('person').property('name','vadas').next();


// Be sure to use a terminating step like next() or iterate() so that the traversal "executes"
Expand Down

0 comments on commit 762af3b

Please sign in to comment.