Recipes

187 ready-to-run examples covering SQL, Cypher, vector search, AutoML, and multimodal queries. Copy any one into the bundled web UI of your CE install and watch it run.

187 of 187 recipes

advanced-patterns
15 minutes
Semantic Document Search
advanced

Build intelligent document search using text embeddings for meaning-based retrieval

sqladvancedpdfvector
advanced-patterns
15 minutes
Audio Transcription and Analysis
advanced

Transcribe audio content and analyze transcripts with AI functions

sqladvancedaudioai
advanced-patterns
15 minutes
Video Content Intelligence
advanced

Extract metadata, scenes, and insights from video content using AI functions

sqladvancedvideoai
advanced-patterns
15 minutes
Multimodal Content Search
advanced

Search across images, videos, audio, and documents using unified vector search

sqladvancedmultimodalvector
advanced-patterns
15 minutes
Content Recommendation Engine
advanced

Build a recommendation system using vector similarity and user behavior

sqladvancedvectorrecommendations
advanced-patterns
15 minutes
Media Workflow Automation
advanced

Create automated media processing pipelines with status tracking and notifications

sqladvancedworkflowautomation
advanced-patterns
15 minutes
Media Analytics Dashboard
advanced

Build comprehensive analytics for media usage, engagement, and performance

sqladvancedanalyticsreporting
advanced-patterns
15 minutes
Media Compliance and Audit
advanced

Track media compliance, retention policies, and audit trails for governance

sqladvancedcomplianceaudit
advanced-patterns
15 minutes
Cross-Platform Media Sync
advanced

Synchronize media assets across multiple platforms and track sync status

sqladvancedsynchronizationintegration
agents
16 minutes
A Self-Improving Agent (learn from feedback)
advancedsql

Build an AI agent that learns from thumbs-up/down feedback — train a model on past interactions to predict whether a draft reply will satisfy the user, all in one SQL database. Works with Claude Code, OpenClaw, LangChain, or a voice agent.

ai-agentself-improvingfeedbackautoml
agents
12 minutes
Agentic DevOps Incident Triage
intermediateen

An incident-triage agent that correlates the alert with recent deploys, runbooks, and customer impact — producing a structured 'here's what I see / suspected cause / recommended action' in one SQL call.

ai-agentagent-rundevopssre
agents
12 minutes
Agentic FinServ Compliance Reviewer
intermediateen

A compliance-reviewer agent that walks the transaction table, consults KYC docs and regulations by meaning, surfaces hits with citations, and drafts an SAR-style write-up — all in SQL via AGENT_RUN.

ai-agentagent-runfinservcompliance
agents
12 minutes
Agentic Healthcare Clinical Q&A
intermediateen

A clinical-assistant agent that grounds answers in the patient's chart AND the relevant guideline — never just one or the other. Built on a single SQL session with AGENT_RUN.

ai-agentagent-runhealthcareclinical
agents
12 minutes
Agentic HR Employee Q&A
intermediateen

An HR-assistant agent that combines the employee's specific row (country, tenure, role band) with the right policy doc to answer correctly — not a generic RAG-only bot that hallucinates country-specific rules.

ai-agentagent-runhrpeople-ops
agents
12 minutes
Agentic Insurance Claims Triage
intermediateen

Stand up an in-database claims-adjuster agent that retrieves policy clauses by meaning, scans prior-claim history for fraud signals, and recommends an action — all in a single SQL session via AGENT_RUN.

ai-agentagent-runinsuranceclaims
agents
12 minutes
Agentic Legal — Contract Clause Review
intermediateen

A contract-reviewer agent that diffs an inbound MSA against your standard playbook AND your recent negotiated precedents — surfacing deviations with the closest prior deal as a reference.

ai-agentagent-runlegalcontracts
agents
12 minutes
Agentic Logistics — Shipment Exception
intermediateen

A shipment-exception agent that joins the late shipment with the customer's SLA tolerance and recalls similar past exceptions, then drafts both the customer notice and the carrier dispatch — in one SQL call.

ai-agentagent-runlogisticssupply-chain
agents
12 minutes
Agentic Retail Returns Triage
intermediateen

A returns-processing agent that reads the order, checks return-policy by meaning, scans for abuse patterns in prior returns, checks live inventory for swap availability, and recommends a specific action — all in SQL via AGENT_RUN.

ai-agentagent-runretailecommerce
agents
12 minutes
Agentic SaaS Support — Tier-1 Auto-Resolution
intermediateen

A tier-1 support agent that reads the customer's actual account state AND the help docs in one call, then either resolves the ticket or escalates with full context — not a RAG-only chatbot.

ai-agentagent-runsaassupport
agents
12 minutes
Agentic Sales Account Research
intermediateen

An account-research agent that pulls the CRM record, finds similar past wins by meaning, and outputs a one-page briefing before the sales call — all in SQL via AGENT_RUN.

ai-agentagent-runsalescrm
agents
22 minutes
Build a Customer-Support Agent on One Database
advancedsql

