Sha256: ddf9abee1bf10fe0723cc4522660e8ce000ae96c0f68618c25b4ad7af84d0a97

Contents?: true

Size: 1.31 KB

Versions: 34

Compression:

Stored size: 1.31 KB

Contents

# frozen_string_literal: true

module Platform
  module Mutations
    class IncrementThing < Mutations::BaseMutation
      description "increments the thing by 1."
      visibility :internal
      minimum_accepted_scopes ["repo"]

      argument :thing_id, ID, "Thing ID to log.", option: :setting, required: true

      field :thing_id, ID, "Thing ID to log.", null: false

      def resolve(**inputs)
        if some_early_check
          return { thing_id: "000" }
        end

        # These shouldn't be modified:
        { abcDef: 1 }
        some_method do { xyzAbc: 1 } end

        thing = Platform::Helpers::NodeIdentification.typed_object_from_id(Objects::Thing, inputs[:thing_id], context)
        raise Errors::Validation.new("Thing not found.") unless thing

        ThingActivity.track(thing.id, Time.now.change(min: 0, sec: 0))

        if random_condition
          { thing_id: thing.global_relay_id }
        elsif other_random_thing
          { :thing_id => "abc" }
        elsif something_else
          method_with_block {
            { thing_id: "pqr" }
          }
        elsif yet_another_thing
          begin
            { thing_id: "987" }
          rescue
            { thing_id: "789" }
          end
        else
          return {
            thing_id: "xyz"
          }
        end
      end
    end
  end
end

Version data entries

34 entries across 34 versions & 1 rubygems

Version Path
graphql-1.8.18 spec/fixtures/upgrader/increment_count.transformed.rb
graphql-1.9.11 spec/fixtures/upgrader/increment_count.transformed.rb
graphql-1.9.10 spec/fixtures/upgrader/increment_count.transformed.rb
graphql-1.9.9 spec/fixtures/upgrader/increment_count.transformed.rb
graphql-1.9.8 spec/fixtures/upgrader/increment_count.transformed.rb
graphql-1.9.7 spec/fixtures/upgrader/increment_count.transformed.rb
graphql-1.9.6 spec/fixtures/upgrader/increment_count.transformed.rb
graphql-1.9.5 spec/fixtures/upgrader/increment_count.transformed.rb
graphql-1.9.4 spec/fixtures/upgrader/increment_count.transformed.rb
graphql-1.9.3 spec/fixtures/upgrader/increment_count.transformed.rb
graphql-1.9.2 spec/fixtures/upgrader/increment_count.transformed.rb
graphql-1.8.17 spec/fixtures/upgrader/increment_count.transformed.rb
graphql-1.8.16 spec/fixtures/upgrader/increment_count.transformed.rb
graphql-1.9.1 spec/fixtures/upgrader/increment_count.transformed.rb
graphql-1.9.0 spec/fixtures/upgrader/increment_count.transformed.rb
graphql-1.8.15 spec/fixtures/upgrader/increment_count.transformed.rb
graphql-1.9.0.pre4 spec/fixtures/upgrader/increment_count.transformed.rb
graphql-1.8.14 spec/fixtures/upgrader/increment_count.transformed.rb
graphql-1.9.0.pre3 spec/fixtures/upgrader/increment_count.transformed.rb
graphql-1.9.0.pre2 spec/fixtures/upgrader/increment_count.transformed.rb