Property:Step text
Jump to navigation
Jump to search
Property | |
---|---|
edit | |
name | text |
label | text |
type | Special:Types/Text→Special:Types/Text |
scope | |
index | 4 |
sortPos | |
primaryKey | false |
mandatory | false |
namespace | |
size | |
uploadable | false |
defaultValue | |
inputType | |
allowedValues | |
documentation | the description according to the Apache Tinkerpop documentation |
values_from | |
externalFormatterURI | |
showInGrid | |
isLink | false |
nullable | |
topic | Concept:Step→Step |
Text This is a Property with type Special:Types/Text
G
transforms the current step element to a new element (which may be empty).
see also https://stackoverflow.com/questions/51015636/in-gremlin-how-does-map-really-work +
routes the current traverser to a particular traversal branch option. With choose(), it is possible to implement if/then/else-semantics as well as more complicated selections. +
is not an actual step, but instead is a "step-modulator" similar to as() and option(). If a step is able to accept traversals, functions, comparators, etc. then by() is the means by which they are added. The general pattern is step().by()…by(). Some steps can only accept one by() while others can take an arbitrary amount. +
is not an actual step, but is instead a step modulator for [[#repeat Step|repeat()]] (find more documentation on the emit() there). +
can only be used with remote traversals to Gremlin Server or RGPs. It starts a promise to execute a function on the current Traversal that will be completed in the future. +
filters the current object based on either the object itself (Scope.local) or the path history of the object (Scope.global) (filter). This step is typically used in conjunction with either [[#match Step]] or [[#select Step|select()-step]], but can be used in isolation. +