summaryrefslogtreecommitdiff
path: root/src/graphql/query.rs
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2024-09-03 12:27:07 +0200
committerSanto Cariotti <santo@dcariotti.me>2024-09-03 12:27:07 +0200
commit1aab73450987ebdaa813265b6911b4ce8134a788 (patch)
treef24789e456e369e8f3c5582f232ac74a40390c42 /src/graphql/query.rs
parent518eb39eb4c63d20a1ff71930e016937666e55e5 (diff)
Add name and address fields for users
Diffstat (limited to 'src/graphql/query.rs')
-rw-r--r--src/graphql/query.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/graphql/query.rs b/src/graphql/query.rs
index 27ef11f..d2b7968 100644
--- a/src/graphql/query.rs
+++ b/src/graphql/query.rs
@@ -18,7 +18,7 @@ impl Query {
/// curl http://localhost:8000/graphql
/// -H 'authorization: Bearer ***'
/// -H 'content-type: application/json'
- /// -d '{"query":"{users(limit: 2) { id, email, password, isAdmin }}"}'
+ /// -d '{"query":"{users(limit: 2) { id, email, password, name, address, isAdmin }}"}'
/// ```
async fn users<'ctx>(
&self,