Build a complete AI customer-support agent on one database — semantic ticket memory, RAG over your help docs, intent routing, priority scoring, and a customer graph, no five-service stack. Works with Claude Code, OpenClaw, LangChain, or a voice agent.

ai-agentcustomer-supportragintent-routing
agents
20 minutes
Build a Personal Assistant Agent (memory + tools + RAG)
advancedsql

Build a personal AI assistant on one database — long-term memory of preferences, semantic tool routing, RAG over your notes, and grounded replies. No five-service stack. Works with Claude Code, OpenClaw, LangChain, or a voice agent.

ai-agentpersonal-assistantagent-memorytool-routing
agents
22 minutes
Build a Research / Knowledge Agent (RAG + KG)
advancedcypher

Build an AI research agent that reads documents, builds a knowledge graph, answers multi-hop questions with citations, and synthesizes a briefing — RAG plus a knowledge graph in one database. Works with Claude Code, OpenClaw, LangChain, or a voice agent.

ai-agentresearch-agentragknowledge-graph
agents
18 minutes
Build a Triage / Routing Agent
advancedsql

Build an AI triage agent that classifies every incoming request by meaning, scores its urgency with AutoML, and routes it to the right queue or human — all on one database. Works with Claude Code, OpenClaw, LangChain, or a voice agent.

ai-agenttriage-agentroutingintent-classification
agents
16 minutes
Build an Agent Knowledge Graph from Text
advancedcypher

Turn unstructured text into a queryable knowledge graph an AI agent can reason over — extract entities and relationships with GENERATE, store them as a Cypher graph, all in one database. Works with Claude Code, OpenClaw, LangChain, or a voice agent.

ai-agentknowledge-graphentity-extractioncypher
agents
22 minutes
Build an AI SDR / Outbound Agent
advancedsql

Build an AI SDR agent on one database — score leads with AutoML, match them to case studies by meaning, map the buying committee as a graph, and draft personalized outreach with GENERATE. Works with Claude Code, OpenClaw, LangChain, or a voice agent.

ai-agentai-sdrlead-scoringoutbound
agents
14 minutes
Conversation Memory + Rolling Summary for a Chatbot
intermediateen

Store a chatbot's full conversation history and keep a rolling summary so it never blows the context window — turn buffer, semantic recall, and auto-summary in one SQL database. Works with Claude Code, OpenClaw, LangChain, or a voice agent.

chatbotconversation-memoryrolling-summaryvector
agents
16 minutes
Conversation Memory + Structured Facts for a Chatbot
intermediateen

The next-step variant of the rolling-summary recipe — replace the single prose summary with a typed chat_facts table (category, key, value, confidence, updated_at). Higher recall, surgical updates, no contradiction accumulation.

chatbotconversation-memorystructured-factsvector
agents
14 minutes
Episodic + Semantic Memory for an Agent
intermediateen

Give an AI agent two memory types — episodic (what happened, when) and semantic (durable facts) — in one SQL store, and recall across both by meaning. Framework-agnostic: Claude Code, OpenClaw, LangChain, or a voice agent.

ai-agentepisodic-memorysemantic-memoryagent-memory
agents
12 minutes
Give Any AI Agent Long-Term Memory (in SQL)
intermediateen

Add persistent, semantic long-term memory to any AI agent — store and recall memories by meaning with vector embeddings in plain SQL. Framework-agnostic: works with Claude Code, OpenClaw, LangChain, or a custom or voice agent.

ai-agentlong-term-memoryvectorembeddings
agents
16 minutes
GraphRAG: Multi-hop Answers for an Agent
advancedcypher

Give an AI agent multi-hop reasoning — combine semantic retrieval with a knowledge graph so it can answer questions that need several connected facts, not just one passage. Works with Claude Code, OpenClaw, LangChain, or a voice agent.

ai-agentgraphragknowledge-graphmulti-hop
agents
12 minutes
Intent Classification for an Agent
intermediateen

Classify what a user wants — billing, support, sales, cancel — so your AI agent routes the conversation correctly, using vector nearest-example matching in plain SQL. No training job, works with Claude Code, OpenClaw, LangChain, or a voice agent.

ai-agentintent-classificationnluvector
agents
14 minutes
Multi-Agent Shared Memory (blackboard)
intermediateen

Let multiple AI agents collaborate through one shared memory — a blackboard where each agent posts findings and reads what the others know, by meaning, in plain SQL. Works with Claude Code, OpenClaw, LangChain, or a voice agent.

multi-agentshared-memoryblackboardagent-collaboration
agents
12 minutes
RAG: Ground Any Agent's Answers in Your Data
intermediateen

Build retrieval-augmented generation for any AI agent in one database — embed your docs, retrieve the most relevant chunks by meaning, and generate a grounded answer in plain SQL. Works with Claude Code, OpenClaw, LangChain, or a voice agent.

ai-agentragretrieval-augmented-generationvector
agents
13 minutes
RAG with Citations (grounded answers that cite sources)
intermediateen

