How to use graphrag with other database and structured data? #1679
Unanswered
jamesmkfoo23
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have tried the "Get Started "guide (https://microsoft.github.io/graphrag/get_started/) by installing python graphrag, indexing and querying using graphrag cli which creates the output in local lancedb.
Q1) Is it possible to create the indexes into Azure Postgres Flexible server or Neo4J using ms graphrag?
Q2) Additionally what if I have these data sets:
structured data which shows entity relationships (entities are in bold)
Sample:
{
"relationship": "Contains::Contained by",
"parent.class": "site",
"parent.name": "APAC-HUB-01",
"child.description": "Windows Server for xxxx",
"parent.description": "Site location",
"child.class": "win_server",
"child.name": "server01"
}
entity and attributes. Each entity attributes can be selected and expanded as required. Sample from 1 shows the name, class and description for the entity
Is it possible to use graphrag with these types of data?
Beta Was this translation helpful? Give feedback.
All reactions