Class SubgraphStrategy
Provides a way to limit the view of a ITraversal.
Inherited Members
Namespace: Gremlin.Net.Process.Traversal.Strategy.Decoration
Assembly: Gremlin.Net.dll
Syntax
public class SubgraphStrategy : AbstractTraversalStrategy, ITraversalStrategy, IEquatable<AbstractTraversalStrategy>
Constructors
SubgraphStrategy()
Initializes a new instance of the SubgraphStrategy class.
Declaration
public SubgraphStrategy()
SubgraphStrategy(ITraversal?, ITraversal?, ITraversal?, bool?)
Initializes a new instance of the SubgraphStrategy class.
Declaration
public SubgraphStrategy(ITraversal? vertices = null, ITraversal? edges = null, ITraversal? vertexProperties = null, bool? checkAdjacentVertices = null)
Parameters
Type | Name | Description |
---|---|---|
ITraversal | vertices | Constrains vertices for the ITraversal. |
ITraversal | edges | Constrains edges for the ITraversal. |
ITraversal | vertexProperties | Constrains vertex properties for the ITraversal. |
bool? | checkAdjacentVertices | Determines if filters are applied to the adjacent vertices of an edge. |