Sha256: 670ad2049539fd9f86591db16a7e44d524ad44ec0c42ccab58b8d365c09d4ae5
Contents?: true
Size: 700 Bytes
Versions: 107
Compression:
Stored size: 700 Bytes
Contents
# frozen_string_literal: true <% module_namespacing_when_supported do -%> module Mutations class <%= class_name %>Delete < BaseMutation description "Deletes a <%= file_name %> by ID" field :<%= file_name %>, Types::<%= options[:namespaced_types] ? 'Objects::' : '' %><%= class_name %>Type, null: false argument :id, ID, required: true def resolve(id:) <%= singular_table_name %> = ::<%= orm_class.find(class_name, "id") %> raise GraphQL::ExecutionError.new "Error deleting <%= file_name %>", extensions: <%= singular_table_name %>.errors.to_hash unless <%= orm_instance.destroy %> { <%= file_name %>: <%= singular_table_name %> } end end end <% end -%>
Version data entries
107 entries across 107 versions & 1 rubygems