From bc693e7797d5ddc602a8a8eec6f17350f74fb108 Mon Sep 17 00:00:00 2001 From: Jamie Hewitt Date: Mon, 27 Jun 2022 12:24:34 +0300 Subject: [PATCH] changing the type of lastPriceToken from string to Token on Order (#462) * changing the type of lastPriceToken from string to Token * Fixing tests --- schema.graphql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schema.graphql b/schema.graphql index 90f6202..cdb8bf2 100644 --- a/schema.graphql +++ b/schema.graphql @@ -276,7 +276,7 @@ type Order @entity { tx: String! block: Int! - lastPriceToken: String! + lastPriceToken: Token! lastPriceValue: BigDecimal! estimatedUSDValue: BigDecimal! }