From 8783496c68d5195be2c16802485debe6d817061e Mon Sep 17 00:00:00 2001 From: tyranron Date: Sat, 14 Nov 2020 14:48:53 +0100 Subject: [PATCH] Mention an example of migration from graphql-interface! to #[graphql_interface] in README --- juniper/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/juniper/CHANGELOG.md b/juniper/CHANGELOG.md index df66705e..1da87aff 100644 --- a/juniper/CHANGELOG.md +++ b/juniper/CHANGELOG.md @@ -54,7 +54,7 @@ - Supports multiple `#[graphql]` attributes. - Massively improved the `#[graphql_interface]` macro. ([#682](https://github.com/graphql-rust/juniper/pull/682)): - - Applicable to traits and generates enum or trait object to represent a GraphQL interface. + - Applicable to traits and generates enum or trait object to represent a GraphQL interface (see the [example of migration from `graphql_interface!` macro](https://github.com/graphql-rust/juniper/commit/3472fe6d10d23472752b1a4cd26c6f3da767ae0e#diff-3506bce1e02051ceed41963a86ef59d660ee7d0cd26df1e9c87372918e3b01f0)). - Supports passing context and executor to a field resolver. - Supports custom downcast functions and methods. - Supports generics.