Files
learn-with-making-clean-arc…/놀이터(예제 코드 작성)/graphql-kotlin/src/test/kotlin/com/banjjoknim/graphqlkotlin/GraphqlKotlinApplicationTests.kt
Colt e05abb53f1 GraphQL Kotlin 예제 코드 추가 (#13)
* graphql-kotlin initial commit

* docs : README.md 및 공식 문서 링크 추가

* build : Spring Web MVC(servlet) stack -> Spring WebFlux(reactive) stack 으로 의존성 변경

* build : GraphQL Kotlin Spring Server 의존성 추가

* add graphql package configuration

* docs : graphql package 설정 설명 주석 추가

* docs : GraphQL Kotlin 공식 문서 링크 및 제목 수정

* feat : Schema, Query, Mutation, Subscription 추가

* docs : README.md 항목 수정

* feat : GraphQL Context 구현체 추가
2022-08-02 15:30:28 +09:00

14 lines
223 B
Kotlin

package com.banjjoknim.graphqlkotlin
import org.junit.jupiter.api.Test
import org.springframework.boot.test.context.SpringBootTest
@SpringBootTest
class GraphqlKotlinApplicationTests {
@Test
fun contextLoads() {
}
}