Skip to content

Data & Pipelines

Use this category for database-connected functions and data movement flows. These recipes focus on reading, transforming, and persisting records across operational data stores.

Category map

flowchart LR
    Trigger[HTTP / timer / queue trigger] --> Fn[Azure Function]
    Fn -->|read| DB[(Database)]
    Fn -->|transform| Fn
    Fn -->|write| DB
Recipe Trigger Difficulty
Change Feed Processor Cosmos DB change feed Intermediate
DB Input and Output Bindings HTTP + DB bindings Intermediate
File Processing Pipeline Blob + Queue Intermediate
CQRS Read Projection Cosmos DB change feed Advanced
SQLAlchemy REST Pagination HTTP + SQL Intermediate
ETL Enrichment Timer + HTTP Intermediate