import clientPromise from '@/lib/mongodb';
export const resolvers = {
Query: {
users: async () => {
const client = await clientPromise;
const db = client.db('test');
return db.collection('users').find().toArray();
},
};
Powered by TurnKey Linux.