-
Notifications
You must be signed in to change notification settings - Fork 59
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[FEAT]: Add Module for Products #131
Comments
I would love to tackle this! |
Hi safeSwap i am a software developer with good exprecienc with nestjs skill and love to contribute to your in this area. i will be grateful if am considered worthy of this issue. thanks SAFESWAP |
I can achieve this in a short time |
Hello my name is Sebastián Hidalgo and I am from Costa Rica |
Could I try solving this? |
Hi, I'm Wilfrid Okorie a Fullstack Web Developer and I'd like to take this issue as an opportunity to contribute to this project |
Can i work on this issue. I have good hands-on experience with Prisma and GraphQL. I would be able to complete this task in <24 hours. |
I’m Zuby, a backend dev with years of experience using Node.js, NestJS, PostgreSQL, and Prisma. I would love to work on this project ETA: within 24hrs-48hrs |
Hi @derianrddev , |
📘 Description
We need to create a module for managing products, following the structure used in the
categories
module. This will allow querying and managing products efficiently.✅ Acceptance Criteria
Product
with the following fields:id
(String, primary key)name
(String)slug
(String, unique)description
(String)price
(Float)categoryId
(String, foreign key referencingCategory
)category
(Relation toCategory
)images
(Relation toProductImage
, one-to-many)createdAt
(DateTime, defaultnow()
)updatedAt
(DateTime, auto-update)products
: Returns a list of all products.product(id: string)
: Returns a single product by its ID.product.dto.ts
) defining the Product structure.npx prisma migrate dev --name add_products
to create the migration.🌎 References
📜 Additional Notes
⚠ Please review the following guidelines before applying:
The text was updated successfully, but these errors were encountered: