Remove GraphQLType ScalarValue default

This is more hinderance than useful.
This commit is contained in:
Christoph Herzog 2019-11-14 01:31:14 +01:00
parent 36c71d7162
commit 6fcdd32c84

View file

@ -234,7 +234,7 @@ impl GraphQLType for User
``` ```
*/ */
pub trait GraphQLType<S = DefaultScalarValue>: Sized pub trait GraphQLType<S>: Sized
where where
S: ScalarValue, S: ScalarValue,
{ {