Graph Store
Description
Configuration in DI
// Pick ONE
services.AddFlexNeo4jGraphStore(configuration);
// services.AddFlexCosmosGremlinGraphStore(configuration);appsettings.json
{
"FlexBase": {
"DataStores": {
"Graph": {
"Neo4j": {
"Uri": "bolt://localhost:7687",
"Username": "neo4j",
"Password": "<store-in-secrets>"
}
}
}
}
}Sample usage ({YourApplication})
Provider pages
Provider considerations
Last updated