Sha256: 4eba7bf68091c01b039c44bf7fb368a635d5aeaaf3e545d200db8470cf720549

Contents?: true

Size: 562 Bytes

Versions: 7

Compression:

Stored size: 562 Bytes

Contents

# frozen_string_literal: true

module Ibrain
  module Auth
    module Types
      module Input
        class SignUpInput < Ibrain::Types::BaseInputObject
          argument :first_name, String, required: false
          argument :last_name, String, required: false
          argument :email, String, required: false
          argument :phone, String, required: false
          argument :job_id, ID, required: false
          argument :address, String, required: false
          argument :password, String, required: false
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
ibrain-auth-0.3.7 app/graphql/ibrain/auth/types/input/sign_up_input.rb
ibrain-auth-0.3.6 app/graphql/ibrain/auth/types/input/sign_up_input.rb
ibrain-auth-0.3.5 app/graphql/ibrain/auth/types/input/sign_up_input.rb
ibrain-auth-0.3.4 app/graphql/ibrain/auth/types/input/sign_up_input.rb
ibrain-auth-0.3.3 app/graphql/ibrain/auth/types/input/sign_up_input.rb
ibrain-auth-0.3.2 app/graphql/ibrain/auth/types/input/sign_up_input.rb
ibrain-auth-0.3.1 app/graphql/ibrain/auth/types/input/sign_up_input.rb