2024-12-02 04:23:28 -05:00
|
|
|
## Integration Details
|
|
|
|
|
|
|
|
<!-- Plain-language description of what this integration is meant to do. -->
|
|
|
|
<!-- Include details about where metadata is extracted from (ie. logs, source API, manifest, etc.) -->
|
|
|
|
|
2025-04-16 16:55:51 -07:00
|
|
|
Neo4j metadata will be ingested into DataHub using
|
|
|
|
`CALL apoc.meta.schema() YIELD value UNWIND keys(value) AS key RETURN key, value[key] AS value;`
|
|
|
|
The data that is returned will be parsed
|
|
|
|
and will be displayed as Nodes and Relationships in DataHub. Each object will be tagged with describing what kind of DataHub
|
|
|
|
object it is. The defaults are 'Node' and 'Relationship'. These tag values can be overwritten in the recipe.
|
2024-12-02 04:23:28 -05:00
|
|
|
|
|
|
|
## Metadata Ingestion Quickstart
|
|
|
|
|
|
|
|
### Prerequisites
|
|
|
|
|
|
|
|
In order to ingest metadata from Neo4j, you will need:
|
|
|
|
|
2025-04-16 16:55:51 -07:00
|
|
|
- Neo4j instance with APOC installed
|