IResultSummaryProfile Property |
Gets profiled query plan for the executed query if available, otherwise null.
Namespace:
Neo4j.Driver
Assembly:
Neo4j.Driver (in Neo4j.Driver.dll) Version: 4.2.0
SyntaxIProfiledPlan Profile { get; }
ReadOnly Property Profile As IProfiledPlan
Get
property IProfiledPlan^ Profile {
IProfiledPlan^ get ();
}
abstract Profile : IProfiledPlan with get
Property Value
Type:
IProfiledPlan
Remarks
This describes how the database did execute your query.
If the query you executed (
HasProfile was profiled), the query plan will contain detailed
information about what each step of the plan did. That more in-depth version of the query plan becomes
available here.
See Also