From 80668964c14f141d1b1d4ce5c17ab9211e76c5d5 Mon Sep 17 00:00:00 2001 From: EliasSchriefer Date: Fri, 4 Jun 2021 14:40:19 +0200 Subject: [PATCH] Remove unnecessary scalar definitions `DateTimeUtc` and `Url` are provided by juniper and chrono/url with their respective (default) features. No need to define them manually. (I've skimmed the docs and code) --- noise.graphql | 8 -------- 1 file changed, 8 deletions(-) diff --git a/noise.graphql b/noise.graphql index 677add3..4e83da0 100644 --- a/noise.graphql +++ b/noise.graphql @@ -6,14 +6,6 @@ type Query { users: [User!]! } -# Hopefully provided by juniper and chrono -scalar DateTimeUtc -# else it's probably DateTime -# scalar DateTime - -# Provided by juniper and url -scalar Url - type User { id: ID! userName: String!