Make an AI agent cite its sources — retrieve passages, generate an answer, and attach the source documents it used, all in one SQL database. Auditable RAG that works with Claude Code, OpenClaw, LangChain, or a voice agent.

ai-agentragcitationsretrieval-augmented-generation
agents
12 minutes
Recall Agent Memory by Meaning + Recency
intermediateen

Make an AI agent recall the right memories by blending semantic relevance with recency — fresh, on-point context in one SQL query, no separate vector store or cache. Works with Claude Code, OpenClaw, LangChain, or a voice agent.

ai-agentagent-memoryrecencyvector
agents
14 minutes
Self-Checking / Grounded Generation (validate the answer)
intermediateen

Stop your AI agent from hallucinating — generate an answer, then have the agent verify it against your source data before returning it, all in one SQL database. Self-checking RAG for Claude Code, OpenClaw, LangChain, or a voice agent.

ai-agentgrounded-generationself-checkhallucination
agents
13 minutes
Semantic Deduplication of Agent Memories
intermediateen

Stop your AI agent from storing the same fact ten times — detect and merge near-duplicate memories by meaning with vector similarity in plain SQL. Keeps agent memory clean for Claude Code, OpenClaw, LangChain, or a voice agent.

ai-agentdeduplicationagent-memoryvector
agents
12 minutes
Semantic Tool Routing (function-calling without a framework)
intermediateen

Route an AI agent's request to the right tool by meaning — semantic function-calling with vector embeddings in plain SQL, no framework, no brittle keyword rules. Works with Claude Code, OpenClaw, LangChain, or a voice agent.

ai-agenttool-routingfunction-callingsemantic-routing
anomaly-detection
5 minutes
Credit Card Fraud Detection (AutoML)
intermediatesql

Train a binary classifier on labelled transactions, deploy it, and score new transactions in real time — the BFSI ground-truth pattern for card-not-present fraud.

anomaly-detectionautomlfraudbfsi
anomaly-detection
5 minutes
SaaS Account Takeover Detection (AutoML)
intermediatesql

Train a binary classifier on logins to catch credential-stuffing + session hijack attempts in real time — the SaaS security ground-truth pattern for account takeover (ATO).

anomaly-detectionautomlsecuritysaas
anomaly-detection
5 minutes
Insurance Claim Fraud Auto-Flag (AutoML)
intermediatesql

Train a binary classifier on past claims to auto-flag suspect submissions — turn the legacy red-flag-rules engine into a learning model.

anomaly-detectionautomlinsurancefraud
anomaly-detection
5 minutes
30-Day Hospital Readmission Risk (AutoML)
intermediatesql

Train a classifier to flag patients at high risk of 30-day readmission at discharge time — directly attacks the CMS Hospital Readmissions Reduction Program penalty.

anomaly-detectionautomlhealthcarereadmission
anomaly-detection
2 minutes
API Latency Spike Detection (3-sigma)
beginnersql

Catch latency-spike anomalies with pure SQL Z-scores — no model training, no infra, runs against any AIDB instance.

anomaly-detectionstatisticalobservabilitysre
anomaly-detection
3 minutes
Manufacturing Sensor Drift Detection (per-machine baseline)
beginnersql

Catch silent equipment drift by comparing each sensor reading to that machine's own historical mean/sigma — the Industry-4.0 pattern that beats global thresholds.

anomaly-detectionstatisticalmanufacturingiot
anomaly-detection
3 minutes
Patient Vital-Sign Anomaly (per-patient baseline)
beginnersql

Catch HR spikes against each patient's own personal baseline — the clinical pattern that beats fleet-wide thresholds and prevents alert fatigue.

anomaly-detectionstatisticalhealthcareclinical
anomaly-detection
3 minutes
Smart-Meter Tampering Detection (sudden-drop)
beginnersql

Catch electricity-meter tampering by flagging hours where consumption suddenly drops to near-zero — the utility-fraud pattern that costs the global grid $96B/year.

anomaly-detectionstatisticalutilitiesmeter-fraud
anomaly-detection
4 minutes
Insurance Narrative Fraud Detection (semantic)
intermediatesql

Use EMBED + COSINE_SIMILARITY to catch claim narratives that semantically match known fraud patterns — the unstructured-data side of SIU fraud detection.

anomaly-detectionembeddingsvectorinsurance
audio-podcasts
8 minutes
Basic Audio Storage
beginner

Create a simple table for MP3 audio files with essential metadata for audio file management

sqlbeginneraudiomp3
audio-podcasts
10 minutes
Multi-Format Audio Library
beginner

Store audio files in multiple formats including MP3, WAV, FLAC, AAC, and OGG for comprehensive audio management

sqlbeginneraudiomp3
audio-podcasts
12 minutes
Podcast Episode Manager
beginner

Store podcast episodes with show relationships for building a complete podcast management system

sqlbeginneraudiopodcasts
audio-podcasts
15 minutes
Music Track Catalog
beginner

