Skip to content

Commit

Permalink
fixes #41 - allow UUID to accept a string as a parameter (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
billysometimes committed May 27, 2016
1 parent 86c3b21 commit 7641423
Show file tree
Hide file tree
Showing 3 changed files with 128 additions and 116 deletions.
6 changes: 6 additions & 0 deletions example.dart
Original file line number Diff line number Diff line change
Expand Up @@ -621,6 +621,12 @@ exampleCommands(conn) {

/**for more information check out the rethinkdb javascript API.**/

/** uuid returns a uuid string**/
//r.uuid().run(conn).then((response) => print(response));

/**you can pass uuid a string and it will return the SHA-1 hash**/
//r.uuid('foo').run(conn).then((response) => print(response));

/**binary**/
//r.binary("this data in binary").run(conn).then((response)=>print(response));
}
Loading

0 comments on commit 7641423

Please sign in to comment.