GraphQL 已有多种编程语言支持。下表包含一些流行的服务端框架、客户端库和其他有用的内容。
除了 GraphQL JavaScript 参考实现,还有其他服务端库:
一套 Clojure 的 GraphQL 可复用组件,满足 alumbra.spec 规范要求的数据结构。
(require '[alumbra.core :as alumbra] '[claro.data :as data]) (def schema "type Person { name: String!, friends: [Person!]! } type QueryRoot { person(id: ID!): Person, me: Person! } schema { query: QueryRoot }") (defrecord Person [id] data/Resolvable (resolve! [_ _] {:name (str "Person #" id) :friends (map ->Person (range (inc id) (+ id 3)))})) (def QueryRoot {:person (map->Person {}) :me (map->Person {:id 0})}) (def app (alumbra/handler {:schema schema :query QueryRoot})) (defonce my-graphql-server (aleph.http/start-server #'app {:port 3000}))
$ curl -XPOST "http://0:3000" -H'Content-Type: application/json' -d'{ "query": "{ me { name, friends { name } } }" }' {"data":{"me":{"name":"Person #0","friends":[{"name":"Person #1"},{"name":"Person #2"}]}}}
一个提供 GraphQL 实现的 Clojure 库。
可以执行一个 hello world
GraphQL 查询的 graphql-clj
代码如下:
(def schema "type QueryRoot { hello: String }") (defn resolver-fn [type-name field-name] (get-in {"QueryRoot" {"hello" (fn [context parent & rest] "Hello world!")}} [type-name field-name])) (require '[graphql-clj.executor :as executor]) (executor/execute nil schema resolver-fn "{ hello }")
一个用于构建 GraphQL API 的 Java 库。
可以执行一个 hello world
GraphQL 查询的 graphql-java
代码如下:
import graphql.ExecutionResult; import graphql.GraphQL; import graphql.schema.GraphQLSchema; import graphql.schema.StaticDataFetcher; import graphql.schema.idl.RuntimeWiring; import graphql.schema.idl.SchemaGenerator; import graphql.schema.idl.SchemaParser; import graphql.schema.idl.TypeDefinitionRegistry; import static graphql.schema.idl.RuntimeWiring.newRuntimeWiring; public class HelloWorld { public static void main(String[] args) { String schema = "type Query{hello: String} schema{query: Query}"; SchemaParser schemaParser = new SchemaParser(); TypeDefinitionRegistry typeDefinitionRegistry = schemaParser.parse(schema); RuntimeWiring runtimeWiring = newRuntimeWiring() .type("Query", builder -> builder.dataFetcher("hello", new StaticDataFetcher("world"))) .build(); SchemaGenerator schemaGenerator = new SchemaGenerator(); GraphQLSchema graphQLSchema = schemaGenerator.makeExecutableSchema(typeDefinitionRegistry, runtimeWiring); GraphQL build = GraphQL.newGraphQL(graphQLSchema).build(); ExecutionResult executionResult = build.execute("{hello}"); System.out.println(executionResult.getData().toString()); // Prints: {hello=world} } }
查看 graphql-java 文档 以了解更多信息。
GraphQL 规范的参考实现,设计用于在 Node.js 环境中运行。
如果要在命令行中运行一个 GraphQL.js
的 hello world
脚本:
npm install graphql
然后使用 node hello.js
以运行 hello.js
中的代码:
var { graphql, buildSchema } = require('graphql'); var schema = buildSchema(` type Query { hello: String } `); var root = { hello: () => 'Hello world!' }; graphql(schema, '{ hello }', root).then((response) => { console.log(response); });
基于 Express webserver 服务器的一个 GraphQL API 服务端参考实现,你可以用它结合常规 Express webserver 来运行 GraphQL,也可以作为独立 GraphQL 服务器。
如果要运行 express-graphql
的 hello world 服务器:
npm install express express-graphql graphql
然后使用 node server.js
以运行 server.js
中的代码:
var express = require('express'); var graphqlHTTP = require('express-graphql'); var { buildSchema } = require('graphql'); var schema = buildSchema(` type Query { hello: String } `); var root = { hello: () => 'Hello world!' }; var app = express(); app.use('/graphql', graphqlHTTP({ schema: schema, rootValue: root, graphiql: true, })); app.listen(4000, () => console.log('Now browse to localhost:4000/graphql'));
来自于 Apollo 的一套 GraphQL server 包,可用于多种 Node.js HTTP 框架(Express,Connect,Hapi,Koa 等)。
如果要运行 graphql-server-express
的 hello world 服务器:
npm install graphql-server-express body-parser express graphql graphql-tools
然后使用 node server.js
以运行 server.js
中的代码:
var express = require('express'); var bodyParser = require('body-parser'); var { graphqlExpress, graphiqlExpress } = require('graphql-server-express'); var { makeExecutableSchema } = require('graphql-tools'); var typeDefs = [` type Query { hello: String } schema { query: Query }`]; var resolvers = { Query: { hello(root) { return 'world'; } } }; var schema = makeExecutableSchema({typeDefs, resolvers}); var app = express(); app.use('/graphql', bodyParser.json(), graphqlExpress({schema})); app.use('/graphiql', graphiqlExpress({endpointURL: '/graphql'})); app.listen(4000, () => console.log('Now browse to localhost:4000/graphiql'));
GraphQL Server 也支持所有的 Node.js HTTP 服务器框架:Express、Connect、HAPI 和 Koa。
一个用于构建 GraphQL API 的 Python 库。
如果要运行一个 Graphene hello world 脚本:
pip install graphene
然后使用 python hello.py
以运行 hello.py
中的代码:
import graphene class Query(graphene.ObjectType): hello = graphene.String() def resolve_hello(self, args, context, info): return 'Hello world!' schema = graphene.Schema(query=Query) result = schema.execute('{ hello }') print(result.data['hello'])
其也有对 Relay、Django、SQLAlchemy 和 Google App Engine 的良好绑定。
一个用于构建 GraphQL API 的 Ruby 库。
如果要使用 graphql-ruby
运行一个 hello world 脚本:
gem install graphql
然后使用 ruby hello.rb
运行 hello.rb
中的代码:
require 'graphql' QueryType = GraphQL::ObjectType.define do name 'Query' field :hello do type types.String resolve -> (obj, args, ctx) { 'Hello world!' } end end Schema = GraphQL::Schema.define do query QueryType end puts Schema.execute('{ hello }')
其也有对于 Relay 和 Rails 的良好绑定。
使用的 sangria
的一个 GraphQL schema 以及 hello world 查询:
import sangria.schema._ import sangria.execution._ import sangria.macros._ val QueryType = ObjectType("Query", fields[Unit, Unit]( Field("hello", StringType, resolve = _ ⇒ "Hello world!") )) val schema = Schema(QueryType) val query = graphql"{ hello }" Executor.execute(schema, query) map println
fetch
的轻度封装。