Create a music library with artist and album relationships for comprehensive music management

sqlbeginneraudiomusic
audio-podcasts
10 minutes
Voice Recording Storage
beginner

Store voice memos and recordings with timestamps for personal and business voice note management

sqlbeginneraudiovoice
audio-podcasts
12 minutes
Podcast Search by Transcript
intermediate

Search podcast content via transcribed text for discovering episodes by spoken content

sqlintermediateaudiopodcasts
audio-podcasts
12 minutes
Audiobook Chapter Management
beginner

Organize audiobook chapters with sequential ordering for complete audiobook library management

sqlbeginneraudioaudiobooks
audio-podcasts
10 minutes
Call Recording Archive
beginner

Store customer service call recordings with metadata for compliance and quality assurance

sqlbeginneraudiocalls
audio-podcasts
12 minutes
Audio Playlist System
beginner

Create playlists with ordered audio tracks for music and podcast playlist management

sqlbeginneraudioplaylists
audio-podcasts
10 minutes
Sound Effect Library
beginner

Catalog sound effects with categories and tags for game development and media production

sqlbeginneraudiosound-effects
audio-podcasts
10 minutes
Meeting Recording Storage
beginner

Store meeting recordings with attendee metadata for corporate meeting management

sqlbeginneraudiomeetings
audio-podcasts
10 minutes
Audio Language Detection
intermediate

Store audio files with detected language from transcription for multilingual content management

sqlintermediateaudiolanguage
core-foundations
5 minutes
Hello World Table
beginner

Create your first AIDB table with basic data types - the essential starting point for learning AIDB SQL

sqlbeginnerbasicscreate-table
core-foundations
10 minutes
Multi-Type Table
beginner

Create a table using all standard SQL types including INTEGER, VARCHAR, BOOLEAN, DECIMAL, and more

sqlbeginnerdata-typescreate-table
core-foundations
10 minutes
Multimedia Column Types
beginner

Create a table with AUDIO, VIDEO, IMAGE, and PDF columns for storing rich media content

sqlbeginnermultimediaaudio
core-foundations
10 minutes
Vector Column Basics
beginner

Create a table with VECTOR type for storing embeddings and enabling similarity search

sqlbeginnervectorsembeddings
core-foundations
10 minutes
Primary Keys and Constraints
beginner

Create tables with PRIMARY KEY, UNIQUE, NOT NULL, and CHECK constraints for data integrity

sqlbeginnerconstraintsprimary-key
core-foundations
15 minutes
Foreign Key Relationships
beginner

Create related tables with FOREIGN KEY constraints to establish referential integrity

sqlbeginnerforeign-keyrelationships
core-foundations
8 minutes
Default Values
beginner

Create tables with DEFAULT values for automatic population of columns

sqlbeginnerdefaultscreate-table
core-foundations
12 minutes
JSON and JSONB Columns
beginner

Create tables with JSON and JSONB columns for flexible metadata and semi-structured data storage

sqlbeginnerjsonjsonb
core-foundations
10 minutes
UUID Primary Keys
beginner

Create tables using UUID for distributed-friendly unique identifiers instead of sequential integers

sqlbeginneruuidprimary-key
core-foundations
10 minutes
Timestamp Tracking
beginner

Create tables with created_at and updated_at timestamp columns for automatic record tracking

sqlbeginnertimestampaudit
database
10 minutes
Financial Audit Trail (Immutable)
advancedsql

Quit demo to show the capabilities of IMMUTABLE tables and security features!

databasesqlaudit-trailimmutable
document-processing
8 minutes
PDF Document Storage
beginner

Store and manage PDF documents with metadata for document management systems

sqlbeginnerpdfdocuments
document-processing
10 minutes
PDF Text Extraction
intermediate

Extract and search text content from PDF documents using AI

sqlintermediatepdftext-extraction
document-processing
12 minutes
Multi-Page PDF Processing
intermediate

Process multi-page PDF documents with page-level metadata and content tracking

sqlintermediatepdfpages
document-processing
15 minutes
Document Embedding Search
advanced

Use vector embeddings for semantic document search and similarity matching

sqladvancedpdfembeddings
document-processing
12 minutes
Invoice Data Extraction
intermediate

Extract and store structured data from invoice PDF documents

sqlintermediatepdfinvoice
document-processing
12 minutes
Legal Document Repository with Contract Tracking
intermediate

Store and manage legal documents with contract tracking and compliance features

sqlintermediatepdflegal
document-processing
12 minutes
Document Version Control
intermediate

Track document versions with change history and revision management

sqlintermediatepdfversioning
document-processing
15 minutes
Contract Management System
intermediate

Manage contracts with parties, terms, obligations, and renewal tracking

sqlintermediatepdfcontracts
document-processing
12 minutes
Resume/CV Database
intermediate

Store and search candidate resumes with skills extraction and matching

sqlintermediatepdfresume
document-processing
15 minutes
Academic Paper Repository
advanced

Store research papers with citations, authors, and semantic search capabilities

