Skip to content

Commit

Permalink
Update operators overview page
Browse files Browse the repository at this point in the history
  • Loading branch information
pontusmelke committed Jan 22, 2024
1 parent 5b37c8b commit ec9ebbc
Showing 1 changed file with 116 additions and 0 deletions.
116 changes: 116 additions & 0 deletions modules/ROOT/pages/planning-and-tuning/operators/index.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -471,6 +471,122 @@ It is not eager.
|
|

| xref::planning-and-tuning/operators/operators-detail.adoc#query-plan-partitioned-all-nodes-scan[PartitionedAllNodesScan]
| Reads all nodes from the node store in parallel.
| label:yes[]
|
|

| xref::planning-and-tuning/operators/operators-detail.adoc#query-plan-partitioned-directed-all-relationships-scan[PartitionedDirectedAllRelationshipsScan]
| Fetches all relationships and their start and end nodes in the database in parallel.
| label:yes[]
|
|


| xref::planning-and-tuning/operators/operators-detail.adoc#query-plan-partitioned-directed-relationship-index-scan[PartitionedDirectedRelationshipIndexScan]
| Examines all values stored in an index in parallel, returning all relationships and their start and end nodes with a particular relationship type and a specified property.
| label:yes[]
|
|

| xref::planning-and-tuning/operators/operators-detail.adoc#query-plan-partitioned-directed-relationship-index-seek[PartitionedDirectedRelationshipIndexSeek]
| Finds relationships and their start and end nodes using a parallel index seek.
| label:yes[]
|
|

| xref::planning-and-tuning/operators/operators-detail.adoc#query-plan-partitioned-directed-relationship-index-seek-by-range[PartitionedDirectedRelationshipIndexSeekByRange]
| Finds relationships and their start and end nodes using a parallel index seek where the value of the property is within a given range.
| label:yes[]
|
|

| xref::planning-and-tuning/operators/operators-detail.adoc#query-plan-directed-partitioned-relationship-type-scan[PartitionedDirectedRelationshipTypeScan]
| Fetches, using a parallel scan, all relationships and their start and end nodes with a specific type from the relationship type index.
| label:yes[]
|
|

| xref::planning-and-tuning/operators/operators-detail.adoc#query-plan-partitioned-directed-union-relationship-types-scan[PartitionedDirectedUnionRelationshipTypesScan]
| Fetches, using a parallel scan, all relationships and their start and end nodes with at least one of the provided types from the relationship type index.
|
|
|

| xref::planning-and-tuning/operators/operators-detail.adoc#query-plan-partitioned-node-by-label-scan[PartitionedNodeByLabelScan]
| Fetches all nodes with a specific label from the node label index in parallel.
| label:yes[]
|
|

| xref::planning-and-tuning/operators/operators-detail.adoc#query-plan-partitioned-node-index-scan[PartitionedNodeIndexScan]
| Examines all values stored in an index in parallel, returning all nodes with a particular label with a specified property.
| label:yes[]
|
|

| xref::planning-and-tuning/operators/operators-detail.adoc#query-plan-partitioned-node-index-seek[PartitionedNodeIndexSeek]
| Finds nodes using an index seek in parallel.
| label:yes[]
|
|

| xref::planning-and-tuning/operators/operators-detail.adoc#query-plan-partitioned-node-index-seek-by-range[PartitionedNodeIndexSeekByRange]
| Finds nodes using a parallel index seek where the value of the property is within a given range.
| label:yes[]
|
|

| xref::planning-and-tuning/operators/operators-detail.adoc#query-plan-partitioned-undirected-all-relationships-scan[PartitionedUndirectedAllRelationshipsScan]
| Fetches all relationships and their start and end nodes in the database in parallel.
| label:yes[]
|
|


| xref::planning-and-tuning/operators/operators-detail.adoc#query-plan-partitioned-undirected-relationship-index-scan[PartitionedUndirectedRelationshipIndexScan]
| Examines all values stored in an index in parallel, returning all relationships and their start and end nodes with a particular relationship type and a specified property.
| label:yes[]
|
|

| xref::planning-and-tuning/operators/operators-detail.adoc#query-plan-partitioned-undirected-relationship-index-seek[PartitionedUndirectedRelationshipIndexSeek]
| Finds relationships and their start and end nodes using a parallel index seek.
| label:yes[]
|
|

| xref::planning-and-tuning/operators/operators-detail.adoc#query-plan-partitioned-undirected-relationship-index-seek-by-range[PartititionedUndirectedRelationshipIndexSeekByRange]
| Finds relationships and their start and end nodes using a parallel index seek where the value of the property is within a given range.
| label:yes[]
|
|

| xref::planning-and-tuning/operators/operators-detail.adoc#query-plan-partitioned-undirected-relationship-type-scan[PartitionedUndirectedRelationshipTypeScan]
| Fetches, in parallel, all relationships and their start and end nodes with a specific type from the relationship type index.
| label:yes[]
|
|

| xref::planning-and-tuning/operators/operators-detail.adoc#query-plan-partitioned-undirected-union-relationship-types-scan[PartitionedUndirectedUnionRelationshipTypesScan]
| Fetches, in parallel, all relationships and their start and end nodes with at least one of the provided types from the relationship type index.
| label:yes[]
|
|

| xref::planning-and-tuning/operators/operators-detail.adoc#query-plan-partitioned-union-node-by-labels-scan[PartitionedUnionNodeByLabelsScan]
| Fetches all nodes that have at least one of the provided labels from the node label index in parallel.
| label:yes[]
|
|

| xref::planning-and-tuning/operators/operators-detail.adoc#query-plan-partitioned-unwind[PartitionedUnwind]
| Returns one row per item in a list in parallel.
|
|
|

| xref::planning-and-tuning/operators/operators-detail.adoc#query-plan-procedure-call[ProcedureCall]
| Calls a procedure.
|
Expand Down

0 comments on commit ec9ebbc

Please sign in to comment.