README
This commit is contained in:
parent
4e3acb117e
commit
e6af647ed4
38
README.md
38
README.md
@ -188,15 +188,23 @@ fruit::Entity::delete_many()
|
||||
|
||||
```
|
||||
|
||||
## 🧭 Seaography: GraphQL integration (preview)
|
||||
## 🧭 Seaography: instant GraphQL API
|
||||
|
||||
[Seaography](https://github.com/SeaQL/seaography) is a GraphQL framework built on top of SeaORM. Seaography allows you to build GraphQL resolvers quickly. With just a few commands, you can launch a GraphQL server from SeaORM entities!
|
||||
|
||||
Starting `0.12`, `seaography` integration is built into `sea-orm`. While Seaography development is still in an early stage, it is especially useful in prototyping and building internal-use admin panels.
|
||||
Look at the [Seaography Example](https://github.com/SeaQL/sea-orm/tree/master/examples/seaography_example) to learn more.
|
||||
|
||||
<img src="https://raw.githubusercontent.com/SeaQL/sea-orm/master/examples/seaography_example/Seaography%20example.png"/>
|
||||
|
||||
Look at the [Seaography Example](https://github.com/SeaQL/sea-orm/tree/master/examples/seaography_example) to learn more.
|
||||
## 🖥️ Admin Dashboard
|
||||
|
||||
Making use of Seaography, it will be a breeze to create admin dashboard with your favourite frontend framework. Check out our examples and tutorials:
|
||||
|
||||
1. [React Admin Example](https://github.com/SeaQL/sea-orm/tree/master/examples/react_admin)
|
||||
1. [Adding GraphQL Support to Loco with Seaography](https://www.sea-ql.org/blog/2024-07-01-graphql-support-with-loco-seaography/)
|
||||
1. [GraphQL based Admin Dashboard with Loco and Seaography](https://www.sea-ql.org/blog/2024-08-08-graphql-admin-dashboard-with-loco-seaography/)
|
||||
|
||||
<img src="https://www.sea-ql.org/blog/img/Loco%20x%20Seaography%20Dashboard%20Demo%20List.png"/>
|
||||
|
||||
## Learn More
|
||||
|
||||
@ -226,7 +234,7 @@ Unless you explicitly state otherwise, any contribution intentionally submitted
|
||||
for inclusion in the work by you, as defined in the Apache-2.0 license, shall be
|
||||
dual licensed as above, without any additional terms or conditions.
|
||||
|
||||
SeaORM is a community driven project. We welcome you to participate, contribute and together help build Rust's future.
|
||||
We invite you to participate, contribute and together help build Rust's future.
|
||||
|
||||
A big shout out to our contributors!
|
||||
|
||||
@ -236,17 +244,33 @@ A big shout out to our contributors!
|
||||
|
||||
[SeaQL.org](https://www.sea-ql.org/) is an independent open-source organization run by passionate developers. If you enjoy using our libraries, please star and share our repositories. If you feel generous, a small donation via [GitHub Sponsor](https://github.com/sponsors/SeaQL) will be greatly appreciated, and goes a long way towards sustaining the organization.
|
||||
|
||||
We invite you to participate, contribute and together help build Rust's future.
|
||||
|
||||
### Gold Sponsors
|
||||
|
||||
<a href="https://osmos.io/">
|
||||
<picture>
|
||||
<source media="(prefers-color-scheme: dark)" srcset="https://www.sea-ql.org/static/sponsors/Osmos-dark.svg">
|
||||
<img src="https://www.sea-ql.org/static/sponsors/Osmos.svg" width="238">
|
||||
<img src="https://www.sea-ql.org/static/sponsors/Osmos.svg" width="240">
|
||||
</picture>
|
||||
</a>
|
||||
|
||||
### Silver Sponsors
|
||||
|
||||
<table><tr>
|
||||
<td><a href="https://www.digitalocean.com/">
|
||||
<picture>
|
||||
<img src="https://www.sea-ql.org/static/sponsors/DigitalOcean.svg" width="125">
|
||||
</picture>
|
||||
</a></td>
|
||||
|
||||
<td><a href="https://www.jetbrains.com/">
|
||||
<picture>
|
||||
<img src="https://www.sea-ql.org/static/sponsors/JetBrains.svg" width="125">
|
||||
</picture>
|
||||
</a></td>
|
||||
</tr></table>
|
||||
|
||||
We’re immensely grateful to our sponsors: Osmos, for their gold-tier sponsorship and trust in the tools we develop. Digital Ocean, for sponsoring our servers. And JetBrains, for sponsoring our IDE.
|
||||
|
||||
## Mascot
|
||||
|
||||
A friend of Ferris, Terres the hermit crab is the official mascot of SeaORM. His hobby is collecting shells.
|
||||
|
38
src/lib.rs
38
src/lib.rs
@ -261,15 +261,23 @@
|
||||
//! # }
|
||||
//! ```
|
||||
//!
|
||||
//! ## 🧭 Seaography: GraphQL integration (preview)
|
||||
//! ## 🧭 Seaography: instant GraphQL API
|
||||
//!
|
||||
//! [Seaography](https://github.com/SeaQL/seaography) is a GraphQL framework built on top of SeaORM. Seaography allows you to build GraphQL resolvers quickly. With just a few commands, you can launch a GraphQL server from SeaORM entities!
|
||||
//!
|
||||
//! Starting `0.12`, `seaography` integration is built into `sea-orm`. While Seaography development is still in an early stage, it is especially useful in prototyping and building internal-use admin panels.
|
||||
//! Look at the [Seaography Example](https://github.com/SeaQL/sea-orm/tree/master/examples/seaography_example) to learn more.
|
||||
//!
|
||||
//! <img src="https://raw.githubusercontent.com/SeaQL/sea-orm/master/examples/seaography_example/Seaography%20example.png"/>
|
||||
//!
|
||||
//! Look at the [Seaography Example](https://github.com/SeaQL/sea-orm/tree/master/examples/seaography_example) to learn more.
|
||||
//! ## 🖥️ Admin Dashboard
|
||||
//!
|
||||
//! Making use of Seaography, it will be a breeze to create admin dashboard with your favourite frontend framework. Check out our examples and tutorials:
|
||||
//!
|
||||
//! 1. [React Admin Example](https://github.com/SeaQL/sea-orm/tree/master/examples/react_admin)
|
||||
//! 1. [Adding GraphQL Support to Loco with Seaography](https://www.sea-ql.org/blog/2024-07-01-graphql-support-with-loco-seaography/)
|
||||
//! 1. [GraphQL based Admin Dashboard with Loco and Seaography](https://www.sea-ql.org/blog/2024-08-08-graphql-admin-dashboard-with-loco-seaography/)
|
||||
//!
|
||||
//! <img src="https://www.sea-ql.org/blog/img/Loco%20x%20Seaography%20Dashboard%20Demo%20List.png"/>
|
||||
//!
|
||||
//! ## Learn More
|
||||
//!
|
||||
@ -299,7 +307,7 @@
|
||||
//! for inclusion in the work by you, as defined in the Apache-2.0 license, shall be
|
||||
//! dual licensed as above, without any additional terms or conditions.
|
||||
//!
|
||||
//! SeaORM is a community driven project. We welcome you to participate, contribute and together help build Rust's future.
|
||||
//! We invite you to participate, contribute and together help build Rust's future.
|
||||
//!
|
||||
//! A big shout out to our contributors!
|
||||
//!
|
||||
@ -309,17 +317,33 @@
|
||||
//!
|
||||
//! [SeaQL.org](https://www.sea-ql.org/) is an independent open-source organization run by passionate developers. If you enjoy using our libraries, please star and share our repositories. If you feel generous, a small donation via [GitHub Sponsor](https://github.com/sponsors/SeaQL) will be greatly appreciated, and goes a long way towards sustaining the organization.
|
||||
//!
|
||||
//! We invite you to participate, contribute and together help build Rust's future.
|
||||
//!
|
||||
//! ### Gold Sponsors
|
||||
//!
|
||||
//! <a href="https://osmos.io/">
|
||||
//! <picture>
|
||||
//! <source media="(prefers-color-scheme: dark)" srcset="https://www.sea-ql.org/static/sponsors/Osmos-dark.svg">
|
||||
//! <img src="https://www.sea-ql.org/static/sponsors/Osmos.svg" width="238">
|
||||
//! <img src="https://www.sea-ql.org/static/sponsors/Osmos.svg" width="240">
|
||||
//! </picture>
|
||||
//! </a>
|
||||
//!
|
||||
//! ### Silver Sponsors
|
||||
//!
|
||||
//! <table><tr>
|
||||
//! <td><a href="https://www.digitalocean.com/">
|
||||
//! <picture>
|
||||
//! <img src="https://www.sea-ql.org/static/sponsors/DigitalOcean.svg" width="125">
|
||||
//! </picture>
|
||||
//! </a></td>
|
||||
//!
|
||||
//! <td><a href="https://www.jetbrains.com/">
|
||||
//! <picture>
|
||||
//! <img src="https://www.sea-ql.org/static/sponsors/JetBrains.svg" width="125">
|
||||
//! </picture>
|
||||
//! </a></td>
|
||||
//! </tr></table>
|
||||
//!
|
||||
//! We’re immensely grateful to our sponsors: Osmos, for their gold-tier sponsorship and trust in the tools we develop. Digital Ocean, for sponsoring our servers. And JetBrains, for sponsoring our IDE.
|
||||
//!
|
||||
//! ## Mascot
|
||||
//!
|
||||
//! A friend of Ferris, Terres the hermit crab is the official mascot of SeaORM. His hobby is collecting shells.
|
||||
|
Loading…
x
Reference in New Issue
Block a user