From c5151287434b061e2d6361ae30e72cd5f77366f2 Mon Sep 17 00:00:00 2001 From: Noah Metz Date: Mon, 31 Jul 2023 19:48:05 -0600 Subject: [PATCH] GQL fix --- gql_interfaces.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gql_interfaces.go b/gql_interfaces.go index 00d9a77..06e04bb 100644 --- a/gql_interfaces.go +++ b/gql_interfaces.go @@ -56,7 +56,7 @@ func NodeInterfaceResolveType(required_extensions []ExtType, default_type **grap } gql_type, exists := ctx.GQLContext.NodeTypes[node.Result.NodeType] - ctx.Context.Log.Logf("gql", "GQL_INTERFACE_RESOLVE_TYPE(%+v): %+v - %t - %+v", node, gql_type, exists, required_extensions) + ctx.Context.Log.Logf("gql", "GQL_INTERFACE_RESOLVE_TYPE(%+v): %+v - %t - %+v - %+v", node, gql_type, exists, required_extensions, *default_type) if exists == false { for _, ext := range(required_extensions) { _, exists := node.Result.Extensions[ext]