* added example for axum + graphql * clean up * removed macos file * Pr/587 (#1) * Migrate on startup * Update CI * Add .gitignore * Add README Co-authored-by: Billy Chan <ccw.billy.123@gmail.com> Co-authored-by: Billy Chan <ccw.billy.123@gmail.com>
11 lines
285 B
Rust
11 lines
285 B
Rust
use entity::async_graphql;
|
|
|
|
pub mod note;
|
|
|
|
pub use note::NoteMutation;
|
|
|
|
// Add your other ones here to create a unified Mutation object
|
|
// e.x. Mutation(NoteMutation, OtherMutation, OtherOtherMutation)
|
|
#[derive(async_graphql::MergedObject, Default)]
|
|
pub struct Mutation(NoteMutation);
|