diff options
author | Santo Cariotti <santo@dcariotti.me> | 2024-09-03 12:27:07 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2024-09-03 12:27:07 +0200 |
commit | 1aab73450987ebdaa813265b6911b4ce8134a788 (patch) | |
tree | f24789e456e369e8f3c5582f232ac74a40390c42 /src/graphql/query.rs | |
parent | 518eb39eb4c63d20a1ff71930e016937666e55e5 (diff) |
Add name and address fields for users
Diffstat (limited to 'src/graphql/query.rs')
-rw-r--r-- | src/graphql/query.rs | 2 |
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, |