<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Bhagyashri Kale</title>
    <description>The latest articles on DEV Community by Bhagyashri Kale (@bhagyashri_kale_c500cb884).</description>
    <link>https://dev.to/bhagyashri_kale_c500cb884</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4142189%2Fc219cbe4-a091-4436-9588-132d3e908fc6.png</url>
      <title>DEV Community: Bhagyashri Kale</title>
      <link>https://dev.to/bhagyashri_kale_c500cb884</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/bhagyashri_kale_c500cb884"/>
    <language>en</language>
    <item>
      <title>Agentic Fraud Investigation with TigerGraph</title>
      <dc:creator>Bhagyashri Kale</dc:creator>
      <pubDate>Fri, 25 Sep 2026 03:52:58 +0000</pubDate>
      <link>https://dev.to/bhagyashri_kale_c500cb884/agentic-fraud-investigation-with-tigergraph-2lmi</link>
      <guid>https://dev.to/bhagyashri_kale_c500cb884/agentic-fraud-investigation-with-tigergraph-2lmi</guid>
      <description>&lt;h1&gt;
  
  
  Agentic Fraud Investigation with TigerGraph
&lt;/h1&gt;

&lt;h2&gt;
  
  
  Introduction
&lt;/h2&gt;

&lt;p&gt;Fraud investigation becomes difficult when transaction data, customer information, and related entities are spread across different records.&lt;/p&gt;

&lt;p&gt;For the TigerGraph × HHGoa 2026 challenge, we built an Agentic Fraud Investigation solution to analyze fraud cases and generate structured investigation results.&lt;/p&gt;

&lt;p&gt;Our solution uses TigerGraph Savanna as the graph layer and a custom Python-based investigation agent.&lt;/p&gt;

&lt;h2&gt;
  
  
  Problem Statement
&lt;/h2&gt;

&lt;p&gt;The objective was to investigate fraud cases using transaction and entity relationships and produce useful evidence and investigation decisions for each case.&lt;/p&gt;

&lt;p&gt;Our solution processes 20 benchmark cases, from HHG-001 to HHG-020.&lt;/p&gt;

&lt;h2&gt;
  
  
  What We Built
&lt;/h2&gt;

&lt;p&gt;Our solution includes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;TigerGraph Savanna as the graph layer&lt;/li&gt;
&lt;li&gt;SavannaTransactionGraph&lt;/li&gt;
&lt;li&gt;Transaction, Customer, and Card entities&lt;/li&gt;
&lt;li&gt;Relationships between connected entities&lt;/li&gt;
&lt;li&gt;A custom Python investigation agent&lt;/li&gt;
&lt;li&gt;Rule-based fraud pattern detection&lt;/li&gt;
&lt;li&gt;Heuristic risk scoring&lt;/li&gt;
&lt;li&gt;Structured JSON outputs for each case&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Architecture
&lt;/h2&gt;

&lt;p&gt;The workflow is:&lt;/p&gt;

&lt;p&gt;Case Input&lt;br&gt;&lt;br&gt;
→ Data Preparation&lt;br&gt;&lt;br&gt;
→ TigerGraph Graph&lt;br&gt;&lt;br&gt;
→ Transaction and Entity Relationships&lt;br&gt;&lt;br&gt;
→ Python Investigation Agent&lt;br&gt;&lt;br&gt;
→ Fraud Pattern Analysis&lt;br&gt;&lt;br&gt;
→ Risk Score&lt;br&gt;&lt;br&gt;
→ Investigation Decision&lt;br&gt;&lt;br&gt;
→ JSON Case Output&lt;/p&gt;

&lt;p&gt;The graph representation helps organize relationships between transactions and related entities for fraud investigation.&lt;/p&gt;

&lt;h2&gt;
  
  
  How We Used TigerGraph
&lt;/h2&gt;

&lt;p&gt;We used TigerGraph Savanna as the graph layer for our fraud investigation workflow.&lt;/p&gt;

&lt;p&gt;The graph used in the project is:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;SavannaTransactionGraph&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;The graph contains entities such as:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Transaction&lt;/li&gt;
&lt;li&gt;Customer&lt;/li&gt;
&lt;li&gt;Card&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;These entities are connected through relationships that help organize transaction-related evidence.&lt;/p&gt;

&lt;h2&gt;
  
  
  Investigation Agent
&lt;/h2&gt;

&lt;p&gt;The investigation agent is implemented as a custom Python program.&lt;/p&gt;

&lt;p&gt;It reads the prepared investigation data, applies fraud detection rules, calculates a heuristic risk probability, and generates investigation decisions.&lt;/p&gt;

