Skip to content

Commit 3ebee4f

Browse files
JPryce-Aklundhrenetapopova
authored andcommitted
show not list
1 parent 4e71db6 commit 3ebee4f

4 files changed

Lines changed: 14 additions & 14 deletions

File tree

modules/ROOT/content-nav.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@
288288
289289
* xref:procedures/index.adoc[]
290290
** xref:procedures/call-procedures.adoc[]
291-
** xref:procedures/list-procedures.adoc[]
291+
** xref:procedures/show-procedures.adoc[]
292292
** xref:procedures/built-in-procedures.adoc[]
293293
294294
* Changes, deprecations, and removals

modules/ROOT/pages/procedures/call-procedures.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ RETURN count(*) AS results
167167
====
168168
169169
`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.
171171
172172
.Find the argument names of `db.propertyKeys()`
173173
[source, cypher]

modules/ROOT/pages/procedures/index.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33

44
This chapter includes the following sections:
55

6-
* xref:procedures/call-procedures.adoc[]: information about how to `CALL` procedures using Cypher.
7-
* xref:procedures/list-procedures.adoc[]: information about how to list the procedures in a Neo4j database.
6+
* xref:procedures/call-procedures.adoc[]: information about how to call procedures.
7+
* xref:procedures/show-procedures.adoc[]: information about how to show the procedures in a Neo4j database.
88
* xref:procedures/built-in-procedures.adoc[]: information about all built-in procedures in Neo4j.

modules/ROOT/pages/procedures/list-procedures.adoc renamed to modules/ROOT/pages/procedures/show-procedures.adoc

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
:description: Information about the `SHOW PROCEDURES` command.
22
:test-skip: true
3-
= List procedures
3+
= Show procedures
44

55
Listing the available procedures can be done with `SHOW PROCEDURES`.
66
For general information about the `SHOW` command, see the link:{neo4j-docs-base-uri}/cypher-manual/clauses/show/[Cypher Manual -> SHOW].
@@ -15,7 +15,7 @@ For full details about the syntax descriptions, see xref:database-administration
1515
|===
1616
| Action | Syntax
1717

18-
| List all procedures
18+
| Show all procedures
1919
|
2020
[source, syntax, role="noheader"]
2121
----
@@ -25,7 +25,7 @@ SHOW PROCEDURE[S]
2525
[RETURN field[, ...] [ORDER BY field[, ...]] [SKIP n] [LIMIT n]]
2626
----
2727

28-
| List procedures executable by the current user
28+
| Show procedures executable by the current user
2929
|
3030
[source, syntax, role="noheader"]
3131
----
@@ -35,7 +35,7 @@ SHOW PROCEDURE[S] EXECUTABLE [BY CURRENT USER]
3535
[RETURN field[, ...] [ORDER BY field[, ...]] [SKIP n] [LIMIT n]]
3636
----
3737

38-
a| List procedures executable by a specified user
38+
a| Show procedures executable by a specified user
3939

4040
|
4141
[source, syntax, role="noheader", indent=0]
@@ -64,7 +64,7 @@ When using the `RETURN` clause, the `YIELD` clause is mandatory and must not be
6464

6565
`SHOW PROCEDURES` will produce a table with the following columns:
6666

67-
.List procedures output
67+
.Show procedures output
6868
[options="header", cols="4,6,2"]
6969
|===
7070
| Column | Description | Type
@@ -134,19 +134,19 @@ The deprecation information for procedures is returned both in the `isDeprecated
134134
[[examples]]
135135
== Examples
136136

137-
.List all procedures and return only default columns
137+
.Show all procedures and return only default columns
138138
[source, cypher, role=test-result-skip]
139139
----
140140
SHOW PROCEDURES
141141
----
142142

143-
.List all procedures and return all columns
143+
.Show all procedures and return all columns
144144
[source, cypher, role=test-result-skip]
145145
----
146146
SHOW PROCEDURES YIELD *
147147
----
148148

149-
.List all procedures and return specific columns only
149+
.Show all procedures and return specific columns only
150150
[source, cypher, role=test-result-skip]
151151
----
152152
SHOW PROCEDURES YIELD name, admin
@@ -160,7 +160,7 @@ WHERE worksOnSystem = TRUE
160160
RETURN name
161161
----
162162

163-
.List procedures executable by the current user
163+
.Show procedures executable by the current user
164164
[source, cypher, role=test-result-skip]
165165
----
166166
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
170170
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.
171171
(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]).
172172

173-
.List procedures executable by specific user
173+
.Show procedures executable by specific user
174174
[source, cypher, role=test-result-skip]
175175
----
176176
SHOW PROCEDURES EXECUTABLE BY jake

0 commit comments

Comments
 (0)