Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions content/docs/00-framework/architecture.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -252,9 +252,9 @@ ObjectQL supports cross-database:

## Getting Started

To get started with ObjectStack, check out our [Getting Started](/docs/getting-started) guide.
To get started with ObjectStack, check out our [Quick Start Guide](/docs/00-framework/quickstart) guide.

Learn more about each component:
- [ObjectQL Documentation](/docs/objectql)
- [ObjectUI Documentation](/docs/objectui)
- [ObjectOS Documentation](/docs/objectos)
- [ObjectQL Documentation](/docs/02-objectql)
- [ObjectUI Documentation](/docs/03-objectui)
- [ObjectOS Documentation](/docs/04-objectos)
6 changes: 3 additions & 3 deletions content/docs/00-framework/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ Welcome to the ObjectStack documentation. This section covers the foundational c
If you are new to ObjectStack, we recommend reading these in order:

### 1. Welcome to ObjectStack
[Welcome to ObjectStack](./welcome): An overview of the platform, its three core engines (ObjectQL, ObjectUI, ObjectOS), and why we built it.
[Welcome to ObjectStack](/docs/00-framework/welcome): An overview of the platform, its three core engines (ObjectQL, ObjectUI, ObjectOS), and why we built it.

### 2. The Manifesto
[The Manifesto](./manifesto): Understanding the "Protocol-Driven" philosophy is key to mastering ObjectStack. Learn why we prioritize **Data Sovereignty** and **Technical Decoupling**.
[The Manifesto](/docs/00-framework/manifesto): Understanding the "Protocol-Driven" philosophy is key to mastering ObjectStack. Learn why we prioritize **Data Sovereignty** and **Technical Decoupling**.

### 3. The AI Codex
[The AI Codex](./ai-codex): ObjectStack is designed to be AI-native. Learn how to leverage LLMs to generate 80% of your application code using our standardized JSON protocols.
[The AI Codex](/docs/00-framework/ai-codex): ObjectStack is designed to be AI-native. Learn how to leverage LLMs to generate 80% of your application code using our standardized JSON protocols.
8 changes: 4 additions & 4 deletions content/docs/00-framework/quickstart/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -26,20 +26,20 @@ Before you begin, ensure you have:
- **Deployment**: Local execution.
- **Time**: ~5 minutes.

[**Start Local Guide →**](./individual-developers)
[**Start Local Guide →**](/docs/00-framework/quickstart/individual-developers)

### 🏢 Path B: Enterprise Integrators (Docker)
**Best for**: Teams, production apps, and connecting to legacy data.
- **Database**: MySQL, PostgreSQL, Oracle, or SQL Server.
- **Deployment**: Docker / Kubernetes.
- **Time**: ~15 minutes.

[**Start Enterprise Guide →**](./enterprise-integrators)
[**Start Enterprise Guide →**](/docs/00-framework/quickstart/enterprise-integrators)

---

## Explore Demos

