Github user okram commented on a diff in the pull request:
https://github.com/apache/tinkerpop/pull/529#discussion_r95351178
--- Diff: docs/src/reference/the-traversal.asciidoc ---
@@ -1916,6 +1916,35 @@ g.V(1).both().both().simplePath()
g.V(1).both().both().simplePath().path()
----
+[[skip-step]]
+Skip Step
+~~~~~~~~~
+
+The `skip()`-step is analogous to <<range-step,`range()`-step>> save that
the higher end range is set to -1.
+
+[gremlin-groovy,modern]
+----
+g.V().skip(2)
+g.V().range(2, -1)
+g.V().skip(2).toString()
--- End diff --
We should not advertise `toString()` as other GLV's don't show compilation
information and in fact, down the line, we will most likely change what
`toString()` shows in Gremlin-Java/Groovy.
I would add an example that uses `order().by(...).skip(x)` so that people
know it skips the first `x` results. For instance, show without `skip(x)`, then
show with `skip(x)` after an `order()`.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---