Graphql 中删除突变的结果应该是什么?我正在使用 graphql-ruby gem。这是我的突变的一个例子,但我只是不确定我应该返回什么作为响应。
Mutations::Brands::Delete = GraphQL::Relay::Mutation.define do
name "DeleteBrand"
description "Delete a brand"
input_field :id, types.ID
# return_field ??
resolve ->(object, inputs, ctx) {
brand = Brand.find(inputs[:id])
brand.destroy
}
end