DEV Community

Cover image for GraphQL + Clean Architecture boilerplate
Lê Công Tuấn
Lê Công Tuấn

Posted on • Originally published at congtuanle.Medium

GraphQL + Clean Architecture boilerplate

Inspiration

The Clean Architecture is an awesome guide for developers who desire to build a clean, structured and maintainable projects. The letter L in SOLID principal allows us to make depended components are easily replaced without touch to the business and the core of systems. For example of the web server where there are many frameworks out there (Expressjs, GraphQL, etc) and the chosen decision depends on the purpose of the business and the context.

In this boilerplate guide scope we will go through how to make the core business immune with the change of the detailed technologies. Let's go!

You can find the implementation detail in this repository

Boilerplate

Code structure

.
├── package.json
├── package-lock.json
├── README.md
├── src
│   ├── application
│   │   ├── auth
│   │   │   └── index.ts
│   │   ├── graphql
│   │   │   ├── index.ts
│   │   │   ├── schemaShards
│   │   │   │   ├── index.ts
│   │   │   │   └── users.ts
│   │   │   ├── subscriptionManager.ts
│   │   │   └── utils
│   │   │       └── mergeRawSchemas.ts
│   │   └── index.ts
│   ├── dto
│   │   └── user.dto.ts
│   ├── entities
│   │   └── user.entity.ts
│   ├── index.ts
│   ├── IoC
│   │   ├── container.ts
│   │   ├── icradle.interface.ts
│   │   └── providers
│   │       ├── auth.provider.ts
│   │       └── user.provider.ts
│   ├── persistence
│   │   ├── auth.repository.ts
│   │   ├── constants.ts
│   │   ├── password.ts
│   │   └── user.repository.ts
│   ├── services
│   │   ├── auth.repository.interface.ts
│   │   ├── auth.service.ts
│   │   ├── user.repository.interface.ts
│   │   └── user.service.ts
│   └── __typedefs
│       ├── graphqlTypes.d.ts
│       └── schema.graphql
└── tsconfig.json
Enter fullscreen mode Exit fullscreen mode

The main folder is src where contains the implementation:

  • application: Application layer where we can use a backend web application framework. In this boilerplate is GraphQL
  • service: The business service layer where we defined the logic to handle application use cases. This layers also contains adapters that abstract the detailed actions, for example, access to database.
  • entities: This is the core component of the application where we define the application entities.
  • persistence: This is another detailed layer where we specify actions to communicate to database, message queue, etc.
  • dto: (stand for Data Transfer Object) defines communication contracts between layers. For example, what type of input param or return value that is used in methods of layers
  • IoC: (stand for Inversion of Control) is an implementation of the Dependency Injection, the letter D in the SOLID principal. Every time you create a new Service class, or a new repository class, or a new controller, you need to register them in this container. This boilerplate uses Awilix library to achieve the factor.

Communication Policies

The communication policies between layers and domains compliant with the Clean Architecture. The directions of arrows in the following diagrams show the relation between components. For example, if an arrow direction from component X to component Y, it means component X depends on the component Y.

1/ Dependency diagram
Dependency diagram

As you can see in the diagram the dependency flow among layers:

  • Entity is the core layer and does not depend on any component
  • To inverse the dependency from the domain business layer to the repository layer, there is a repository interface in the domain business. This allows us to be able to implement and update this layer with the detailed technologies
  • Application Controller depends in the services
  • IoC container depends on services, repositories and application controllers because we need to register all of them to the container
  • Application router depends on the IoC container that allows us to use registered application controllers to handle client requests

2/ Dependency between domains
Dependency between domains diagram

In real-life projects, of course, there is not merely 1 domain. So, we need to define the communication rules between layers of them.

Getting Started

There are some beginning available command lines is defined the scripts part of the package.json file.

1/ Install dependencies

npm i
Enter fullscreen mode Exit fullscreen mode

2/ Run the application under the dev mode with the hot reload feature

npm run dev
Enter fullscreen mode Exit fullscreen mode

3/ Compile the application

npm run build
Enter fullscreen mode Exit fullscreen mode

4/ Run the application under the production mode. You need to compile the application before

npm run start
Enter fullscreen mode Exit fullscreen mode

5/ Generate types for GraphQL schema. This action must be done each time you update the GraphQL schema to allow typescript compiler understand your schema:

npm run generate-typedefs
Enter fullscreen mode Exit fullscreen mode

References

Latest comments (0)