sqladvancedpdfacademic
document-processing
12 minutes
Document Classification
advanced

Automatically classify documents into categories using AI and rule-based systems

sqladvancedpdfclassification
document-processing
12 minutes
Form Data Extraction
intermediate

Extract structured data from PDF forms including fields, values, and validation

sqlintermediatepdfforms
document-processing
12 minutes
Document Workflow System
intermediate

Manage document approval workflows with routing, tasks, and audit trails

sqlintermediatepdfworkflow
document-processing
15 minutes
Knowledge Base with PDFs
advanced

Build a searchable knowledge base from PDF documents using AI embeddings

sqladvancedpdfknowledge-base
document-processing
12 minutes
Document Compliance Tracking
intermediate

Track document compliance requirements with retention policies and audit trails

sqlintermediatepdfcompliance
e-commerce-media
10 minutes
Product Image Gallery
beginner

Manage product images with multiple views, variants, and quality levels for e-commerce

sqlbeginnerimagee-commerce
e-commerce-media
12 minutes
Product Video Demos
intermediate

Manage product demonstration videos with timestamps and feature highlights

sqlintermediatevideoe-commerce
e-commerce-media
12 minutes
User-Uploaded Product Reviews with Images
intermediate

Manage customer reviews with photos and ratings for social proof

sqlintermediateimagee-commerce
e-commerce-media
10 minutes
Brand Asset Library
intermediate

Manage brand assets including logos, guidelines, and marketing materials

sqlintermediateimagebranding
e-commerce-media
10 minutes
Product Comparison Images
intermediate

Create and manage product comparison visuals for helping customers decide

sqlintermediateimagee-commerce
e-commerce-media
12 minutes
Promotional Banner Management
intermediate

Manage seasonal promotions, campaign banners, and marketing visuals

sqlintermediateimagemarketing
e-commerce-media
10 minutes
Size Guide with Images
beginner

Create visual size guides with measurement images and fit recommendations

sqlbeginnerimagee-commerce
e-commerce-media
12 minutes
Product Unboxing Video Library
intermediate

Manage unboxing videos showing product packaging and first impressions

sqlintermediatevideoe-commerce
education-elearning
12 minutes
Course Video Library
intermediate

Organize and manage educational course videos with chapters, transcripts, and progress tracking

sqlintermediatevideoeducation
education-elearning
12 minutes
Lecture Recording Management
intermediate

Manage university lecture recordings with scheduling, multi-camera capture, and searchable transcripts

sqlintermediatevideoaudio
education-elearning
12 minutes
Student Assignment Submissions
intermediate

Manage multimedia student assignment submissions with versioning and feedback

sqlintermediatevideoaudio
education-elearning
10 minutes
Educational Slide Decks
intermediate

Manage presentation slides with versioning, annotations, and student notes

sqlintermediatepdfimage
education-elearning
12 minutes
Quiz and Assessment Media
intermediate

Create multimedia quizzes with images, audio, and video questions

sqlintermediateimageaudio
education-elearning
12 minutes
Virtual Classroom Recordings
intermediate

Manage online class recordings with breakout rooms, chat logs, and participant tracking

sqlintermediatevideoaudio
education-elearning
12 minutes
Educational Resource Library
intermediate

Build a comprehensive multimedia learning resource library with categorization and recommendations

sqlintermediatevideoaudio
enterprise-content
12 minutes
Corporate Training Videos
intermediate

Manage employee training content with completion tracking and certification

sqlintermediatevideoenterprise
enterprise-content
12 minutes
Marketing Asset Management
intermediate

Organize marketing assets across campaigns with versioning, approvals, and usage tracking

sqlintermediateimagevideo
enterprise-content
10 minutes
Corporate Communications Archive
intermediate

Archive and search corporate communications including memos, announcements, and recordings

sqlintermediatevideoaudio
enterprise-content
12 minutes
Product Documentation Library
intermediate

Manage technical product documentation with versioning, localization, and feedback

sqlintermediatepdfimage
enterprise-content
12 minutes
Enterprise Legal & Compliance Document Repository
intermediate

Manage legal contracts, agreements, and compliance documents with expiration tracking

sqlintermediatepdfenterprise
enterprise-content
10 minutes
Brand Asset Guidelines
intermediate

Manage brand guidelines, logos, and visual identity assets with usage rules

sqlintermediateimagepdf
enterprise-content
10 minutes
Employee Onboarding Media
intermediate

Manage new hire onboarding content including videos, documents, and checklists

sqlintermediatevideopdf
enterprise-content
10 minutes
Meeting Recordings Archive
intermediate

Archive and search corporate meeting recordings with transcripts and action items

sqlintermediatevideoaudio
graph
3 minutes
Hello Graph: Friend-of-Friend
beginnercypher

Build a 6-person social graph and find friends-of-friends with a single Cypher pattern match

graphcyphersocialbeginner
graph
5 minutes
Org Chart: Find everyone under a VP
beginnercypher

