-
Notifications
You must be signed in to change notification settings - Fork 495
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes #3401: APOC Custom Procedures/Function new procedures working w…
…ith Cluster (#3943) * Fixes #3401: APOC Custom Procedures/Function new procedures working with Cluster * removed unused imports * changed writeTransaction to executeWrite
- Loading branch information
Showing
40 changed files
with
2,884 additions
and
457 deletions.
There are no files selected for viewing
5 changes: 5 additions & 0 deletions
5
...asciidoc/modules/ROOT/examples/generated-documentation/apoc.custom.dropAll.adoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
¦xref::overview/apoc.custom/apoc.custom.list.adoc[apoc.custom.list icon:book[]] + | ||
|
||
`apoc.custom.list()` - provide a list of custom procedures/function registered | ||
¦label:procedure[] | ||
¦label:apoc-extended[] |
5 changes: 5 additions & 0 deletions
5
...doc/modules/ROOT/examples/generated-documentation/apoc.custom.dropFunction.adoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
¦xref::overview/apoc.custom/apoc.custom.list.adoc[apoc.custom.list icon:book[]] + | ||
|
||
`apoc.custom.list()` - provide a list of custom procedures/function registered | ||
¦label:procedure[] | ||
¦label:apoc-extended[] |
5 changes: 5 additions & 0 deletions
5
...oc/modules/ROOT/examples/generated-documentation/apoc.custom.dropProcedure.adoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
¦xref::overview/apoc.custom/apoc.custom.list.adoc[apoc.custom.list icon:book[]] + | ||
|
||
`apoc.custom.list()` - provide a list of custom procedures/function registered | ||
¦label:procedure[] | ||
¦label:apoc-extended[] |
5 changes: 5 additions & 0 deletions
5
.../modules/ROOT/examples/generated-documentation/apoc.custom.installFunction.adoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
¦xref::overview/apoc.custom/apoc.custom.list.adoc[apoc.custom.list icon:book[]] + | ||
|
||
`apoc.custom.list()` - provide a list of custom procedures/function registered | ||
¦label:procedure[] | ||
¦label:apoc-extended[] |
5 changes: 5 additions & 0 deletions
5
...modules/ROOT/examples/generated-documentation/apoc.custom.installProcedure.adoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
¦xref::overview/apoc.custom/apoc.custom.list.adoc[apoc.custom.list icon:book[]] + | ||
|
||
`apoc.custom.list()` - provide a list of custom procedures/function registered | ||
¦label:procedure[] | ||
¦label:apoc-extended[] |
5 changes: 5 additions & 0 deletions
5
docs/asciidoc/modules/ROOT/examples/generated-documentation/apoc.custom.show.adoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
¦xref::overview/apoc.custom/apoc.custom.list.adoc[apoc.custom.list icon:book[]] + | ||
|
||
`apoc.custom.list()` - provide a list of custom procedures/function registered | ||
¦label:procedure[] | ||
¦label:apoc-extended[] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 40 additions & 0 deletions
40
docs/asciidoc/modules/ROOT/pages/overview/apoc.custom/apoc.custom.dropAll.adoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
|
||
= apoc.custom.dropAll | ||
:description: This section contains reference documentation for the apoc.custom.dropAll procedure. | ||
|
||
label:procedure[] label:apoc-extended[] | ||
|
||
[.emphasis] | ||
Eventually drops all previously added custom procedures/functions and returns info | ||
|
||
== Signature | ||
|
||
[source] | ||
---- | ||
apoc.custom.dropAll(databaseName = neo4j :: STRING?) :: (type :: STRING?, name :: STRING?, description :: STRING?, mode :: STRING?, statement :: STRING?, inputs :: LIST? OF LIST? OF STRING?, outputs :: ANY?, forceSingle :: BOOLEAN?) | ||
---- | ||
|
||
== Input parameters | ||
[.procedures, opts=header] | ||
|=== | ||
| Name | Type | Default | ||
|databaseName|STRING?|neo4j | ||
|=== | ||
|
||
|
||
== Output parameters | ||
[.procedures, opts=header] | ||
|=== | ||
| Name | Type | ||
|type|STRING? | ||
|name|STRING? | ||
|description|STRING? | ||
|mode|STRING? | ||
|statement|STRING? | ||
|inputs|LIST? OF LIST? OF STRING? | ||
|outputs|ANY? | ||
|forceSingle|BOOLEAN? | ||
|=== | ||
|
||
xref:cypher-execution/cypher-based-procedures-functions.adoc[More documentation of apoc.custom.dropAll,role=more information] | ||
|
27 changes: 27 additions & 0 deletions
27
.../asciidoc/modules/ROOT/pages/overview/apoc.custom/apoc.custom.dropFunction.adoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
|
||
= apoc.custom.dropFunction | ||
:description: This section contains reference documentation for the apoc.custom.dropFunction procedure. | ||
|
||
label:procedure[] label:apoc-extended[] | ||
|
||
[.emphasis] | ||
Eventually drops the targeted custom function | ||
|
||
== Signature | ||
|
||
[source] | ||
---- | ||
apoc.custom.dropFunction(name :: STRING?, databaseName = neo4j :: STRING?) :: VOID | ||
---- | ||
|
||
|
||
== Input parameters | ||
[.procedures, opts=header] | ||
|=== | ||
| Name | Type | Default | ||
|name|STRING?|null | ||
|databaseName|STRING?|neo4j | ||
|=== | ||
|
||
xref:cypher-execution/cypher-based-procedures-functions.adoc[More documentation of apoc.custom.dropFunction,role=more information] | ||
|
28 changes: 28 additions & 0 deletions
28
...asciidoc/modules/ROOT/pages/overview/apoc.custom/apoc.custom.dropProcedure.adoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
|
||
= apoc.custom.dropProcedure | ||
:description: This section contains reference documentation for the apoc.custom.dropProcedure procedure. | ||
|
||
label:procedure[] label:apoc-extended[] | ||
|
||
[.emphasis] | ||
Eventually drops the targeted custom procedure | ||
|
||
== Signature | ||
|
||
[source] | ||
---- | ||
apoc.custom.dropProcedure(name :: STRING?, databaseName = neo4j :: STRING?) :: VOID | ||
---- | ||
|
||
|
||
== Input parameters | ||
[.procedures, opts=header] | ||
|=== | ||
| Name | Type | Default | ||
|name|STRING?|null | ||
|databaseName|STRING?|neo4j | ||
|=== | ||
|
||
|
||
xref:cypher-execution/cypher-based-procedures-functions.adoc[More documentation of apoc.custom.dropFunction,role=more information] | ||
|
Oops, something went wrong.