File tree 2 files changed +3
-3
lines changed
src/main/java/ch/xxx/maps/adapter/controller
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 12
12
*/
13
13
plugins {
14
14
id ' java'
15
- id ' org.springframework.boot' version ' 3.2.2 '
15
+ id ' org.springframework.boot' version ' 3.3.0 '
16
16
id ' org.graalvm.buildtools.native' version ' 0.10.0'
17
17
id ' io.spring.dependency-management' version ' 1.1.4'
18
18
id ' org.hibernate.orm' version ' 6.3.1.Final'
@@ -44,7 +44,7 @@ dependencies {
44
44
implementation ' org.springframework.boot:spring-boot-starter-validation'
45
45
implementation ' io.micrometer:micrometer-registry-prometheus'
46
46
implementation ' org.liquibase:liquibase-core'
47
- implementation ' com.graphql-java:graphql-java-extended-scalars:21 .0'
47
+ implementation ' com.graphql-java:graphql-java-extended-scalars:22 .0'
48
48
implementation ' commons-net:commons-net:3.8.0'
49
49
testImplementation ' org.springframework.boot:spring-boot-starter-test'
50
50
testImplementation ' org.springframework.security:spring-security-test'
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ public Boolean resetDb() {
90
90
}
91
91
92
92
@ MutationMapping
93
- public Boolean deletePolygon (@ Argument Long companySiteId , @ Argument Long polygonId ) {
93
+ public Boolean deletePolygon (@ Argument ( "companySiteId" ) Long companySiteId , @ Argument ( "polygonId" ) Long polygonId ) {
94
94
LOGGER .info ("companySiteId: {} polygonId: {}" , companySiteId , polygonId );
95
95
return this .companySiteService .deletePolygon (companySiteId , polygonId );
96
96
}
You can’t perform that action at this time.
0 commit comments