* 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 구현체 추가
14 lines
223 B
Kotlin
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() {
|
|
}
|
|
|
|
}
|