From b4cf6118333692781652093074b4c8bc675afdb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20My=C5=9Bliwiec?= Date: Thu, 2 Jul 2020 14:42:43 +0200 Subject: [PATCH] fix(test): fix sorted schema snapshot --- tests/utils/printed-schema.snapshot.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/utils/printed-schema.snapshot.ts b/tests/utils/printed-schema.snapshot.ts index 77e29dd71..47d27de2e 100644 --- a/tests/utils/printed-schema.snapshot.ts +++ b/tests/utils/printed-schema.snapshot.ts @@ -129,6 +129,7 @@ type Ingredient { """example interface""" interface IRecipe { id: ID! + interfaceResolver(arg: Float): Boolean! title: String! } @@ -171,6 +172,7 @@ type Recipe implements IRecipe { description: String id: ID! ingredients: [Ingredient!]! + interfaceResolver(arg: Float): Boolean! lastRate: Float rating: Float! tags: [String!]!