Skip to content
This repository has been archived by the owner on Dec 19, 2023. It is now read-only.

Cannot resolve symbol 'GraphQLQueryResolver' #549

Closed
gowoonsori opened this issue Mar 8, 2021 · 2 comments
Closed

Cannot resolve symbol 'GraphQLQueryResolver' #549

gowoonsori opened this issue Mar 8, 2021 · 2 comments
Labels

Comments

@gowoonsori
Copy link

Describe the bug
GraphqlQueryResolver suddenly disappeared in kickstart.tools.

Expected behavior
I've been using it well until recently, but it shows that I can't find it when I started working today.

1

build.gradle

plugins {
    id 'org.springframework.boot' version '2.4.2'
    id 'io.spring.dependency-management' version '1.0.11.RELEASE'
    id 'java'
}

group = 'dd'
version = '1.0.0-SNAPSHOT'

sourceCompatibility = '11'
targetCompatibility = 11

configurations {
    compileOnly {
        extendsFrom annotationProcessor
    }
}

repositories {
    mavenCentral()
}

dependencies {
    implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
    implementation 'org.springframework.boot:spring-boot-starter-validation'

    implementation 'com.graphql-java-kickstart:graphql-spring-boot-starter:11.0.0'
    implementation 'com.graphql-java-kickstart:playground-spring-boot-starter:11.0.0'

  
    compile group: 'org.hibernate', name: 'hibernate-spatial', version: '5.4.25.Final'
    compile group: 'org.n52.jackson', name: 'jackson-datatype-jts', version: '1.2.8'



    runtimeOnly 'mysql:mysql-connector-java'
    compile group: 'javax.persistence', name: 'javax.persistence-api', version: '2.2'


    compileOnly 'org.projectlombok:lombok'
    annotationProcessor 'org.projectlombok:lombok'


    compile group: 'org.modelmapper', name: 'modelmapper', version: '2.3.0'


    testImplementation 'org.springframework.boot:spring-boot-starter-test'
    testImplementation 'com.graphql-java-kickstart:graphql-spring-boot-starter-test:11.0.0'
}


test {
    useJUnitPlatform()
}
@gowoonsori gowoonsori added the bug label Mar 8, 2021
@oliemansm
Copy link
Member

@gowoonsori This seems to have something to do with your local setup or gradle config or something, because nothing has changed recently. The GraphQLQueryResolver is still available in the package graphql.kickstart.tools. This is therefore not a bug, but you should have registered this as a Discussion here to try to get some help instead.

@gowoonsori
Copy link
Author

gowoonsori commented Mar 8, 2021

Intellij cache issue. I deleted it and reloaded it and it was resolved.
thanks.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

No branches or pull requests

2 participants