&lt;p&gt;The current implementation is rule-based and heuristic. It does not use an external LLM API.&lt;/p&gt;

&lt;h2&gt;
  
  
  Results
&lt;/h2&gt;

&lt;p&gt;We successfully processed all 20 benchmark cases:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;HHG-001&lt;/code&gt; to &lt;code&gt;HHG-020&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;The final results are stored as individual JSON case files.&lt;/p&gt;

&lt;p&gt;These outputs contain structured investigation information for each case, including the detected patterns and investigation decision.&lt;/p&gt;

&lt;h2&gt;
  
  
  GitHub Repository
&lt;/h2&gt;

&lt;p&gt;The complete project source code and case outputs are available here:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/Bhagyashrikale01/agentic-fraud-investigation-tigergraph" rel="noopener noreferrer"&gt;https://github.com/Bhagyashrikale01/agentic-fraud-investigation-tigergraph&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Limitations
&lt;/h2&gt;

&lt;p&gt;The current implementation has some limitations:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The risk probability is heuristic and is not a trained or validated probability.&lt;/li&gt;
&lt;li&gt;The investigation uses preprocessed evidence.&lt;/li&gt;
&lt;li&gt;The current local agent does not use live external integrations.&lt;/li&gt;
&lt;li&gt;Full direct TigerGraph MCP integration with the agent is planned as future work.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Future Improvements
&lt;/h2&gt;

&lt;p&gt;Future improvements could include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Full TigerGraph MCP integration&lt;/li&gt;
&lt;li&gt;GraphRAG-based investigation&lt;/li&gt;
&lt;li&gt;LLM-assisted investigation reasoning&lt;/li&gt;
&lt;li&gt;Live data integrations&lt;/li&gt;
&lt;li&gt;More advanced fraud detection models&lt;/li&gt;
&lt;li&gt;Improved explainability and investigation reports&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;This project gave us practical experience in graph-based fraud investigation, transaction analysis, Python automation, and building an end-to-end investigation workflow.&lt;/p&gt;

&lt;p&gt;The TigerGraph × HHGoa 2026 challenge helped us understand how graph technology can connect related entities and support fraud investigation.&lt;/p&gt;

&lt;p&gt;Thank you to TigerGraph and the HHGoa team for the opportunity to work on this challenge.&lt;/p&gt;

&lt;h1&gt;
  
  
  TigerGraph #FraudDetection #Python #Hackathon
&lt;/h1&gt;

</description>
      <category>ai</category>
      <category>database</category>
      <category>devchallenge</category>
      <category>python</category>
    </item>
    <item>
      <title>Agentic Fraud Investigation with TigerGraph</title>
      <dc:creator>Bhagyashri Kale</dc:creator>
      <pubDate>Fri, 25 Sep 2026 03:46:51 +0000</pubDate>
      <link>https://dev.to/bhagyashri_kale_c500cb884/agentic-fraud-investigation-with-tiger-graph-3mk5</link>
      <guid>https://dev.to/bhagyashri_kale_c500cb884/agentic-fraud-investigation-with-tiger-graph-3mk5</guid>
      <description>&lt;h1&gt;
  
  
  Agentic Fraud Investigation with TigerGraph
&lt;/h1&gt;

&lt;h2&gt;
  
  
  Introduction
&lt;/h2&gt;

&lt;p&gt;Fraud investigation becomes difficult when transaction data, customer information, and related entities are spread across different records.&lt;/p&gt;

&lt;p&gt;For the TigerGraph × HHGoa 2026 challenge, we built an Agentic Fraud Investigation solution to analyze fraud cases and generate structured investigation results.&lt;/p&gt;

&lt;p&gt;Our solution uses TigerGraph Savanna as the graph layer and a custom Python-based investigation agent.&lt;/p&gt;

&lt;h2&gt;
  
  
  Problem Statement
&lt;/h2&gt;

&lt;p&gt;The objective was to investigate fraud cases using transaction and entity relationships and produce useful evidence and investigation decisions for each case.&lt;/p&gt;

&lt;p&gt;Our solution processes 20 benchmark cases, from HHG-001 to HHG-020.&lt;/p&gt;

&lt;h2&gt;
  
  
  What We Built
&lt;/h2&gt;

