Table of Contents

Class SubgraphStrategy

Namespace
Gremlin.Net.Process.Traversal.Strategy.Decoration
Assembly
Gremlin.Net.dll

Provides a way to limit the view of a ITraversal.

public class SubgraphStrategy : AbstractTraversalStrategy, ITraversalStrategy, IEquatable<AbstractTraversalStrategy>
Inheritance
SubgraphStrategy
Implements
Inherited Members

Constructors

SubgraphStrategy()

Initializes a new instance of the SubgraphStrategy class.

public SubgraphStrategy()

SubgraphStrategy(ITraversal?, ITraversal?, ITraversal?, bool?)

Initializes a new instance of the SubgraphStrategy class.

public SubgraphStrategy(ITraversal? vertices = null, ITraversal? edges = null, ITraversal? vertexProperties = null, bool? checkAdjacentVertices = null)

Parameters

vertices ITraversal

Constrains vertices for the ITraversal.

edges ITraversal

Constrains edges for the ITraversal.

vertexProperties ITraversal

Constrains vertex properties for the ITraversal.

checkAdjacentVertices bool?

Determines if filters are applied to the adjacent vertices of an edge.