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
Copy file name to clipboardExpand all lines: modules/ROOT/pages/procedures/call-procedures.adoc
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -167,7 +167,7 @@ RETURN count(*) AS results
167
167
====
168
168
169
169
`YIELD` can be used to filter for specific results.
170
-
This requires knowing the names of the arguments within a procedure's signature, which can either be found on the xref:procedures/built-in-procedures.adoc[built-in procedures page] or in the `signature` column returned by a xref:procedures/list-procedures.adoc[`SHOW PROCEDURES`] command.
170
+
This requires knowing the names of the arguments within a procedure's signature, which can either be found on the xref:procedures/built-in-procedures.adoc[built-in procedures page] or in the `signature` column returned by a xref:procedures/show-procedures.adoc[`SHOW PROCEDURES`] command.
@@ -64,7 +64,7 @@ When using the `RETURN` clause, the `YIELD` clause is mandatory and must not be
64
64
65
65
`SHOW PROCEDURES` will produce a table with the following columns:
66
66
67
-
.List procedures output
67
+
.Show procedures output
68
68
[options="header", cols="4,6,2"]
69
69
|===
70
70
| Column | Description | Type
@@ -134,19 +134,19 @@ The deprecation information for procedures is returned both in the `isDeprecated
134
134
[[examples]]
135
135
== Examples
136
136
137
-
.List all procedures and return only default columns
137
+
.Show all procedures and return only default columns
138
138
[source, cypher, role=test-result-skip]
139
139
----
140
140
SHOW PROCEDURES
141
141
----
142
142
143
-
.List all procedures and return all columns
143
+
.Show all procedures and return all columns
144
144
[source, cypher, role=test-result-skip]
145
145
----
146
146
SHOW PROCEDURES YIELD *
147
147
----
148
148
149
-
.List all procedures and return specific columns only
149
+
.Show all procedures and return specific columns only
150
150
[source, cypher, role=test-result-skip]
151
151
----
152
152
SHOW PROCEDURES YIELD name, admin
@@ -160,7 +160,7 @@ WHERE worksOnSystem = TRUE
160
160
RETURN name
161
161
----
162
162
163
-
.List procedures executable by the current user
163
+
.Show procedures executable by the current user
164
164
[source, cypher, role=test-result-skip]
165
165
----
166
166
SHOW PROCEDURES EXECUTABLE BY CURRENT USER YIELD *
@@ -170,7 +170,7 @@ The second option for using the `EXECUTABLE` clause is to filter the list to onl
170
170
The below example shows the procedures available to the user `jake`, who has been granted the `EXECUTE PROCEDURE dbms.*` privilege by the `admin` of the database.
171
171
(More information about `DBMS EXECUTE` privilege administration can be found in the xref:authentication-authorization/dbms-administration/dbms-execute-privileges.adoc[The `DBMS EXECUTE` privileges]).
0 commit comments