diff --git a/README.md b/README.md
index fe8cfde..ccea7a4 100644
--- a/README.md
+++ b/README.md
@@ -54,11 +54,13 @@ You can use `npx nx list` to get a list of installed plugins. Then, run `npx nx
## Architecture
-| Layer | Description |
-| ------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
-| use-case(application) | Define business use cases and encapsulate business logic. |
-| entity(domain) | Define core business entities and business rules.
Maintain entity independence from database and framework. |
-| repository(domain) | Interfaces (or abstract classes), which define methods for manipulating data without concern for specific database implementations.
By defining this interface, we can decouple database access: the specific details of data access will be done by implementation classes, such as specific implementations using tools like Mongoose, TypeORM, Prisma, and so on. |
+| Layer | Description |
+| --------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| dto(presentation) | Define DTOs for GraphQL schema. |
+| resolver(presentation) | Define GraphQL schema and resolver. |
+| use-case(application) | Define business use cases and encapsulate business logic. |
+| entity(domain) | Define core business entities and business rules.
Maintain entity independence from database and framework. |
+| repository(domain) | Interfaces (or abstract classes), which define methods for manipulating data without concern for specific database implementations.
By defining this interface, we can decouple database access: the specific details of data access will be done by implementation classes, such as specific implementations using tools like Mongoose, TypeORM, Prisma, and so on. |
## Useful links