Skip to content

Instantly share code, notes, and snippets.

@tjackiw
Created December 18, 2012 23:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tjackiw/4333111 to your computer and use it in GitHub Desktop.
Save tjackiw/4333111 to your computer and use it in GitHub Desktop.
Using a Graph Database with Ruby. Part II: Integration
me = User.create(name: 'Me', age: 31)
bob = User.create(name: 'Bob', age: 29)
mark = User.create(name: 'Mark', age: 34)
mary = User.create(name: 'Mary', age: 32)
john = User.create(name: 'John', age: 33)
andy = User.create(name: 'Andy', age: 31)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment