diff --git a/app/graph/types/commentable_interface.rb b/app/graph/types/commentable_interface.rb index 3bbe96c4f..1f62b0d09 100644 --- a/app/graph/types/commentable_interface.rb +++ b/app/graph/types/commentable_interface.rb @@ -12,10 +12,3 @@ CommentableInterface = GraphQL::InterfaceType.define do field :comments, !types[!CommentType], "Comments in this commentable" field :geozone, GeozoneType, "Geozone affected by this commentable" end - - -# Then, object types may include it: -CoffeeType = GraphQL::ObjectType.define do - # ... - interfaces([BeverageInterface]) -end