Traverse a 4-level reporting hierarchy with variable-length paths to list every direct and indirect report

graphcypherhierarchybeginner
graph
5 minutes
Movie recommendation by shared genre
beginnercypher

Recommend movies a user has not seen by traversing watched-movies and shared-genre patterns

graphcypherrecommendationbeginner
graph
5 minutes
Product co-purchase, customers also bought
beginnercypher

Build an order-product-customer graph and surface the top items frequently bought with a target product

graphcypherecommercebeginner
graph
5 minutes
Friend-of-friend recommendation with strength
beginnercypher

Use weighted edges and mutual-friend counts to suggest new connections ranked by tie strength

graphcyphersocialrecommendation
graph
7 minutes
Fraud ring detection in under 50ms
intermediatecypher

Detect circular money-laundering patterns up to length 4 by finding cycles in a transaction graph

graphcypherfraudsecurity
graph
6 minutes
Supply chain blast radius of a vendor failure
intermediatecypher

Trace which products and customers are affected if a critical vendor goes offline

graphcyphersupply-chainintermediate
graph
7 minutes
Drug interaction network for patient safety
intermediatecypher

Flag dangerous drug combinations across all patients via a prescribed-drug interaction graph

graphcypherhealthcareintermediate
graph
6 minutes
RBAC effective permissions through group inheritance
intermediatecypher

Resolve what a user can actually do by walking user-group-role-permission graph paths

graphcypherrbacsecurity
graph
7 minutes
DAG, find critical build dependencies
intermediatecypher

Topologically order a software dependency graph and find the longest critical path

graphcypherdevopsintermediate
graph
8 minutes
Citation network, most influential paper
intermediatecypher

Rank papers by citation influence using a multi-hop weighted graph traversal

graphcypherknowledgeintermediate
graph
7 minutes
Identity resolution, merge duplicate customers
intermediatecypher

Cluster duplicate customer records that share emails, phones, or addresses across systems

graphcyphermdmintermediate
graph
9 minutes
Anti-money-laundering layering detection
advancedcypher

Surface multi-hop transaction chains that obscure source-of-funds, longer than 3 hops with high values

graphcypheramlfraud
graph
8 minutes
Knowledge graph QA, who founded the iPhone maker
advancedcypher

Answer multi-hop natural-language questions by traversing a small entity graph

graphcypherknowledgeadvanced
graph
10 minutes
GraphRAG, hybrid vector + graph multi-hop QA
advancedcypher

Combine SIMILAR_TO vector hops with structural patterns to answer questions vector-only RAG can't

graphcyphergraphragsimilar_to
graph
6 minutes
Earnings-call transcript to knowledge graph
beginnercypher

Send a paragraph of a CFO call to /v2/graph/extract and query the resulting entity graph

graphcypherextractfinance
graph
9 minutes
Contract clause graph with LLM-judged risk
intermediatecypher

Extract parties, obligations, and dates from contract text, then have LLM_SCORE flag risky clauses

graphcypherextractllm_score
graph
5 minutes
Semantic product recommendations with SIMILAR_TO
beginnercypher

Recommend "products like this" by walking SIMILAR_TO over embedding properties on Product nodes

graphcyphersimilar_torecommendation
graph
9 minutes
Agentic memory graph for an AI assistant
intermediatecypher

Build a long-term episodic memory graph for an LLM agent, recall by semantic + structural patterns

graphcypheragenticsimilar_to
graph
9 minutes
Talent matching, resume to job by skill graph + embedding
intermediatecypher

Match candidates to roles with structural skill hits plus semantic similarity and an LLM fit score

graphcyphersimilar_tollm_score
graph
9 minutes
Semantic identity resolution beyond exact match
advancedcypher

Catch duplicate customers whose emails differ but whose name + address embed alike

graphcyphersimilar_tollm_score
graph
9 minutes
Threat-intel correlation across feeds
intermediatecypher

Cluster IOCs and actors across feeds by extracting from advisories and matching with SIMILAR_TO

graphcypherextractsimilar_to
graph
8 minutes
Supply-chain risk from news headlines
intermediatecypher

Extract supplier-event edges from news prose and grade each event with LLM_SCORE

graphcypherextractllm_score
graph
10 minutes
Drug repurposing via mechanism similarity
advancedcypher

Walk drug-target-disease chains then use SIMILAR_TO on mechanism embeddings to find candidates

graphcyphersimilar_tohealthcare
graph
9 minutes
Literature review graph from paper abstracts
intermediatecypher

Extract entities from abstracts and cluster papers semantically with SIMILAR_TO

graphcypherextractsimilar_to
graph
9 minutes
Rank community influencers with LLM authenticity
advancedcypher

Combine connection-count centrality with LLM_SCORE for authenticity, surface real influencers

graphcypherllm_scoresocial
graph
10 minutes
Code dependency CVE relevance with LLM_SCORE
advancedcypher

Walk transitive dependency edges and have the LLM judge if a CVE actually applies in your context

