this

this-rs ๐Ÿฆ€

A framework for building complex multi-entity REST and GraphQL APIs with many relationships in Rust.

Designed for APIs with 5+ entities and complex relationships.
For simple CRUD APIs, consider using Axum directly.

CI Documentation Crates.io docs.rs License codecov


โœจ Highlights

๐Ÿš€ Core Features

๐Ÿ”— Relationship Management

๐ŸŒ Multi-Protocol Support

โšก Developer Experience


๐ŸŽฏ Is this-rs Right for You?

โœ… Perfect Fit - You Should Use this-rs

Example use cases: CMS, ERP, e-commerce platforms, social networks, project management tools

โš ๏ธ Probably Overkill - Consider Alternatives

For simple projects, use Axum + utoipa directly.

๐Ÿ“– See Alternatives Comparison for detailed analysis of when to use what.

๐Ÿ“Š ROI by Project Size

Entities Relationships Recommended Time Saved
1-3 Few โŒ Axum directly -
3-5 Some โš ๏ธ Consider this-rs ~20%
5-10 Many โœ… this-rs recommended ~40%
10+ Complex โœ…โœ… this-rs highly recommended ~60%

๐Ÿ’ก What this-rs Actually Saves

Without this-rs (Pure Axum)

// For each entity, you write:
// 1. Entity definition (โœ“ same in both)
// 2. CRUD handlers (โœ“ same in both - you still write business logic)
// 3. Routes registration (โŒ REPETITIVE - 30+ lines per entity)
// 4. Link routes (โŒ REPETITIVE - 50+ lines per relationship)
// 5. Link enrichment (โŒ MANUAL - N+1 queries if not careful)
// 6. GraphQL schema (โŒ MANUAL - duplicate type definitions)

// Example: 10 entities with 15 relationships
// = ~500 lines of repetitive routing code

With this-rs (โœ…)

// 1. Entity definition (โœ“ with macro helpers)
impl_data_entity!(Product, "product", ["name", "sku"], {
    sku: String,
    price: f64,
});

// 2. CRUD handlers (โœ“ you still write these - it's your business logic)
// 3. Routes registration (โœ… AUTO-GENERATED)
// 4. Link routes (โœ… AUTO-GENERATED from YAML)
// 5. Link enrichment (โœ… AUTOMATIC - no N+1 queries)
// 6. GraphQL schema (โœ… AUTO-GENERATED from entities)

// Main.rs for 10 entities with 15 relationships
let app = ServerBuilder::new()
    .register_module(module)?  // โ† ~40 lines total
    .build()?;

What you save: Routing boilerplate, link management, GraphQL schema duplication.
What you still write: Business logic handlers (as you should!).


๐Ÿš€ Quick Example

1. Define Your Entity with Macros

use this::prelude::*;

// Macro generates full entity with all base fields
impl_data_entity!(Product, "product", ["name", "sku"], {
    sku: String,
    price: f64,
    description: Option<String>,
    stock: i32,
});

// Automatically includes:
// - id: Uuid (auto-generated)
// - type: String (auto-set to "product")
// - name: String (required)
// - created_at: DateTime<Utc> (auto-generated)
// - updated_at: DateTime<Utc> (auto-managed)
// - deleted_at: Option<DateTime<Utc>> (soft delete)
// - status: String (required)

2. Create Entity Store with EntityCreator

use this::prelude::*;

#[derive(Clone)]
pub struct ProductStore {
    data: Arc<RwLock<HashMap<Uuid, Product>>>,
}

// Implement EntityFetcher for link enrichment
#[async_trait]
impl EntityFetcher for ProductStore {
    async fn fetch_as_json(&self, entity_id: &Uuid) -> Result<serde_json::Value> {
        let product = self.get(entity_id)
            .ok_or_else(|| anyhow::anyhow!("Product not found"))?;
        Ok(serde_json::to_value(product)?)
    }
}

// Implement EntityCreator for automatic entity creation
#[async_trait]
impl EntityCreator for ProductStore {
    async fn create_from_json(&self, entity_data: serde_json::Value) -> Result<serde_json::Value> {
        let product = Product::new(
            entity_data["name"].as_str().unwrap_or("").to_string(),
            entity_data["status"].as_str().unwrap_or("active").to_string(),
            entity_data["sku"].as_str().unwrap_or("").to_string(),
            entity_data["price"].as_f64().unwrap_or(0.0),
            entity_data["description"].as_str().map(String::from),
            entity_data["stock"].as_i64().unwrap_or(0) as i32,
        );
        self.add(product.clone());
        Ok(serde_json::to_value(product)?)
    }
}

