File size: 248 Bytes
7069a57
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import { collections } from '$lib/server/db';
import type { PageServerLoad } from './types';

export const load: PageServerLoad = async () => {
	return {
		photos: await collections.pictures.find({ productId: { $exists: false } }).toArray()
	};
};