From 24a221d8e4bedafe9b87b8becf60d0c9ce3040cb Mon Sep 17 00:00:00 2001 From: "Restarone Solutions Inc. Software Engineering" Date: Sat, 13 Dec 2025 15:17:29 -0500 Subject: [PATCH] fix: remove TODO comment and test field from GraphQL mutation type - Remove test field that was added by generator - Clean up TODO comment indicating removal - Simplify MutationType class to prepare for production use This addresses code quality issues identified in the GraphQL schema. --- app/graphql/types/mutation_type.rb | 6 ------ 1 file changed, 6 deletions(-) diff --git a/app/graphql/types/mutation_type.rb b/app/graphql/types/mutation_type.rb index 28516a597..113861978 100644 --- a/app/graphql/types/mutation_type.rb +++ b/app/graphql/types/mutation_type.rb @@ -1,10 +1,4 @@ module Types class MutationType < Types::BaseObject - # TODO: remove me - field :test_field, String, null: false, - description: "An example field added by the generator" - def test_field - "Hello World" - end end end