3. Create Module

impl Module for CatalogModule {
    fn name(&self) -> &str { "catalog-service" }
    fn entity_types(&self) -> Vec<&str> { vec!["product"] }
    
    fn links_config(&self) -> Result<LinksConfig> {
        LinksConfig::from_file("config/links.yaml")
    }
    
    fn register_entities(&self, registry: &mut EntityRegistry) {
        registry.register(Box::new(ProductDescriptor::new(self.store.clone())));
    }
    
    fn get_entity_fetcher(&self, entity_type: &str) -> Option<Arc<dyn EntityFetcher>> {
        match entity_type {
            "product" => Some(Arc::new(self.store.clone()) as Arc<dyn EntityFetcher>),
            _ => None,
        }
    }
    
    fn get_entity_creator(&self, entity_type: &str) -> Option<Arc<dyn EntityCreator>> {
        match entity_type {
            "product" => Some(Arc::new(self.store.clone()) as Arc<dyn EntityCreator>),
            _ => None,
        }
    }
}

4. Launch Server (Auto-Generated Routes!)

REST API (Default)

#[tokio::main]
async fn main() -> Result<()> {
    let app = ServerBuilder::new()
        .with_link_service(InMemoryLinkService::new())
        .register_module(CatalogModule::new(store))?
        .build()?;  // โ† All REST routes created automatically!
    
    let listener = tokio::net::TcpListener::bind("0.0.0.0:3000").await?;
    axum::serve(listener, app).await?;
    Ok(())
}

GraphQL API (Optional, feature flag)

use this::server::GraphQLExposure;

#[tokio::main]
async fn main() -> Result<()> {
    let host = ServerBuilder::new()
        .with_link_service(InMemoryLinkService::new())
        .register_module(CatalogModule::new(store))?
        .build_host()?;  // โ† Build transport-agnostic host
    
    let graphql_app = GraphQLExposure::build_router(Arc::new(host))?;
    
    let listener = tokio::net::TcpListener::bind("0.0.0.0:3000").await?;
    axum::serve(listener, graphql_app).await?;
    Ok(())
}

Thatโ€™s it! Routes are auto-generated:

REST API:

GraphQL API:


# POST /orders/{order_id}/invoices/{invoice_id}
curl -X POST http://localhost:3000/orders/abc-123/invoices/inv-456 \
  -H 'Content-Type: application/json' \
  -d '{"metadata": {"priority": "high"}}'
# POST /orders/{order_id}/invoices
curl -X POST http://localhost:3000/orders/abc-123/invoices \
  -H 'Content-Type: application/json' \
  -d '{
    "entity": {
      "number": "INV-999",
      "amount": 1500.00,
      "status": "active"
    },
    "metadata": {"priority": "high"}
  }'

# Response includes both created entity AND link!
{
  "entity": {
    "id": "inv-999-uuid",
    "type": "invoice",
    "name": "INV-999",
    "amount": 1500.00,
    ...
  },
  "link": {
    "id": "link-uuid",
    "source_id": "abc-123",
    "target_id": "inv-999-uuid",
    ...
  }
}

When you query links, you automatically get full entity data:

# GET /orders/{id}/invoices
{
  "links": [
    {
      "id": "link-123",
      "source_id": "order-abc",
      "target_id": "invoice-xyz",
      "target": {
        "id": "invoice-xyz",
        "type": "invoice",
        "name": "INV-001",
        "amount": 1500.00,
        ...
      }
    }
  ]
}

No N+1 queries! Entities are fetched efficiently in the background.


๐Ÿ“š Examples

Microservice Example

Complete billing microservice with auto-generated routes for both REST and GraphQL:

REST API

cargo run --example microservice

Output:

๐Ÿš€ Starting billing-service v1.0.0
๐Ÿ“ฆ Entities: ["order", "invoice", "payment"]
๐ŸŒ Server running on http://127.0.0.1:3000

๐Ÿ“š Entity Routes (CRUD - Auto-generated):
  GET    /orders                        - List all orders
  POST   /orders                        - Create a new order
  GET    /orders/{id}                   - Get a specific order
  PUT    /orders/{id}                   - Update an order
  DELETE /orders/{id}                   - Delete an order

