import { Database } from './database'; export const createResolvers = async (db: Database): Promise => { return { Query: { user: ( _: any, __: any, // TODO: add custom type for context context: any ) => { return db.getUser(context.userId); } } }; };