apoc.data.url
Syntax |
|
||
Description |
Turns a URL into a |
||
Arguments |
Name |
Type |
Description |
|
|
The URL to extract metadata from. |
|
Returns |
|
Usage Examples
WITH apoc.data.url("https://www.neo4j.com/developer/graph-data-science?q=neo4j#heading-1") AS output
UNWIND keys(output) AS key
RETURN key, output[key] AS value;
key | value |
---|---|
"path" |
"/developer/graph-data-science" |
"protocol" |
"https" |
"file" |
"/developer/graph-data-science?q=neo4j" |
"port" |
NULL |
"query" |
"q=neo4j" |
"anchor" |
"heading-1" |
"host" |
"www.neo4j.com" |
"user" |
NULL |