|
@@ -89,3 +89,21 @@ query eme($eventId: String!){
|
|
|
}
|
|
|
```
|
|
|
|
|
|
+`createUser` and `login` works without jwt token,
|
|
|
+All others resolvers runs only with token provided.
|
|
|
+
|
|
|
+To teach graphiql works with token open console and substitute
|
|
|
+`fetch` with tuned one:
|
|
|
+
|
|
|
+```javascript
|
|
|
+let authToken = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOnsiaWQiOiI1ZDMzM2I0MjM2MjZlMDc2ZTRjZjcyNDEiLCJsb2dpbiI6ImZvbyJ9LCJpYXQiOjE1NjM2Mzg2MTJ9.G2PxsUH8-ODv07hz_sP_JJfILxymlOw3lPDGgwBzvuk";
|
|
|
+const originalFetch = fetch;
|
|
|
+fetch = (url, params={headers:{}}) => {
|
|
|
+ params.headers.Authorization = "Bearer " + authToken
|
|
|
+ return originalFetch(url, params)
|
|
|
+}
|
|
|
+```
|
|
|
+
|
|
|
+this new `fetch` will override default, so graphiql will pass **authorization** header
|
|
|
+with every query;
|
|
|
+
|