原文:http://blog.mygraphql.com/wordpress/?p=114
关于 Relay 支持
包含了一些基础的 Relay 特性的支持。
注意: 这里的 Relay 指 “Relay Classic”, 暂不支持 “Relay Modern”.
完整的例子,见 https://github.com/graphql-ja... 。
Relay 以 JSON 格式,向服务器发送 query
和 variables
两个字段。query
字段是一个 JSON 格式的字符串, variables
字段是一个
变量定义( variable definitions) 的 map。relay 兼容的服务器,需要解释
JSON 然后传 query
字符串到本框架。包括 variables
map 作为 execute
方法的第3个参数。如下:
@RequestMapping(value = "/graphql", method = RequestMethod.POST, produces = MediaType.APPLICATION_JSON_VALUE)
@ResponseBody
public Object executeOperation(@RequestBody Map body) {
String query = (String) body.get("query");
Map<String, Object> variables = (Map<String, Object>) body.get("variables");
if (variables == null) {
variables = new LinkedHashMap<>();
}
ExecutionResult executionResult = graphql.execute(query, (Object) null, variables);
Map<String, Object> result = new LinkedHashMap<>();
if (executionResult.getErrors().size() > 0) {
result.put("errors", executionResult.getErrors());
log.error("Errors: {}", executionResult.getErrors());
}
result.put("data", executionResult.getData());
return result;
}
Apollo 支持
没有为对接 Apollo 客户端做什么。因它兼容所有schema。
上面的 Controller 例子一样可以与 Apollo 客户端交互。
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。