GraphQL Spring Boot Initial Dependencies

PHOTO EMBED

Wed May 17 2023 03:10:58 GMT+0000 (Coordinated Universal Time)

Saved by @swstegall #gradle #kotlin

dependencies {
	implementation("org.springframework.boot:spring-boot-starter-data-mongodb")
	implementation("org.springframework.boot:spring-boot-starter-web")
	implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
	implementation("org.jetbrains.kotlin:kotlin-reflect")
	testImplementation("org.springframework.boot:spring-boot-starter-test")
}
content_copyCOPY

My initial dependencies for my GraphQL Spring Boot project.