Class SubgraphStrategy
Provides a way to limit the view of a ITraversal.
Inherited Members
System.Object.Equals(System.Object, System.Object)
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: Gremlin.Net.Process.Traversal.Strategy.Decoration
Assembly: cs.temp.dll.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, Nullable<Boolean>)
Initializes a new instance of the SubgraphStrategy class.
Declaration
public SubgraphStrategy(ITraversal vertices = null, ITraversal edges = null, ITraversal vertexProperties = null, bool? checkAdjacentVertices = default(bool? ))
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. |
System.Nullable<System.Boolean> | checkAdjacentVertices | Determines if filters are applied to the adjacent vertices of an edge. |
Implements
System.IEquatable<T>