diff options
author | Santo Cariotti <santo@dcariotti.me> | 2024-08-21 12:29:23 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2024-08-21 12:29:23 +0200 |
commit | 91bfbd1abeb37ced029afba966a7134d92838baa (patch) | |
tree | dffcbeae78b89a76120ba476aeae4dda95effd61 /src/graphql/mod.rs | |
parent | 185ba5270aaf94de9b91e4455be27db5198ec21e (diff) |
Add users
Query must be something like '{users { id, email, password, isAdmin }}'
Diffstat (limited to 'src/graphql/mod.rs')
-rw-r--r-- | src/graphql/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/graphql/mod.rs b/src/graphql/mod.rs index 305f0d3..b394fc1 100644 --- a/src/graphql/mod.rs +++ b/src/graphql/mod.rs @@ -1,2 +1,3 @@ pub mod query; pub mod routes; +pub mod types; |