Skip to content
Snippets Groups Projects
Commit 9ff779b1 authored by Jure's avatar Jure
Browse files

feat(graphql): add where option to connector calls where needed

parent 7fc1c5cf
No related branches found
No related tags found
No related merge requests found
......@@ -3,8 +3,8 @@ const resolvers = {
collection(_, { id }, ctx) {
return ctx.connectors.Collection.fetchOne(id, ctx)
},
collections(_, { id }, ctx) {
return ctx.connectors.Collection.fetchAll(ctx)
collections(_, { where }, ctx) {
return ctx.connectors.Collection.fetchAll(where, ctx)
},
},
Mutation: {
......
......@@ -3,8 +3,8 @@ const resolvers = {
fragment(_, { id }, ctx) {
return ctx.connectors.Fragment.fetchOne(id, ctx)
},
fragments(_, { id }, ctx) {
return ctx.connectors.Fragment.fetchAll(ctx)
fragments(_, { where }, ctx) {
return ctx.connectors.Fragment.fetchAll(where, ctx)
},
},
Mutation: {
......
......@@ -6,8 +6,8 @@ const resolvers = {
user(_, { id }, ctx) {
return ctx.connectors.User.fetchOne(id, ctx)
},
users(_, vars, ctx) {
return ctx.connectors.User.fetchAll(ctx)
users(_, { where }, ctx) {
return ctx.connectors.User.fetchAll(where, ctx, { eager: 'teams' })
},
// Authentication
currentUser(_, vars, ctx) {
......@@ -16,7 +16,14 @@ const resolvers = {
},
},
Mutation: {
createUser(_, { input }, ctx) {
async createUser(_, { input }, ctx) {
if (input.password) {
input.passwordHash = await ctx.connectors.User.model.hashPassword(
input.password,
)
delete input.password
}
return ctx.connectors.User.create(input, ctx)
},
deleteUser(_, { id }, ctx) {
......@@ -46,11 +53,6 @@ const resolvers = {
}
},
},
User: {
teams(user, vars, ctx) {
return ctx.connectors.Team.fetchSome(user.teams, ctx)
},
},
}
const typeDefs = `
......@@ -68,8 +70,8 @@ const typeDefs = `
type User {
id: ID!
type: String
username: String!
email: String!
username: String
email: String
admin: Boolean
teams: [Team!]!
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment