Neo4j
Whether you’re setting up a retrieval pipeline or building a knowledge graph, connecting Neo4j to UltiHash lets you efficiently retrieve the raw data behind your graph nodes, like documents, images, or videos. Neo4j stores relationships and metadata, but not the actual file content. That’s where UltiHash comes in.
To make this work, you’ll need to setup a middleware app: it listens for graph queries from Neo4j, resolves the node or relationship metadata to actual file references, and pulls the raw data from UltiHash on demand.
Your typical pipeline will look like:
Store your raw data (e.g., PDFs, videos) in UltiHash.
Ingest metadata and relationships into Neo4j, including references (e.g., file paths or IDs) to the data stored in UltiHash.
A middleware app handles queries to Neo4j and resolves the relevant nodes or relationships.
Based on the references, the middleware retrieves the raw files from UltiHash.
The raw data is then served to the user or passed to downstream applications.
Here’s an example API that handles both the query to Neo4j and the retrieval of raw data from UltiHash, so you can serve the right files directly from your knowledge graph.
FlaskAPI
API Query
Neo4j is built around Cypher, a query language designed specifically for working with graph data. It is optimized for pattern-based queries, making it easy to express relationships and navigate connected data efficiently. For this setup, I wanted to keep the user experience seamless: you can interact with Neo4j just as you normally would using Cypher. The API is built to take in any Cypher query, execute it on the database, and return structured results. That means you don’t have to learn new syntax or change how you query, everything works the same. The only difference? When your query involves the associated files (like movie posters), they’re directly retrieved from UltiHash, so you don’t have to manage raw data retrieval separately (and manually!).
Last updated
Was this helpful?