You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In addition to defining a stored procedure with a Cypher query, we also support for customizing query execution through C++ stored procedures. See [C++ Stored Procedure](./development/stored_procedure/cpp_procedure.md).
110
+
111
+
112
+
## Builtin Procedures
113
+
114
+
To enhance the user experience in Interactive, we have integrated built-in stored procedures. These procedures facilitate both commonly executed queries and those that, while complex and challenging to devise, are essential and frequently utilized. To access these features, simply input the correct procedure name and the necessary parameters.
115
+
116
+
### count_vertices
117
+
118
+
This procedure returns the count of vertices for a specified label.
119
+
120
+
```cypher
121
+
CALL count_vertices(vertex_label_name)
122
+
```
123
+
124
+
###### Parameters
125
+
126
+
- `vertex_label_name`: The name of the vertex label to be counted.
127
+
128
+
###### Returns
129
+
130
+
- `count`: The total number of vertices.
131
+
132
+
### k_hop_neighbors
133
+
134
+
This finds all vertices that can be reached from a starting vertex within `k` hops.
0 commit comments