add createDepositOrder mutation

This commit is contained in:
João Geonizeli
2021-09-05 22:32:15 -03:00
parent 3bedd32502
commit c7a799af1e
5 changed files with 78 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
# frozen_string_literal: true
module Inputs
class CreateDepositOrderAttributesInput < Types::BaseInputObject
argument :amount_cents, Integer, "Amount to be paid", required: true
end
end