Skip to content

Commit

Permalink
TODO
Browse files Browse the repository at this point in the history
  • Loading branch information
tyt2y3 committed Jan 23, 2025
1 parent b36979c commit 792cf86
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
9 changes: 9 additions & 0 deletions sea-orm-pro/docs/01-index.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@

3.2 [Theme](03-site-config/02-theme.md)

AdventureWorks

4. Raw Table Config

4.1 [Overview](04-raw-table-config/01-overview.md)
Expand Down Expand Up @@ -45,3 +47,10 @@
6.1 [Virtual Machine](06-deployment/01-vm.md)

6.2 [Container](06-deployment/02-container.md)

7. GUI Development

7.1 Overview
+ Overview of React project
7.2 Development and Release
7.3 GraphQL Playground
22 changes: 22 additions & 0 deletions sea-orm-pro/docs/07-gui-development/03-graphql.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
```graphql
query {
customer(
order_by: { customer_id: ASC }
pagination: { page: { limit: 10, page: 0 } }
) {
nodes {
customer_id
title
first_name
middle_name
last_name
}
pagination_info {
current
pages
offset
total
}
}
}
```

0 comments on commit 792cf86

Please sign in to comment.