๐Ÿ”— Link Routes (Auto-generated):
  GET    /orders/{id}/invoices          - List invoices for an order
  POST   /orders/{id}/invoices          - Create new invoice + link automatically
  POST   /orders/{id}/invoices/{inv_id} - Link existing order & invoice
  PUT    /orders/{id}/invoices/{inv_id} - Update link metadata
  DELETE /orders/{id}/invoices/{inv_id} - Delete link

See examples/microservice/README.md for full REST API details.

GraphQL API

cargo run --example microservice_graphql --features graphql

The same entities are exposed via GraphQL with:

Example query:

query {
  orders {
    id
    number
    customerName
    amount
    invoices {
      id
      number
      amount
      payments {
        id
        amount
        method
      }
    }
  }
}

See examples/microservice/README_GRAPHQL.md for full GraphQL details.


๐Ÿ—๏ธ Architecture

Entity Hierarchy

Entity (Base Trait)
โ”œโ”€โ”€ id: Uuid
โ”œโ”€โ”€ type: String
โ”œโ”€โ”€ created_at: DateTime<Utc>
โ”œโ”€โ”€ updated_at: DateTime<Utc>
โ”œโ”€โ”€ deleted_at: Option<DateTime<Utc>>
โ””โ”€โ”€ status: String

    โ”œโ”€โ–บ Data (Inherits Entity)
    โ”‚   โ””โ”€โ”€ name: String
    โ”‚       + indexed_fields()
    โ”‚       + field_value()
    โ”‚
    โ””โ”€โ–บ Link (Inherits Entity)
        โ”œโ”€โ”€ source_id: Uuid
        โ”œโ”€โ”€ target_id: Uuid
        โ””โ”€โ”€ link_type: String

Core Concepts

  1. ServerBuilder - Fluent API for building HTTP servers
  2. EntityDescriptor - Describes how to generate routes for an entity
  3. EntityRegistry - Collects and builds all entity routes
  4. Module - Groups related entities with configuration
  5. LinkService - Generic relationship management
  6. EntityFetcher - Dynamically fetch entities for link enrichment
  7. EntityCreator - Dynamically create entities with automatic linking

Macro System


๐Ÿ“– Documentation

๐Ÿš€ Getting Started

๐ŸŒ API Exposure

๐Ÿ”— Features

๐Ÿ—๏ธ Architecture


๐ŸŽ Key Benefits

For Developers

โœ… -88% less routing boilerplate (340 โ†’ 40 lines in microservice example)
โœ… Add entity quickly - Macro helpers + module registration
โœ… Consistent patterns - Same structure for all entities
โœ… Type-safe - Full Rust compile-time checks
โœ… Scales well - Adding the 10th entity is as easy as the 1st
โœ… Multi-protocol - ๐Ÿ†• Same entities exposed via REST and GraphQL
โš ๏ธ Learning curve - Framework abstractions to understand (traits, registry)

For Teams

โœ… Faster development - Less code to write and maintain
โœ… Easier onboarding - Clear patterns and conventions
โœ… Reduced errors - Less manual work = fewer mistakes
โœ… Better consistency - Framework enforces best practices
โœ… Flexible APIs - ๐Ÿ†• Choose REST, GraphQL, or both

For Production

โœ… Authorization - Declarative auth policies
โœ… Configurable - YAML-based configuration
โœ… Extensible - Plugin architecture via modules
โœ… Performance - Efficient link enrichment with no N+1 queries
โœ… Soft Deletes - Built-in soft delete support
โœ… Dynamic Schema - ๐Ÿ†• GraphQL schema auto-generated from entities


๐Ÿค Contributing

Contributions are welcome! Please feel free to submit a Pull Request.


๐Ÿ“„ License

This project is licensed under the MIT License - see the LICENSE-MIT file for details.


๐ŸŒŸ Why this-rs?

โ€œThe best code is the code you donโ€™t have to writeโ€ฆ if youโ€™re writing it 50 times.โ€

this-rs eliminates repetitive routing and relationship boilerplate while maintaining type safety.

Perfect for:

NOT ideal for:

๐Ÿ†• Whatโ€™s New in v0.0.6


๐Ÿค” Honest Trade-offs

What this-rs Adds โœ…

What You Still Write โœ๏ธ

The Cost โš ๏ธ

Built with Rust. Designed for complex APIs. Best for scale. ๐Ÿฆ€โœจ


Made with โค๏ธ and ๐Ÿฆ€ by the this-rs community