From c48aedd5f975ce0f3daf78e47367b87348378873 Mon Sep 17 00:00:00 2001 From: Samuel Manzanera Date: Wed, 7 Sep 2022 17:56:54 +0200 Subject: [PATCH] Add missing token_address renaming in graphql API --- lib/archethic_web/graphql_schema/transaction_type.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/archethic_web/graphql_schema/transaction_type.ex b/lib/archethic_web/graphql_schema/transaction_type.ex index 3f8076d3a..dd1af6f33 100644 --- a/lib/archethic_web/graphql_schema/transaction_type.ex +++ b/lib/archethic_web/graphql_schema/transaction_type.ex @@ -76,7 +76,7 @@ defmodule ArchethicWeb.GraphQLSchema.TransactionType do object :token_transfer do field(:to, :address) field(:amount, :integer) - field(:token, :address) + field(:token_address, :address) field(:token_id, :integer) end