diff options
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, |