Migrate QuerydslDataFetcher to use fluent Querydsl API

Remove supporting classes for external projection as projections are
handled by Spring Data directly.

See gh-168
This commit is contained in:
Mark Paluch
2021-10-22 09:11:41 +02:00
committed by Rossen Stoyanchev
parent eecddb314c
commit 7fea8730db
8 changed files with 191 additions and 287 deletions

View File

@@ -13,6 +13,9 @@ dependencies {
implementation 'org.springframework.boot:spring-boot-starter-hateoas'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
// TODO: Remove after upgrade to Spring Boot 2.6
implementation 'org.springframework.data:spring-data-commons:2.6.0-RC1'
implementation 'org.springframework.data:spring-data-jpa:2.6.0-RC1'
implementation 'com.querydsl:querydsl-core'
implementation 'com.querydsl:querydsl-jpa'
developmentOnly 'org.springframework.boot:spring-boot-devtools'