&lt;p&gt;Our solution includes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;TigerGraph Savanna as the graph layer&lt;/li&gt;
&lt;li&gt;SavannaTransactionGraph&lt;/li&gt;
&lt;li&gt;Transaction, Customer, and Card entities&lt;/li&gt;
&lt;li&gt;Relationships between connected entities&lt;/li&gt;
&lt;li&gt;A custom Python investigation agent&lt;/li&gt;
&lt;li&gt;Rule-based fraud pattern detection&lt;/li&gt;
&lt;li&gt;Heuristic risk scoring&lt;/li&gt;
&lt;li&gt;Structured JSON outputs for each case&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Architecture
&lt;/h2&gt;

&lt;p&gt;The workflow is:&lt;/p&gt;

&lt;p&gt;Case Input&lt;br&gt;&lt;br&gt;
→ Data Preparation&lt;br&gt;&lt;br&gt;
→ TigerGraph Graph&lt;br&gt;&lt;br&gt;
→ Transaction and Entity Relationships&lt;br&gt;&lt;br&gt;
→ Python Investigation Agent&lt;br&gt;&lt;br&gt;
→ Fraud Pattern Analysis&lt;br&gt;&lt;br&gt;
→ Risk Score&lt;br&gt;&lt;br&gt;
→ Investigation Decision&lt;br&gt;&lt;br&gt;
→ JSON Case Output&lt;/p&gt;

&lt;p&gt;The graph representation helps organize relationships between transactions and related entities for fraud investigation.&lt;/p&gt;

&lt;h2&gt;
  
  
  How We Used TigerGraph
&lt;/h2&gt;

&lt;p&gt;We used TigerGraph Savanna as the graph layer for our fraud investigation workflow.&lt;/p&gt;

&lt;p&gt;The graph used in the project is:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;SavannaTransactionGraph&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;The graph contains entities such as:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Transaction&lt;/li&gt;
&lt;li&gt;Customer&lt;/li&gt;
&lt;li&gt;Card&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;These entities are connected through relationships that help organize transaction-related evidence.&lt;/p&gt;

&lt;h2&gt;
  
  
  Investigation Agent
&lt;/h2&gt;

&lt;p&gt;The investigation agent is implemented as a custom Python program.&lt;/p&gt;

&lt;p&gt;It reads the prepared investigation data, applies fraud detection rules, calculates a heuristic risk probability, and generates investigation decisions.&lt;/p&gt;

&lt;p&gt;The current implementation is rule-based and heuristic. It does not use an external LLM API.&lt;/p&gt;

&lt;h2&gt;
  
  
  Results
&lt;/h2&gt;

&lt;p&gt;We successfully processed all 20 benchmark cases:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;HHG-001&lt;/code&gt; to &lt;code&gt;HHG-020&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;The final results are stored as individual JSON case files.&lt;/p&gt;

&lt;p&gt;These outputs contain structured investigation information for each case, including the detected patterns and investigation decision.&lt;/p&gt;

&lt;h2&gt;
  
  
  GitHub Repository
&lt;/h2&gt;

&lt;p&gt;The complete project source code and case outputs are available here:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/Bhagyashrikale01/agentic-fraud-investigation-tigergraph" rel="noopener noreferrer"&gt;https://github.com/Bhagyashrikale01/agentic-fraud-investigation-tigergraph&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Limitations
&lt;/h2&gt;

&lt;p&gt;The current implementation has some limitations:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The risk probability is heuristic and is not a trained or validated probability.&lt;/li&gt;
&lt;li&gt;The investigation uses preprocessed evidence.&lt;/li&gt;
&lt;li&gt;The current local agent does not use live external integrations.&lt;/li&gt;
&lt;li&gt;Full direct TigerGraph MCP integration with the agent is planned as future work.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Future Improvements
&lt;/h2&gt;

&lt;p&gt;Future improvements could include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Full TigerGraph MCP integration&lt;/li&gt;
&lt;li&gt;GraphRAG-based investigation&lt;/li&gt;
&lt;li&gt;LLM-assisted investigation reasoning&lt;/li&gt;
&lt;li&gt;Live data integrations&lt;/li&gt;
&lt;li&gt;More advanced fraud detection models&lt;/li&gt;
&lt;li&gt;Improved explainability and investigation reports&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;This project gave us practical experience in graph-based fraud investigation, transaction analysis, Python automation, and building an end-to-end investigation workflow.&lt;/p&gt;

&lt;p&gt;The TigerGraph × HHGoa 2026 challenge helped us understand how graph technology can connect related entities and support fraud investigation.&lt;/p&gt;

&lt;p&gt;Thank you to TigerGraph and the HHGoa team for the opportunity to work on this challenge.&lt;/p&gt;

&lt;h1&gt;
  
  
  TigerGraph #FraudDetection #Python #Hackathon
&lt;/h1&gt;

</description>
    </item>
  </channel>
</rss>
