GraphQL

지원되는 확장자: gplgraphql

graphql 파일을 코드에 바로 임포트 할 수 있습니다.

# schema.graphql
type Query { helloString }
import schema from './schema.graphql'

schema는 GraphQL 문서입니다.

또한, 이러한 형태로 임포트가 가능합니다.

# Foo.graphql
type Foo { barString }
# schema.graphql

# import "./Foo.graphql"

type Query { fooFoo }