diff --git a/rethinkdb-client-driver.cabal b/rethinkdb-client-driver.cabal
--- a/rethinkdb-client-driver.cabal
+++ b/rethinkdb-client-driver.cabal
@@ -1,5 +1,5 @@
 name:                   rethinkdb-client-driver
-version:                0.0.7
+version:                0.0.8
 license:                MIT
 license-file:           LICENSE
 author:                 Tomas Carnecky
diff --git a/src/Database/RethinkDB/Types.hs b/src/Database/RethinkDB/Types.hs
--- a/src/Database/RethinkDB/Types.hs
+++ b/src/Database/RethinkDB/Types.hs
@@ -440,6 +440,9 @@
     Limit :: (IsSequence s) => Double -> Exp s -> Exp s
     -- ^ Limit the number of items in the sequence.
 
+    Nth :: (IsSequence s, IsDatum r) => Double -> Exp s -> Exp r
+    -- ^ Return the n-th element in the sequence.
+
     UUID :: Exp Text
     -- ^ An expression which when evaluated will generate a fresh UUID (in its
     -- standard string encoding).
@@ -623,6 +626,9 @@
 
     toTerm (Limit n s) =
         simpleTerm 71 [SomeExp s, SomeExp (lift n)]
+
+    toTerm (Nth n s) =
+        simpleTerm 45 [SomeExp s, SomeExp (lift n)]
 
     toTerm UUID =
         noargTerm 169
