Search by property

Jump to navigation Jump to search

This page provides a simple browsing interface for finding entities described by a property and a named value. Other available search interfaces include the page property search, and the ask query builder.

Search by property

A list of all pages that have property "Step text" with value "determines whether there are available results". Since there have been only a few results, also nearby values are displayed.

Showing below up to 40 results starting with #1.

View (previous 50 | next 50) (20 | 50 | 100 | 250 | 500)


    

List of results

    • Gremlin  + (determines whether there are available results)
    • Gremlin  + (ensures that all provided traversals yield a result)
    • Gremlin  + (ensures that at least one of the provided traversals yield a result.)
    • Gremlin  + (fill(collection) will put all results in the provided collection and return the collection when complete.)
    • Gremlin  + (filters elements that fullfill the given predicate. Variant: Filters elements that are equal to the given Object.)
    • Gremlin  + (filters the current object based on eitherfilters 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.[[#select Step|select()-step]], but can be used in isolation.)
    • Gremlin  + (filters vertices, edges, and vertex properties based on their properties. This step has quite a few variations.)
    • Gremlin  + (is not a real step, but a "step modulator" similar to by() and option(). With as(), it is possible to provide a label to the step that can later be accessed by steps and data structures that make use of such labels — e.g., select(), match(), and path)
    • Gremlin  + (is not an actual step, but instead is a "sis 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.while others can take an arbitrary amount.)
    • Gremlin  + (is not an actual step, but is instead a step modulator for [[#repeat Step|repeat()]] (find more documentation on the emit() there).)
    • Gremlin  + (is used for looping over a traversal given some break predicate)
    • Gremlin  + (is used to add edges to the graph)
    • Gremlin  + (is used to add properties to the elements of the graph)
    • Gremlin  + (is used to add vertices to the graph)
    • Gremlin  + (is used to aggregate all the objects at a particular point of traversal into a Collection)
    • Gremlin  + (maps the current edges to both the ingoing and outgoing Vertices.)
    • Gremlin  + (maps the current edges to the the ingoing Vertices.)
    • Gremlin  + (maps the current elements to both the in and outgoing edges.)
    • Gremlin  + (maps the current elements to the the ingoing edges.)
    • Gremlin  + (maps the current elements to the the outgoing edges.)
    • Gremlin  + (maps the current elements to the vertices at the end of the ingoing edges.)
    • Gremlin  + (maps the current elements to the vertices at the boths ends of the edges.)
    • Gremlin  + (maps the current elements to the vertices at the end of the outgoing edges.)
    • Gremlin  + (maps the traversal to the ids of the current elements.)
    • Gremlin  + (maps the traversal to the labels of the current elements.)
    • Gremlin  + (operates on a stream of comparable objects and determines which is the first object according to its natural order in the stream.)
    • Gremlin  + (operates on a stream of comparable objects and determines which is the last object according to its natural order in the stream.)
    • Gremlin  + (operates on a stream of numbers and determines the average of those numbers.)
    • Gremlin  + (operates on a stream of numbers and sums the numbers together to yield a result)
    • Gremlin  + (orders the traversal elements)
    • Gremlin  + (performs some operation on the traverser and passes it to the next step.)
    • Gremlin  + (randomly filters out traversers with the given probability)
    • Gremlin  + (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.)
    • Gremlin  + (see https://stackoverflow.com/questions/55609832/is-threre-a-document-about-how-gremlin-match-works)
    • Gremlin  + (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)
    • Gremlin  + (transforms the current step in a one to many fashion.)
    • Gremlin  + (will return a TraversalExplanation. A travwill return a TraversalExplanation. A traversal explanation details how the traversal (prior to explain()) will be compiled given the registered traversal strategies. A TraversalExplanation has a toString() representation with 3-columns. The first column is the traversal strategy being applied. The second column is the traversal strategy category: [D]ecoration, [O]ptimization, [P]rovider optimization, [F]inalization, and [V]erification. Finally, the third column is the state of the traversal post strategy application. The final traversal is the resultant execution plan.traversal is the resultant execution plan.)
    • Gremlin  + (will return all results in a list)
    • Gremlin  + (will return all results in a set and thus, duplicates removed)
    • Gremlin  + (will return all results in a weighted set and thus, duplicates preserved via weighting)