async-graphql/docs/zh-CN/src/custom_directive.md

1.0 KiB
Raw Blame History

自定义指令

Async-graphql可以很方便的自定义指令这可以扩展GraphQL的行为。

创建一个自定义指令,需要实现 CustomDirective trait然后用Directive宏生成一个工厂函数,该函数接收指令的参数并返回指令的实例。

目前Async-graphql仅支持添加FIELD位置的指令。

struct ConcatDirective {
    value: String,
}

#[async_trait::async_trait]
impl CustomDirective for ConcatDirective {
    async fn resolve_field(&self, _ctx: &Context<'_>, resolve: ResolveFut<'_>) -> ServerResult<Option<Value>> {
        resolve.await.map(|value| {
            value.map(|value| match value {
                Value::String(str) => Value::String(str + &self.value),
                _ => value,
            })
        })
    }
}

#[Directive(location = "field")]
fn concat(value: String) -> impl CustomDirective {
    ConcatDirective { value }
}

创建模式时注册指令:

let schema = Schema::build(Query, EmptyMutation, EmptySubscription)
    .directive(concat)
    .finish();