Joey
interface inventoryDataType extends Product { categories: Category[] }
Ryan
type ProductWithCategories = Prisma.ProductGetPayload<{ include: { categories: true } }>