Ivan Asmer 5 anos atrás
pai
commit
ff6511f4eb
1 arquivos alterados com 13 adições e 1 exclusões
  1. 13 1
      index.js

+ 13 - 1
index.js

@@ -204,13 +204,23 @@ const anonResolvers = ['login', 'createUser'];
     }
 
     app.use('/graphql', express_graphql(async (req, res, gql) => { 
+        if (!gql.query){
+            return {
+                schema: schema,
+                rootValue: rootResolvers,
+                graphiql: true, 
+            }
+        }
+        const operationMatch = gql.query.match(/\{\s*([a-zA-Z]+)\s*/)
+        const operationName  = operationMatch[1]
         const authorization = req.headers.authorization 
-        if (!authorization && (gql.operationName === null || anonResolvers.includes(gql.operationName)))
+        if (operationName === null || anonResolvers.includes(operationName)){
             return {
                 schema: schema,
                 rootValue: rootResolvers,
                 graphiql: true, 
             }
+        }
         
         if (authorization && authorization.startsWith('Bearer ')){
             console.log('token provided')
@@ -232,5 +242,7 @@ const anonResolvers = ['login', 'createUser'];
         }
     }))
 
+
+
     app.listen(4000, () => console.log('Express GraphQL Server Now Running On localhost:4000/graphql'));
 })()