ASP.NET Core中使用GraphQL - 第一章 Hello World
前言
你是否已经厌倦了REST风格的API? 让我们来聊一下GraphQL。 GraphQL提供了一种声明式的方式从服务器拉取数据。你可以从GraphQL官网中了解到GraphQL的所有优点。在这一系列博客中,我将展示如何在ASP.NET Core中集成GraphQL, 并使用GraphQL作为你的API查询语言。
使用GraphQL的声明式查询,你可以自定义API返回的属性列表。这与REST API中每个API只返回固定字段不同。
安装GraphQL
为了在C#中使用GraphQL, GraphQL社区中提供了一个开源组件graphql-dotnet
。本系列博客中我们都将使用这个组件。
首先我们创建一个空的ASP.NET Core App
dotnet new web --name chatper1
然后我们添加对graphql-dotnet
库的引用
dotnet add package GraphQL
创建第一个Query
下面我们来创建一个query
类, 我们将它命名为HelloWorldQuery
。graphql-dotnet
中,查询类都需要继承ObjectGraphType
类,所以HelloWorldQuery
的代码如下
using GraphQL.Types;
public class HelloWorldQuery : ObjectGraphType
{
public HelloWorldQuery()
{
Field<StringGraphType>(
name: "hello",
resolve: context => "world"
);
}
}
这里你可能注意到我们使用了一个泛型方法Field
,并传递了一个GraphQL的字符串类型StringGraphType
来定义了一个hello
字段, resolve
参数是一个Func委托,在其中定义了如何返回当前字段的值,这里我们是直接返回了一个字符串hello。
查询类中的返回字段都是定义在查询类的构造函数中的
现在我们一个有了一个查询类,下一步我们需要使用这个查询类构建一个结构(schema)。
在Startup.cs
文件的Configure
方法中,使用以下代码替换原有代码
var schema = new Schema {
Query = new HelloWorldQuery()
};
app.Run(async (context) =>
{
var result = await new DocumentExecuter()
.ExecuteAsync(doc =>
{
doc.Schema = schema;
doc.Query = @"
query {
hello
}
";
}).ConfigureAwait(false);
var json = new DocumentWriter(indent: true)
.Write(result)
await context.Response.WriteAsync(json);
});
DocumentExecuter
类的ExecuteAsync
方法中我们定义Action委托,并通过这个委托设置了一个ExecutionOptions
对象。这个对象初始化了我们定义的结构(schema), 并执行了我们定义的查询字符串。doc.Query
定义了一个查询字符串- 最终查询执行的结果会通过
DocumentWriter
类实例的Write
被转换成一个JSON字符串
下面我们来运行一下这个程序
dotnet run
你将在浏览器中看到以下结果
{
"data": {
"hello": "world"
}
}
从以上的例子中,你会发现使用GraphQL并不像想象中那么难。下面我们可以在HelloWorldQuery
类的构造函数中再添加一个字段howdy
, 并指定这个字段会返回一个字符串universe
。
Field<StringGraphType>(
name: "howdy",
resolve: context => "universe"
);
然后我们继续修改Startup
类中的Configure
方法, 修改我们之前定义的query
var schema = new Schema {
Query = new HelloWorldQuery()
};
app.Run(async (context) =>
{
var result = await new DocumentExecuter()
.ExecuteAsync(doc =>
{
doc.Schema = schema;
doc.Query = @"
query {
hello
howdy
}
";
}).ConfigureAwait(false);
var json = new DocumentWriter(indent: true)
.Write(result);
await context.Response.WriteAsync(json);
});
重新启动项目后,结果如下
{
"data": {
"hello": "world",
"howdy": "universe"
}
}
总结
本篇我们只是接触了GraphQL的一些皮毛,你可能会对GraphQL声明式行为有很多问题,没有关系,后续博客中,我们慢慢解开GraphQL的面纱。下一篇我们将介绍如何创建一个中间件(Middleware)