graphcypherllm_scoredevops
graph
6 minutes
Find similar patients by symptom embedding
beginnercypher

Use SIMILAR_TO over symptom embeddings on patient nodes to surface clinical lookalikes

graphcyphersimilar_tohealthcare
graph
8 minutes
Meeting minutes to action-item graph
intermediatecypher

Extract action items, owners, and dates from meeting minutes and rank urgency with LLM_SCORE

graphcypherextractllm_score
healthcare-imaging
12 minutes
Medical Image Storage
intermediate

Store and manage medical images with patient records and metadata

sqlintermediateimagehealthcare
healthcare-imaging
10 minutes
X-Ray Image Management
intermediate

Organize and manage radiographic X-ray images with views and annotations

sqlintermediateimagehealthcare
healthcare-imaging
15 minutes
CT and MRI Scan Organization
advanced

Manage complex cross-sectional imaging studies with multiple sequences and reconstructions

sqladvancedimagehealthcare
healthcare-imaging
12 minutes
Pathology Slide Images
advanced

Manage whole slide images for digital pathology and tissue analysis

sqladvancedimagehealthcare
healthcare-imaging
12 minutes
Medical Image Annotation
intermediate

Create and manage annotations, measurements, and findings on medical images

sqlintermediateimagehealthcare
healthcare-imaging
10 minutes
Patient Imaging History
intermediate

Track and query patient imaging studies over time for longitudinal analysis

sqlintermediateimagehealthcare
healthcare-imaging
12 minutes
Radiology Report Integration
advanced

Link radiology reports with images and extract structured findings

sqladvancedimagehealthcare
healthcare-imaging
15 minutes
Medical Image Analytics
advanced

Analyze medical imaging data for operational insights and quality metrics

sqladvancedimagehealthcare
image-management
10 minutes
Multi-Format Image Library
beginner

Store images in multiple formats including JPEG, PNG, WEBP, and GIF with format-specific columns

sqlbeginnerimagesjpeg
image-management
10 minutes
Image with Metadata
beginner

Store images with dimensions, file size, and EXIF data in JSON columns for rich metadata management

sqlbeginnerimagesmetadata
image-management
12 minutes
Photo Album Organization
beginner

Create albums and photos tables with relationships for organizing images into collections

sqlbeginnerimagesalbums
image-management
12 minutes
Image Tagging System
beginner

Implement a flexible tagging system for images using a junction table for many-to-many relationships

sqlbeginnerimagestags
image-management
10 minutes
Profile Picture Storage
beginner

Store user profile pictures with thumbnail variants for efficient display at different sizes

sqlbeginnerimagesprofile
image-management
12 minutes
Image OCR Extraction
intermediate

Extract text from images using the EXTRACT_TEXT function for searchable image content

sqlintermediateimagesocr
image-management
10 minutes
Image Dimension Query
intermediate

Query images by dimensions using the DIMENSIONS function for filtering by size and aspect ratio

sqlintermediateimagesdimensions
image-management
15 minutes
Image Embedding Search
intermediate

Create embeddings for images to enable similarity search and visual content discovery

sqlintermediateimagesembeddings
image-management
10 minutes
Screenshot Archive
beginner

Store and organize application screenshots with metadata for bug tracking and documentation

sqlbeginnerimagesscreenshots
image-management
10 minutes
Product Image Variants
beginner

Store multiple image sizes for e-commerce products including thumbnails, medium, and full-size variants

sqlbeginnerimagesecommerce
image-management
12 minutes
Scanned Document Images
intermediate

Store scanned documents as images with OCR text extraction for searchable document archives

sqlintermediateimagesdocuments
ml
5 minutes
Hello World: Linear Regression (y = 2x + 1)
beginnersql

Train a simple regression model, deploy it, run predictions, then verify results match the known function.

mlsqlregressionbeginner
ml
8 minutes
Customer Churn Prediction
intermediatesql

Build a model to predict which customers are likely to churn based on their account characteristics and usage patterns.

mlsqlclassificationcustomer-analytics
ml
10 minutes
Drug Discovery Candidate Selection
advancedsql

Score compounds for likelihood of success. Prioritize top candidates for lab testing.

mlsqlregressionlife-sciences
ml
10 minutes
Real Estate AI: Property Matching & Market Analysis
advancedsql

Build an intelligent real estate platform that matches buyers with properties, predicts market trends, analyzes property values, and generates insi...

mlsqlreal-estatevector-search
ml
10 minutes
AI-Driven Marketing & Customer Insights
advancedsql

Create intelligent marketing campaigns by analyzing customer behavior, segmenting audiences, predicting churn, and generating personalized content...

mlsqlmarketingsegmentation
security-surveillance
12 minutes
Security Camera Video Storage
intermediate

Store and manage surveillance video footage from security cameras

sqlintermediatevideosecurity
security-surveillance
10 minutes
Access Control Logs with Images
intermediate

Track access control events with badge photos and entry images

sqlintermediateimagesecurity
security-surveillance
12 minutes
License Plate Recognition
intermediate

