Ivan Asmer 5 yıl önce
ebeveyn
işleme
8f9b730a92
1 değiştirilmiş dosya ile 18 ekleme ve 0 silme
  1. 18 0
      README.md

+ 18 - 0
README.md

@@ -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;
+