Keep permitted graph results updated as rows change. BlueTusk uses the smallest safe update and reruns the full query whenever it cannot prove a smaller update is correct.
15OffGraph support unavailable16OffGraph support unavailable17OffGraph support unavailable18OffGraph support unavailable19OnFeature check and tests pass
WRITE GRAPH QUERIES
Use SQL directly or build a typed EF query.
terminal
Run SQL/PGQ directly
Use SQL to create a property graph and run MATCH queries directly through the provider.
MATCHGRAPH_TABLECOLUMNS
GraphQuery.cs
await using var command = dataSource.CreateCommand("""
SELECT *
FROM GRAPH_TABLE (
social_graph
MATCH (person:Person)-[knows:KNOWS]->(friend:Person)
COLUMNS (person.name AS person, friend.name AS friend)
)
""");
await using var reader = await command.ExecuteReaderAsync();
PRODUCTION-STYLE EXAMPLES
See continuously updated graph results in action.
Both are complete, runnable repository projects rather than simplified mock-ups.
securityFRAUD
Detect connected financial risk
Keep account and transfer relationships updated so suspicious paths can be found quickly.