Store and query license plate recognition data from parking and security systems

sqlintermediateimagesecurity
security-surveillance
12 minutes
Facial Recognition Logging
advanced

Log and query facial recognition events for access control and security

sqladvancedimagesecurity
security-surveillance
12 minutes
Incident Video Evidence
advanced

Manage video evidence collection and chain of custody for security incidents

sqladvancedvideosecurity
security-surveillance
10 minutes
Security Alert Management
intermediate

Manage security alerts, notifications, and response workflows

sqlintermediatesecurityalerts
video-streaming
8 minutes
Basic Video Storage - MP4
beginner

Store and retrieve MP4 video files with metadata for video content management

sqlbeginnervideomp4
video-streaming
12 minutes
Multi-Format Video Library
intermediate

Store videos in multiple formats (MP4, AVI, MKV, WEBM, MOV) for cross-platform compatibility

sqlintermediatevideoformats
video-streaming
8 minutes
Video Duration Query
beginner

Query and analyze video content by duration for content planning and scheduling

sqlbeginnervideoduration
video-streaming
12 minutes
Video Frame Extraction
intermediate

Extract and store video frames for thumbnails, previews, and image analysis

sqlintermediatevideoframes
video-streaming
10 minutes
Video Audio Track Extraction
intermediate

Extract and manage audio tracks from video files for transcription and analysis

sqlintermediatevideoaudio
video-streaming
12 minutes
Video Transcription
intermediate

Transcribe video content to text for searchability, subtitles, and accessibility

sqlintermediatevideotranscription
video-streaming
10 minutes
Video Chapter Markers
beginner

Add chapter markers to videos for enhanced navigation and content organization

sqlbeginnervideochapters
video-streaming
10 minutes
Video Thumbnail Storage
beginner

Store multiple thumbnail images for video content with selection preferences

sqlbeginnervideothumbnails
video-streaming
10 minutes
Video Category Organization
beginner

Organize videos into hierarchical categories with tags for content discovery

sqlbeginnervideocategories
video-streaming
12 minutes
Video Series Management
intermediate

Manage video series with episodes, seasons, and sequential ordering

sqlintermediatevideoseries
video-streaming
15 minutes
User-Generated Video Platform
intermediate

Build a platform for user-uploaded videos with moderation and engagement features

sqlintermediatevideougc
video-streaming
12 minutes
Video View Tracking
intermediate

Track video views with detailed analytics including watch time and completion rates

sqlintermediatevideoanalytics
video-streaming
12 minutes
Video Subtitle Storage
intermediate

Store multi-language subtitles and captions for video accessibility

sqlintermediatevideosubtitles
voice-agents
24 minutes
Build a Voice Support Agent (memory + routing + RAG)
advancedsql

Build a complete voice support agent on one database — caller memory, real-time skill routing, RAG-grounded spoken answers, an urgency model, and a semantic cache, all in SQL. The brain for any STT/TTS stack (Vapi, LiveKit, Twilio, Pipecat).

voice-agentvoice-supportragskill-routing
voice-agents
15 minutes
Caller Memory & Personalization (returning callers)
intermediateen

Make a voice AI agent recognize returning callers — recall their past calls and preferences by meaning and map their account relationships as a graph, so it greets them by context, not a cold script. For any STT/TTS stack (Vapi, LiveKit, Twilio, Pipecat).

voice-agentcaller-memorypersonalizationvector
voice-agents
14 minutes
Conversation Memory for a Voice Agent
intermediateen

Give a voice AI agent memory across a call and between calls — store transcribed turns, recall by meaning, and keep a rolling summary so it never loses the thread. Database-as-the-brain for any STT/TTS stack (Vapi, LiveKit, Twilio, Pipecat).

voice-agentconversation-memoryrolling-summaryvector
voice-agents
13 minutes
Low-Latency Semantic Answer Cache for Voice
intermediateen

Cut voice AI latency and cost with a semantic answer cache — serve a stored answer when a caller's question means the same as one you've answered before, even if worded differently, with a vector lookup in SQL. For any STT/TTS stack (Vapi, LiveKit, Twilio, Pipecat).

voice-agentsemantic-cachelatencyvector
voice-agents
13 minutes
Real-Time Intent → Skill Routing for a Voice Agent
intermediateen

Route a voice AI agent's caller to the right skill in real time — match the transcribed utterance to a skill by meaning with a vector lookup, fast enough for a live call. Database-as-the-brain for any STT/TTS stack (Vapi, LiveKit, Twilio, Pipecat).

voice-agentintent-routingskill-routingsemantic-routing
voice-agents
14 minutes
Voice-Agent RAG Knowledge Base (ground spoken answers)
intermediateen

Ground a voice AI agent's spoken answers in your own knowledge base — retrieve the right passage by meaning and generate a short, speakable, accurate reply, so the agent never makes things up on a call. For any STT/TTS stack (Vapi, LiveKit, Twilio, Pipecat).

voice-agentragretrieval-augmented-generationvector