GraphQL
支援的副檔名:gql
及 graphql
你可以直接在程式中匯入 graphql 檔案:
# schema.graphql
type Query { hello: String }
import schema from './schema.graphql'
schema
就是 GraphQL Document 了。你也可以直接 import
# Foo.graphql
type Foo { bar: String }
# schema.graphql
# import "./Foo.graphql"
type Query { foo: Foo }
協助我們讓本文件更加完善
若有什麼內容遺漏了或是敘述不清楚的地方,請在本站的 repository 中開啟一個 issue 或者編輯此頁面。