export default async function fetchOwnProjects(user: string): Promise<FetchOwnProjects> {
  return { data: await Project.find({ user }).lean() }
}