|
@@ -9,11 +9,11 @@ const anonResolvers = ['login', 'createUser'];
|
|
|
const {Savable, slice, getModels} = await require('./models.js')('cb')
|
|
|
|
|
|
class User extends Savable {
|
|
|
- static get relations(){
|
|
|
- return {
|
|
|
- events: "users"
|
|
|
- }
|
|
|
- }
|
|
|
+ //static get relations(){
|
|
|
+ //return {
|
|
|
+ //events: "users"
|
|
|
+ //}
|
|
|
+ //}
|
|
|
}
|
|
|
Savable.addClass(User)
|
|
|
|
|
@@ -204,14 +204,14 @@ const anonResolvers = ['login', 'createUser'];
|
|
|
}
|
|
|
|
|
|
app.use('/graphql', express_graphql(async (req, res, gql) => {
|
|
|
- if (gql.operationName === null || anonResolvers.includes(gql.operationName))
|
|
|
+ const authorization = req.headers.authorization
|
|
|
+ if (!authorization && (gql.operationName === null || anonResolvers.includes(gql.operationName)))
|
|
|
return {
|
|
|
schema: schema,
|
|
|
rootValue: rootResolvers,
|
|
|
graphiql: true,
|
|
|
}
|
|
|
|
|
|
- const authorization = req.headers.authorization
|
|
|
if (authorization && authorization.startsWith('Bearer ')){
|
|
|
console.log('token provided')
|
|
|
const token = authorization.substr("Bearer ".length)
|