Philosophy
FLXBL is built on a simple principle: you should focus on what makes your application unique—your domain model and business logic—while the platform handles everything else.
The Vision
Traditional backend development requires you to build and maintain a mountain of infrastructure code: database schemas, API endpoints, authentication, authorization, migrations, and more. This boilerplate takes time away from what actually matters—solving your business problems.
FLXBL inverts this equation. Define your entities and relationships, and the platform automatically generates:
- REST API with full CRUD operations, filtering, and pagination
- GraphQL API with type-safe queries and mutations
- Graph database storage with native relationship traversal
- Authentication & authorization with roles, permissions, and API keys
- Webhooks for event-driven integrations
- Schema versioning with automatic migrations
Domain-Driven, Not Database-Driven
With FLXBL, you think in terms of your domain model—the real-world concepts your application deals with—not database tables and foreign keys.
Consider an e-commerce application. Instead of designing tables with foreign key columns, you describe the domain:
- A
Customercan place multipleOrders - An
Ordercontains multipleProducts - A
Productbelongs to one or moreCategories - A
Customercan writeReviewsforProductsthey've purchased
These are relationships—first-class citizens in FLXBL, not afterthoughts implemented as foreign key columns.
Graph-First Thinking
Under the hood, FLXBL stores your data in Neo4j, a graph database. This isn't just an implementation detail—it fundamentally changes what's possible:
Why Graphs Over Foreign Keys?
| Foreign Keys (Traditional) | Graph Relationships (FLXBL) |
|---|---|
| Relationships are implicit (just IDs) | Relationships are explicit and named |
| Traversing requires JOIN operations | Traversal is native and fast |
| Relationship metadata needs junction tables | Relationships can have properties directly |
| Complex queries become expensive | "Find friends of friends" is trivial |
With relationships as first-class citizens, queries like "find all products reviewed by customers who also bought this product" become simple traversals instead of complex multi-table joins.
Your Backend, Your Logic
FLXBL provides the data layer and APIs—but your business logic remains yours. The platform is designed to be consumed by your applications:
- Build frontends that call the generated REST or GraphQL APIs
- Create backend services that implement custom business rules, then persist data through FLXBL
- Set up webhooks to trigger workflows when data changes
- Use AI assistants via MCP to manage your schema through natural language
Think of FLXBL as the foundation. You're not locked into a framework—you build whatever you need on top, in whatever language or technology you prefer.
Multi-Tenant by Design
Every FLXBL deployment is multi-tenant from day one. Each tenant gets:
- Complete data isolation—tenants cannot access each other's data
- Independent schemas—each tenant can have their own data model
- Scoped API keys—fine-grained access control per application
- Separate configurations—identity settings, webhooks, and more
Whether you're building a SaaS product with many customers or a single application with strict data boundaries, the multi-tenant architecture has you covered.
AI-Native Development
FLXBL includes a Model Context Protocol (MCP) server that lets AI assistants understand and manipulate your schema. In tools like Cursor or Windsurf, you can:
- Design schemas through conversation: "Add a Product entity with name, price, and description fields"
- Create relationships naturally: "Products should belong to Categories, and Customers can review Products"
- Manage access: "Create a read-only API key for the mobile app"
- Generate types: "Generate TypeScript types for my current schema"
The AI has full context of your schema, APIs, and available operations—making it a powerful pair-programming partner for backend development.
What This Means for You
When you adopt FLXBL, your development workflow changes:
- Model your domain—define entities, fields, and relationships
- Let FLXBL generate the APIs—REST and GraphQL, ready to use
- Build your application—frontend, business logic, integrations
- Evolve your schema—FLXBL handles migrations automatically
No more writing boilerplate CRUD endpoints. No more managing database migrations manually. No more implementing authentication from scratch. Focus on what your application actually does.
Next Steps
- Quick Start—set up FLXBL and create your first schema
- Schema Design—learn how to model entities and relationships
- MCP Integration—use AI assistants for schema management
- API Reference—explore the generated REST and GraphQL APIs