Property:Step text

From BITPlan Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
Property
edit
name  text
label  text
type  Special:Types/Text→Special:Types/Text
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→Concept:Step

Text This is a Property with type Special:Types/Text

Showing 20 pages using this property.
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  +
is used for looping over a traversal given some break predicate  +
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.  +
will return an Optional and thus, is a composite of hasNext()/next()  +
maps the current edges to both the ingoing and outgoing Vertices.  +
maps the current elements to the the ingoing edges.  +
maps the current elements to the vertices at the end of the outgoing edges.  +
The outV step maps the current edges to the outgoing Vertices.  +
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.  +
operates on a stream of numbers and sums the numbers together to yield a result  +
maps the current elements to the vertices at the end of the ingoing edges.  +
ensures that at least one of the provided traversals yield a result.  +
is not an actual step, but is instead a step modulator for [[#repeat Step|repeat()]] (find more documentation on the emit() there).  +
maps the current edges to the the ingoing Vertices.  +
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.  +
is used to add vertices to the graph  +
Splits the traverser  +
maps the traversal to the labels of the current elements.  +
is used to add properties to the elements of the graph  +