apoc.load.directory.async.remove
Procedure APOC Full
apoc.load.directory.async.remove(name) YIELD name, status, pattern, cypher, urlDir, config, error - Remove a folder listener by name and return remaining listeners, if any
Signature
apoc.load.directory.async.remove(name :: STRING?) :: (name :: STRING?, status :: STRING?, pattern :: STRING?, cypher :: STRING?, urlDir :: STRING?, config :: MAP?, error :: STRING?)
Output parameters
Name | Type |
---|---|
name |
STRING? |
status |
STRING? |
pattern |
STRING? |
cypher |
STRING? |
urlDir |
STRING? |
config |
MAP? |
error |
STRING? |
Usage Examples
The first parameter is the name of our custom watch listener. If we use an already existing listener name, that listener will be overwritten. The second parameter is the cypher query that will be executed. The query can have the following parameters:
-
$fileName: the name of the file which triggered the event
-
$filePath: the absolute path of the file which triggered the event if
apoc.import.file.use_neo4j_config=false
, otherwise the relative path starting from$IMPORT_DIR
-
$fileDirectory: the absolute path directory of the file which triggered the event if
apoc.import.file.use_neo4j_config=false
, otherwise the relative path starting from$IMPORT_DIR
-
$listenEventType: the triggered event ("CREATE", "DELETE" or "MODIFY"). The event "CREATE" happens when a file is inserted in the folder, "DELETE" when a file is removed from the folder and "MODIFY" when a file in the folder is changed. Please note that if a file is renamed, will be triggered 2 event, that is first "DELETE" and then"CREATE"
The third parameter is the pattern of file to search for.
By default is '*', that is, search all files.
The fourth is the search path of directory.
By default is an empty string, that is, search file in import
directory.
Examples of interoperability with other procedures
We can use another load procedure as query parameter, like apoc.load.csv
or apoc.load.json
.
Here are two examples.
We can execute:
CALL apoc.load.directory.async.add('csvImport',
"CALL apoc.load.csv($filePath) yield list WITH list CREATE (n:CsvToNode {content: list, fileName: $fileName, fileDirectory: $fileDirectory, listenEventType: $listenEventType})",
"*.csv", "csvFolder" ,{listenEventType: ["CREATE", "MODIFY"]})
where $fileName
is the file created/modified,
$filePath
is the relative path of the file, that is $IMPORT_DIR/csvFolder/[FILENAME.csv]
,
$fileDirectory
is the relative path of the directory, that is $IMPORT_DIR/csvFolder
and $listenEventType
is the triggered event, that is CREATE
or MODIFY
.
If we upload the following file in $IMPORT_DIR/csvFolder
folder:
name,age
Selma,8
Rana,11
Selina,18
and then, executing MATCH (n:CsvToNode) RETURN properties(n) as props
:
props |
---|
{ "fileName": "test.csv", "listenEventType": "CREATE", "fileDirectory": "csvFolder", "content": [ "Selma", "8" ] } |
{ "fileName": "test.csv", "listenEventType": "CREATE", "fileDirectory": "csvFolder", "content": [ "Rana", "11" ] } |
{ "fileName": "test.csv", "listenEventType": "CREATE", "fileDirectory": "csvFolder", "content": [ "Selina", "18" ] } |
If we modify the test.csv
as follow:
name,age
Selma,80
Rana,110
Selina,180
we obtain 3 new nodes with these props:
props |
---|
{ "fileName": "test.csv", "listenEventType": "MODIFY", "fileDirectory": "csvFolder", "content": [ "Selma", "80" ] } |
{ "fileName": "test.csv", "listenEventType": "MODIFY", "fileDirectory": "csvFolder", "content": [ "Rana", "110" ] } |
{ "fileName": "test.csv", "listenEventType": "MODIFY", "fileDirectory": "csvFolder", "content": [ "Selina", "180" ] } |
Or else, we can execute:
CALL apoc.load.directory.async.add('jsonImport',
"CALL apoc.load.json($filePath) yield value WITH value CREATE (n:JsonToNode {content: value['foo'], fileName: $fileName, fileDirectory: $fileDirectory})",
"*.json", "jsonFolder", {listenEventType: ["CREATE"]})
If we upload the following files in $IMPORT_DIR/jsonFolder
folder:
{ "foo":[1,2,3] }
{ "foo":[4,5,6] }
and
{ "foo":[11,22,33] }
{ "foo":[41,51,61] }
We obtain this result calling MATCH (n:JsonToNode) RETURN properties(n) as props
:
props |
---|
{ "fileName": "fileOne.json", "fileDirectory": "jsonFolder", "content": [ 1,2,3 ] } |
{ "fileName": "fileOne.json", "fileDirectory": "jsonFolder", "content": [ 4,5,6 ] } |
{ "fileName": "fileTwo.json", "fileDirectory": "jsonFolder", "content": [ 11,22,33 ] } |
{ "fileName": "fileTwo.json", "fileDirectory": "jsonFolder", "content": [ 41,51,61 ] } |
Error handling
When for some reason, the listener fails, its status
field change from RUNNING
to ERROR
, and the associated error is output.
If we execute call apoc.load.directory.async.list
, we obtain, for example:
name | status | pattern | cypher | urlDir | config | error |
---|---|---|---|---|---|---|
|
|
|
|
|
|
|