Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Chapter 3 - GraphQL Integration Example #14

Merged
merged 63 commits into from
Jul 15, 2022
Merged
Changes from 1 commit
Commits
Show all changes
63 commits
Select commit Hold shift + click to select a range
a62f936
Revamped outline
shpun817 May 31, 2022
b37e29b
Rewrite introduction
shpun817 May 31, 2022
0030125
Remove old tutorials
shpun817 May 31, 2022
d7aed2d
Draft ch01-00
shpun817 May 31, 2022
1601c5a
Draft ch01-01
shpun817 Jun 2, 2022
8da1947
Edit SQLite (in file) example URL
shpun817 Jun 2, 2022
8f80893
Add bakery-backend source code
shpun817 May 31, 2022
f460284
Add `sea-orm-migration` dependency
shpun817 Jun 2, 2022
a1c4b7f
Create migrator module
shpun817 Jun 2, 2022
2e9abbc
Create migrations
shpun817 Jun 2, 2022
e7bccb5
Use Migrator to define the database schema
shpun817 Jun 2, 2022
e7b8dcf
Draft ch01-02
shpun817 Jun 2, 2022
6d62e73
Draft ch01-03
shpun817 Jun 7, 2022
1591908
Draft ch01-04
shpun817 Jun 7, 2022
074fc35
Insert and update
shpun817 Jun 7, 2022
463d921
Find (single entity)
shpun817 Jun 9, 2022
ec2cc8c
Delete
shpun817 Jun 9, 2022
dddb2c8
Draft ch01-06
shpun817 Jun 9, 2022
4aa363d
Draft ch01-07
shpun817 Jun 9, 2022
206679a
Remove PostgreSQL prompt symbol guide
shpun817 Jun 9, 2022
322fc91
Add reminder of executing sea-orm-cli at the project root
shpun817 Jun 9, 2022
16bb659
Specify file path of Cargo.toml
shpun817 Jun 9, 2022
00c194a
intro: "the most" -> "a"
shpun817 Jun 12, 2022
c8227cb
Remove legacy example source files
shpun817 Jun 14, 2022
2617f6e
Draft ch01-08
shpun817 Jun 14, 2022
c01ad2e
Add SeaQuery usage source code
shpun817 Jun 14, 2022
679fc6f
Add Rocket integration example source code
shpun817 Jun 16, 2022
dc4a156
Update SUMMARY
shpun817 Jun 16, 2022
28a805e
Section rename: "Fetch from Database" -> "Connect to Database"
shpun817 Jun 16, 2022
ab45421
Draft ch02-00
shpun817 Jun 16, 2022
c70b256
Remove # in SUMMARY.md
shpun817 Jun 16, 2022
6725296
Add `/reset` endpoint in Rocket integration example source code
shpun817 Jun 16, 2022
a923a0c
Draft ch02-01
shpun817 Jun 16, 2022
eefbbcd
Add templates to provide a minimal frontend
shpun817 Jun 23, 2022
cad9994
Remove non-existent handler in ch02-01
shpun817 Jun 23, 2022
17f48da
Draft ch02-02
shpun817 Jun 23, 2022
f566bb4
Add section for simple frontend using templates in plan
shpun817 Jun 23, 2022
7d5317f
Draft ch02-03
shpun817 Jun 23, 2022
f42fd8c
Add mounting new endpoint handler in ch02-02
shpun817 Jun 23, 2022
3cc3c25
Draft ch02-04
shpun817 Jun 23, 2022
3bf9e44
Draft ch02-05
shpun817 Jun 23, 2022
7735811
Merge Billy's changes
shpun817 Jun 27, 2022
1e3a658
Update ch01-00-simple-crud-getting-started.md (#10)
Jun 7, 2022
dce6160
Remove old tutorial section ch01-00-simple-crud-getting-started.md
shpun817 Jun 27, 2022
26b5389
Update GitHub workflows for building the examples
shpun817 Jun 27, 2022
e2315ad
Update README.md
shpun817 Jun 27, 2022
5abd62b
Prepare for early release (postponing the release of chapter 3)
shpun817 Jun 27, 2022
0d51094
Update SUMMARY.md for GraphQL sections
shpun817 Jul 5, 2022
6c44aac
Draft ch03-00
shpun817 Jul 5, 2022
93b1007
Draft ch03-01
shpun817 Jul 5, 2022
ece0050
Amend ch03-00
shpun817 Jul 5, 2022
f9ef21e
Draft ch03-02
shpun817 Jul 5, 2022
089dbaf
Draft ch03-03
shpun817 Jul 5, 2022
fd79185
Add GraphQL integration example source code
shpun817 Jul 5, 2022
4e4ca37
Merge branch 'master' of https://github.com/SeaQL/sea-orm-tutorial in…
shpun817 Jul 5, 2022
3202880
Merge branch 'SeaQL-master'
shpun817 Jul 5, 2022
da56330
Update GitHub workflows for building the graphql example
shpun817 Jul 5, 2022
1f267f2
Add endpoint for GraphQL playground
billy1624 Jul 7, 2022
221b8db
Include the link to the full source code of the example at the start …
shpun817 Jul 7, 2022
0cad1f8
Add GraphQL Integration example to README.md
shpun817 Jul 7, 2022
97a7952
Merge pull request #3 from billy1624/pr/14
shpun817 Jul 7, 2022
8eb283e
Draft ch03-05
shpun817 Jul 7, 2022
61ef2c2
Remove section for GraphQL subscription because it is not supported yet
shpun817 Jul 12, 2022
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
Prev Previous commit
Next Next commit
Remove PostgreSQL prompt symbol guide
  • Loading branch information
shpun817 committed Jun 27, 2022
commit 206679a65cd4d68a729b8e69ea032fee06ca0b73
2 changes: 0 additions & 2 deletions tutorials-book/src/ch00-00-introduction.md
Original file line number Diff line number Diff line change
@@ -16,8 +16,6 @@ To show added or removed code from files, we will use comments or

`$ ` shows an operation is done on the console/shell

`postgres=#` shows a PostgreSQL prompt.

#### Chapters

In the first chapter, we will learn how to build a backend application with SeaORM. It will be compatible with different database implementations.