Prefer to deconstruct a working app? Check out our ready-to-run examples.
- **[Personal Accounting App](./demos#accounting)** (Local-First)
- **[Modern CRM System](./demos#crm)** (Enterprise)
- **[Personal Accounting App](/docs/00-framework/quickstart/demos#accounting)** (Local-First)
- **[Modern CRM System](/docs/00-framework/quickstart/demos#crm)** (Enterprise)
Original file line number Diff line number Diff line change
Expand Up @@ -392,8 +392,8 @@ Congratulations! You've built your first ObjectStack application.

> **Note**: Some links below point to future documentation sections that are under development.

- Explore [ObjectQL](../02-objectql) - Advanced data modeling
- Master [ObjectUI](../03-objectui) - Complex UI patterns
- Explore [ObjectQL](/docs/02-objectql) - Advanced data modeling
- Master [ObjectUI](/docs/03-objectui) - Complex UI patterns
- Study Triggers & Logic (coming soon) - Business rules

### Try These Projects
Expand Down Expand Up @@ -455,7 +455,7 @@ npm install

## Getting Help

- 📚 [Documentation](../../) - Complete guides
- 📚 [Documentation](/docs/) - Complete guides
- 💬 [Community Forum](https://github.com/objectstack/objectstack/discussions)
- 🐛 [Report Issues](https://github.com/objectstack/objectstack/issues)
- 💡 [Examples Repository](https://github.com/objectstack/examples)
6 changes: 3 additions & 3 deletions content/docs/00-framework/welcome.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,6 @@ ObjectOS connects ObjectQL and ObjectUI into a cohesive runtime environment, han

## Next Steps

- **[Quick Start](../01-quickstart)**: Deploy your first application in 5 minutes.
- **[The Manifesto](./manifesto)**: Deep dive into our "Protocol-Driven" design philosophy.
- **[The AI Codex](./ai-codex)**: Learn how AI accelerates ObjectStack development.
- **[Quick Start](/docs/00-framework/quickstart)**: Deploy your first application in 5 minutes.
- **[The Manifesto](/docs/00-framework/manifesto)**: Deep dive into our "Protocol-Driven" design philosophy.
- **[The AI Codex](/docs/00-framework/ai-codex)**: Learn how AI accelerates ObjectStack development.
6 changes: 3 additions & 3 deletions content/docs/02-objectql/core-concepts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -384,6 +384,6 @@ await db.registerSchema(updatedSchema)

Now that you understand the core concepts:

- Learn the [Protocol Specification](./protocol-spec) for detailed schema and query syntax
- Explore [Core Features](./core-features) for advanced optimizations
- Master the [Server SDK](./server-sdk) API
- Learn the [Protocol Specification](/docs/02-objectql/protocol-spec) for detailed schema and query syntax
- Explore [Core Features](/docs/02-objectql/core-features) for advanced optimizations
- Master the [Server SDK](/docs/02-objectql/server-sdk) API
6 changes: 3 additions & 3 deletions content/docs/02-objectql/core-features.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -575,6 +575,6 @@ for (const product of products) {

## Next Steps

- Master the [Server SDK](./server-sdk) API
- Review [Protocol Spec](./protocol-spec) for query syntax
- Check [Core Concepts](./core-concepts) for fundamentals
- Master the [Server SDK](/docs/02-objectql/server-sdk) API
- Review [Protocol Spec](/docs/02-objectql/protocol-spec) for query syntax
- Check [Core Concepts](/docs/02-objectql/core-concepts) for fundamentals
14 changes: 7 additions & 7 deletions content/docs/02-objectql/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -136,10 +136,10 @@ In this section, you will discover:

Ready to dive in? Start with:

1. **[Core Concepts](./core-concepts)** - Understand the fundamental concepts
2. **[Protocol Spec](./protocol-spec)** - Learn the schema and query language
3. **[Core Features](./core-features)** - Explore advanced features
4. **[Server SDK](./server-sdk)** - Master the API
1. **[Core Concepts](/docs/02-objectql/core-concepts)** - Understand the fundamental concepts
2. **[Protocol Spec](/docs/02-objectql/protocol-spec)** - Learn the schema and query language
3. **[Core Features](/docs/02-objectql/core-features)** - Explore advanced features
4. **[Server SDK](/docs/02-objectql/server-sdk)** - Master the API

## Quick Example

Expand Down Expand Up @@ -186,6 +186,6 @@ console.log(tasks) // [{ name: 'Learn ObjectQL', status: 'todo', priority: 1 }]

Begin your ObjectQL journey:

- **New to ObjectQL?** Start with [Core Concepts](./core-concepts)
- **Want to see the full API?** Jump to [Server SDK](./server-sdk)
- **Need specific features?** Check [Core Features](./core-features)
- **New to ObjectQL?** Start with [Core Concepts](/docs/02-objectql/core-concepts)
- **Want to see the full API?** Jump to [Server SDK](/docs/02-objectql/server-sdk)
- **Need specific features?** Check [Core Features](/docs/02-objectql/core-features)
6 changes: 3 additions & 3 deletions content/docs/02-objectql/protocol-spec.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -677,6 +677,6 @@ await db.mutation('task', {

## Next Steps

- Explore [Core Features](./core-features) for performance optimizations
- Master the [Server SDK](./server-sdk) API reference
- Check [Core Concepts](./core-concepts) for foundational knowledge
- Explore [Core Features](/docs/02-objectql/core-features) for performance optimizations
- Master the [Server SDK](/docs/02-objectql/server-sdk) API reference
- Check [Core Concepts](/docs/02-objectql/core-concepts) for foundational knowledge
6 changes: 3 additions & 3 deletions content/docs/02-objectql/server-sdk.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -745,6 +745,6 @@ customers.forEach(customer => {

## Next Steps

- Review [Protocol Spec](./protocol-spec) for detailed query syntax
- Explore [Core Features](./core-features) for advanced optimizations
- Check [Core Concepts](./core-concepts) for foundational knowledge
- Review [Protocol Spec](/docs/02-objectql/protocol-spec) for detailed query syntax
- Explore [Core Features](/docs/02-objectql/core-features) for advanced optimizations
- Check [Core Concepts](/docs/02-objectql/core-concepts) for foundational knowledge
2 changes: 1 addition & 1 deletion content/docs/03-objectui/component-spec.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -784,4 +784,4 @@ Show notification message.

## Next Steps

- **[Renderer Usage](./renderer-usage)** - Learn how to integrate these components in your application
- **[Renderer Usage](/docs/03-objectui/renderer-usage)** - Learn how to integrate these components in your application
4 changes: 2 additions & 2 deletions content/docs/03-objectui/core-concepts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -613,5 +613,5 @@ Always provide user feedback for actions:

Now that you understand the core concepts, explore:

- **[Component Spec](./component-spec)** - Complete component protocol reference
- **[Renderer Usage](./renderer-usage)** - Integrate ObjectUI in your application
- **[Component Spec](/docs/03-objectui/component-spec)** - Complete component protocol reference
- **[Renderer Usage](/docs/03-objectui/renderer-usage)** - Integrate ObjectUI in your application
12 changes: 6 additions & 6 deletions content/docs/03-objectui/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -258,9 +258,9 @@ In this section, you will discover:

Ready to dive in? Start with:

1. **[Core Concepts](./core-concepts)** - Understand declarative UI principles
2. **[Component Spec](./component-spec)** - Learn the component protocols
3. **[Renderer Usage](./renderer-usage)** - Integrate in your application
1. **[Core Concepts](/docs/03-objectui/core-concepts)** - Understand declarative UI principles
2. **[Component Spec](/docs/03-objectui/component-spec)** - Learn the component protocols
3. **[Renderer Usage](/docs/03-objectui/renderer-usage)** - Integrate in your application

## Quick Example

Expand Down Expand Up @@ -330,6 +330,6 @@ This creates a fully functional todo application with:

Begin your ObjectUI journey:

- **New to declarative UI?** Start with [Core Concepts](./core-concepts)
- **Need component reference?** Jump to [Component Spec](./component-spec)
- **Ready to build?** Check [Renderer Usage](./renderer-usage)
- **New to declarative UI?** Start with [Core Concepts](/docs/03-objectui/core-concepts)
- **Need component reference?** Jump to [Component Spec](/docs/03-objectui/component-spec)
- **Ready to build?** Check [Renderer Usage](/docs/03-objectui/renderer-usage)
4 changes: 2 additions & 2 deletions content/docs/03-objectui/renderer-usage.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -727,6 +727,6 @@ function App() {

## Next Steps

- Explore [Component Spec](./component-spec) for detailed component reference
- Check out [Core Concepts](./core-concepts) for architectural understanding
- Explore [Component Spec](/docs/03-objectui/component-spec) for detailed component reference
- Check out [Core Concepts](/docs/03-objectui/core-concepts) for architectural understanding
- Join the community for support and examples
4 changes: 2 additions & 2 deletions content/docs/04-objectos/deployment.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -641,5 +641,5 @@ await app.backup.restore({

You now know how to deploy ObjectOS in various configurations:

- **[Platform Architecture](./platform-architecture)** - Review platform architecture
- **[Identity & Access](./identity-access)** - Configure security and permissions
- **[Platform Architecture](/docs/04-objectos/platform-architecture)** - Review platform architecture
- **[Identity & Access](/docs/04-objectos/identity-access)** - Configure security and permissions
4 changes: 2 additions & 2 deletions content/docs/04-objectos/identity-access.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -562,5 +562,5 @@ for (const role of roles) {

Now that you understand identity and access management:

- **[Deployment & Operations](./deployment)** - Learn how to deploy ObjectOS applications
- **[Platform Architecture](./platform-architecture)** - Review the platform architecture
- **[Deployment & Operations](/docs/04-objectos/deployment)** - Learn how to deploy ObjectOS applications
- **[Platform Architecture](/docs/04-objectos/platform-architecture)** - Review the platform architecture
12 changes: 6 additions & 6 deletions content/docs/04-objectos/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -148,9 +148,9 @@ In this section, you will discover:

Ready to dive in? Start with:

1. **[Platform Architecture](./platform-architecture)** - Understand how ObjectOS works
2. **[Identity & Access](./identity-access)** - Set up users and permissions
3. **[Deployment](./deployment)** - Deploy your application
1. **[Platform Architecture](/docs/04-objectos/platform-architecture)** - Understand how ObjectOS works
2. **[Identity & Access](/docs/04-objectos/identity-access)** - Set up users and permissions
3. **[Deployment](/docs/04-objectos/deployment)** - Deploy your application

## Quick Example

Expand Down Expand Up @@ -222,6 +222,6 @@ const app = new ObjectOS({

Begin your ObjectOS journey:

- **New to ObjectOS?** Start with [Platform Architecture](./platform-architecture)
- **Setting up security?** Jump to [Identity & Access](./identity-access)
- **Ready to deploy?** Check [Deployment & Operations](./deployment)
- **New to ObjectOS?** Start with [Platform Architecture](/docs/04-objectos/platform-architecture)
- **Setting up security?** Jump to [Identity & Access](/docs/04-objectos/identity-access)
- **Ready to deploy?** Check [Deployment & Operations](/docs/04-objectos/deployment)
4 changes: 2 additions & 2 deletions content/docs/04-objectos/platform-architecture.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -422,5 +422,5 @@ const pages = {

Now that you understand the platform architecture:

- **[Identity & Access](./identity-access)** - Learn about user management and RBAC
- **[Deployment](./deployment)** - Deploy ObjectOS applications
- **[Identity & Access](/docs/04-objectos/identity-access)** - Learn about user management and RBAC
- **[Deployment](/docs/04-objectos/deployment)** - Deploy ObjectOS applications
8 changes: 4 additions & 4 deletions content/docs/cn/00-framework/architecture.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -252,9 +252,9 @@ ObjectQL 支持跨数据库:

## 开始使用

要开始使用 ObjectStack,请查看我们的[快速开始](/docs/getting-started)指南。
要开始使用 ObjectStack,请查看我们的[快速开始指南](/docs/00-framework/quickstart)指南。

了解各个组件的详细信息:
- [ObjectQL 文档](/docs/objectql)
- [ObjectUI 文档](/docs/objectui)
- [ObjectOS 文档](/docs/objectos)
- [ObjectQL 文档](/docs/02-objectql)
- [ObjectUI 文档](/docs/03-objectui)
- [ObjectOS 文档](/docs/04-objectos)
6 changes: 3 additions & 3 deletions content/docs/cn/00-framework/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ description: ObjectStack 的世界观、价值观和总纲

## 章节内容

- [欢迎来到 ObjectStack](./welcome) - 了解项目愿景和核心组件
- [架构宪法](./manifesto) - 核心设计原则和理念
- [AI 协作指引](./ai-codex) - 使用 AI 辅助开发的最佳实践
- [欢迎来到 ObjectStack](/docs/00-framework/welcome) - 了解项目愿景和核心组件
- [架构宪法](/docs/00-framework/manifesto) - 核心设计原则和理念
- [AI 协作指引](/docs/00-framework/ai-codex) - 使用 AI 辅助开发的最佳实践
12 changes: 6 additions & 6 deletions content/docs/cn/00-framework/quickstart/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ description: 5 分钟快速上手 ObjectStack

如果您希望快速构建个人应用,无需搭建数据库服务器:

- [个人开发者指南](./individual-developers) - 学习如何创建本地优先的应用
- [个人开发者指南](/docs/00-framework/quickstart/individual-developers) - 学习如何创建本地优先的应用
- 安装 Node.js 并配置环境
- 使用 `npm create object-app` 快速创建项目
- 几分钟内构建一个待办事项应用
Expand All @@ -24,7 +24,7 @@ description: 5 分钟快速上手 ObjectStack

如果您需要连接现有数据库或在 Docker 环境中部署:

- [企业集成人员指南](./enterprise-integrators) - 连接 MySQL/PostgreSQL 并使用 Docker 部署
- [企业集成人员指南](/docs/00-framework/quickstart/enterprise-integrators) - 连接 MySQL/PostgreSQL 并使用 Docker 部署
- 连接企业数据库(MySQL、PostgreSQL、Oracle、SQL Server)
- 使用 ObjectOS Docker 容器部署
- 配置多租户环境
Expand All @@ -35,7 +35,7 @@ description: 5 分钟快速上手 ObjectStack

想要看看 ObjectStack 的实际效果?查看我们的演示应用:

- [示例项目展示](./demos) - 探索可直接运行的示例
- [示例项目展示](/docs/00-framework/quickstart/demos) - 探索可直接运行的示例
- 个人记账应用(.oos 包版本)
- 企业 CRM 系统(Docker 部署版本)
- 下载、安装并立即体验
Expand Down Expand Up @@ -67,6 +67,6 @@ description: 5 分钟快速上手 ObjectStack

选择您的路径并开始构建:

1. **初次使用 ObjectStack?** 从[个人开发者指南](./individual-developers)开始
2. **企业用户?** 跳转到[企业集成人员指南](./enterprise-integrators)
3. **想先探索一下?** 查看[示例项目](./demos)
1. **初次使用 ObjectStack?** 从[个人开发者指南](/docs/00-framework/quickstart/individual-developers)开始
2. **企业用户?** 跳转到[企业集成人员指南](/docs/00-framework/quickstart/enterprise-integrators)
3. **想先探索一下?** 查看[示例项目](/docs/00-framework/quickstart/demos)
Original file line number Diff line number Diff line change
Expand Up @@ -392,8 +392,8 @@ dueDate: {

> **注意**: 以下某些链接指向正在开发中的未来文档章节。

- 探索 [ObjectQL](../02-objectql) - 高级数据建模
- 掌握 [ObjectUI](../03-objectui) - 复杂 UI 模式
- 探索 [ObjectQL](/docs/02-objectql) - 高级数据建模
- 掌握 [ObjectUI](/docs/03-objectui) - 复杂 UI 模式
- 学习触发器与逻辑(即将推出) - 业务规则

### 尝试这些项目
Expand Down Expand Up @@ -455,7 +455,7 @@ npm install

## 获取帮助

- 📚 [文档](../../) - 完整指南
- 📚 [文档](/docs/cn) - 完整指南
- 💬 [社区论坛](https://github.com/objectstack/objectstack/discussions)
- 🐛 [报告问题](https://github.com/objectstack/objectstack/issues)
- 💡 [示例仓库](https://github.com/objectstack/examples)
6 changes: 3 additions & 3 deletions content/docs/cn/00-framework/welcome.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,6 @@ ObjectOS 是粘合 ObjectQL 和 ObjectUI 的运行时平台:

## 下一步

- 查看[快速开始](../01-quickstart),5 分钟内运行第一个应用
- 阅读[架构宪法](./manifesto),深入理解设计原则
- 了解[AI 协作指引](./ai-codex),提升开发效率
- 查看[快速开始](/docs/00-framework/quickstart),5 分钟内运行第一个应用
- 阅读[架构宪法](/docs/00-framework/manifesto),深入理解设计原则
- 了解[AI 协作指引](/docs/00-framework/ai-codex),提升开发效率
6 changes: 3 additions & 3 deletions content/docs/cn/02-objectql/core-concepts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -384,6 +384,6 @@ await db.registerSchema(updatedSchema)

现在您已理解核心概念:

- 学习[协议规范](./protocol-spec)了解详细的 Schema 和查询语法
- 探索[核心功能](./core-features)了解高级优化
- 掌握[服务端 SDK](./server-sdk) API
- 学习[协议规范](/docs/02-objectql/protocol-spec)了解详细的 Schema 和查询语法
- 探索[核心功能](/docs/02-objectql/core-features)了解高级优化
- 掌握[服务端 SDK](/docs/02-objectql/server-sdk) API
6 changes: 3 additions & 3 deletions content/docs/cn/02-objectql/core-features.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -575,6 +575,6 @@ for (const product of products) {

## 下一步

- 掌握[服务端 SDK](./server-sdk) API
- 查看[协议规范](./protocol-spec)了解查询语法
- 查看[核心概念](./core-concepts)了解基础知识
- 掌握[服务端 SDK](/docs/02-objectql/server-sdk) API
- 查看[协议规范](/docs/02-objectql/protocol-spec)了解查询语法
- 查看[核心概念](/docs/02-objectql/core-concepts)了解基础知识
14 changes: 7 additions & 7 deletions content/docs/cn/02-objectql/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -136,10 +136,10 @@ const data = await tenantDb.query('customers', {})

准备好深入了解了吗?从这里开始:

1. **[核心概念](./core-concepts)** - 理解基础概念
2. **[协议规范](./protocol-spec)** - 学习 Schema 和查询语言
3. **[核心功能](./core-features)** - 探索高级功能
4. **[服务端 SDK](./server-sdk)** - 掌握 API
1. **[核心概念](/docs/02-objectql/core-concepts)** - 理解基础概念
2. **[协议规范](/docs/02-objectql/protocol-spec)** - 学习 Schema 和查询语言
3. **[核心功能](/docs/02-objectql/core-features)** - 探索高级功能
4. **[服务端 SDK](/docs/02-objectql/server-sdk)** - 掌握 API

## 快速示例

Expand Down Expand Up @@ -186,6 +186,6 @@ console.log(tasks) // [{ name: '学习 ObjectQL', status: 'todo', priority: 1 }]

开始您的 ObjectQL 之旅:

- **初次接触 ObjectQL?** 从[核心概念](./core-concepts)开始
- **想查看完整 API?** 跳转到[服务端 SDK](./server-sdk)
- **需要特定功能?** 查看[核心功能](./core-features)
- **初次接触 ObjectQL?** 从[核心概念](/docs/02-objectql/core-concepts)开始
- **想查看完整 API?** 跳转到[服务端 SDK](/docs/02-objectql/server-sdk)
- **需要特定功能?** 查看[核心功能](/docs/02-objectql/core-features)
6 changes: 3 additions & 3 deletions content/docs/cn/02-objectql/protocol-spec.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -677,6 +677,6 @@ await db.mutation('task', {

## 下一步

- 探索[核心功能](./core-features)了解性能优化
- 掌握[服务端 SDK](./server-sdk) API 参考
- 查看[核心概念](./core-concepts)了解基础知识
- 探索[核心功能](/docs/02-objectql/core-features)了解性能优化
- 掌握[服务端 SDK](/docs/02-objectql/server-sdk) API 参考
- 查看[核心概念](/docs/02-objectql/core-concepts)了解基础知识
Loading
Loading