From 6fcdd32c848f182136467c44883a3b66212233b0 Mon Sep 17 00:00:00 2001 From: Christoph Herzog Date: Thu, 14 Nov 2019 01:31:14 +0100 Subject: [PATCH] Remove GraphQLType ScalarValue default This is more hinderance than useful. --- juniper/src/types/base.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/juniper/src/types/base.rs b/juniper/src/types/base.rs index 39fd08de..f1333f96 100644 --- a/juniper/src/types/base.rs +++ b/juniper/src/types/base.rs @@ -234,7 +234,7 @@ impl GraphQLType for User ``` */ -pub trait GraphQLType: Sized +pub trait GraphQLType: Sized where S: ScalarValue, {