From 98d111dd1a07ec6090b064239b4e4dc596a78e7a Mon Sep 17 00:00:00 2001 From: Christian Budde Christensen Date: Wed, 26 Jan 2022 08:46:12 +0000 Subject: [PATCH] fix: Pass parse type to run I forgot to parse the `TParsed` to the runner in the `MutationBuilder`. --- packages/graphql_flutter/lib/src/widgets/mutation.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/graphql_flutter/lib/src/widgets/mutation.dart b/packages/graphql_flutter/lib/src/widgets/mutation.dart index 140e2bf01..fbf135f25 100644 --- a/packages/graphql_flutter/lib/src/widgets/mutation.dart +++ b/packages/graphql_flutter/lib/src/widgets/mutation.dart @@ -10,7 +10,7 @@ typedef RunMutation = MultiSourceResult Function( }); typedef MutationBuilder = Widget Function( - RunMutation runMutation, + RunMutation runMutation, QueryResult? result, );