Sha256: dc0c6f6abff20edbfa3038f9fe6495d96f65d00b25fa1bd4d81c791cf0965247

Contents?: true

Size: 1.61 KB

Versions: 40

Compression:

Stored size: 1.61 KB

Contents

# frozen_string_literal: true

module Platform
  module Objects
    X = define_active_record_type(-> { ::X }) do
      name "X"
      description "An x on a y."
      visibility :internal
      minimum_accepted_scopes ["z"]

      global_id_field :id
      interfaces [GraphQL::Relay::Node.interface]

      field :f1,    !Objects::O1, "The x being y."
      field :f2,    !Enums::E1, "x for the y.",
        property: :field_2
      field :f3, Enums::E2, "x for y."
      field :details, types.String, "Details."

      field :f4, !Objects::O2, "x as a y inside the z." do
        argument :a1, !Inputs::I1

        resolve ->(obj_x, arguments, context) do
          Class1.new(
            a: Class2.new(
              b: obj_x.b_1,
              c: obj_x.c_1
            ),
            d: Class3.new(
              b: obj_x.b_2,
              c: obj_x.c_3,
            )
          )
        end
      end

      field :f5, -> { !types.String } do
        description "The thing"
        property :custom_property
        visibility :custom_value
      end

      field :f6, -> { !types.String } do
        description "The thing"
        property :custom_property
        visibility :custom_value
      end

      field :f7, field: SomeField
      field :f8, function: SomeFunction
      field :f9, types[Objects::O2]
      field :fieldField, types.String, hash_key: "fieldField"
      field :fieldField2, types.String, property: :field_field2

      field :f10, types.String do
        resolve ->(obj, _, _) do
          obj.something do |_|
            xyz_obj.obj
            obj.f10
          end
        end
      end
    end
  end
end

Version data entries

40 entries across 40 versions & 1 rubygems

Version Path
graphql-1.8.13 spec/fixtures/upgrader/type_x.original.rb
graphql-1.8.12 spec/fixtures/upgrader/type_x.original.rb
graphql-1.9.0.pre1 spec/fixtures/upgrader/type_x.original.rb
graphql-1.8.11 spec/fixtures/upgrader/type_x.original.rb
graphql-1.8.10 spec/fixtures/upgrader/type_x.original.rb
graphql-1.8.9 spec/fixtures/upgrader/type_x.original.rb
graphql-1.8.8 spec/fixtures/upgrader/type_x.original.rb
graphql-1.8.7 spec/fixtures/upgrader/type_x.original.rb
graphql-1.8.6 spec/fixtures/upgrader/type_x.original.rb
graphql-1.8.5 spec/fixtures/upgrader/type_x.original.rb
graphql-1.8.4 spec/fixtures/upgrader/type_x.original.rb
graphql-1.8.3 spec/fixtures/upgrader/type_x.original.rb
graphql-1.8.2 spec/fixtures/upgrader/type_x.original.rb
graphql-1.8.1 spec/fixtures/upgrader/type_x.original.rb
graphql-1.8.0 spec/fixtures/upgrader/type_x.original.rb
graphql-1.8.0.pre11 spec/fixtures/upgrader/type_x.original.rb
graphql-1.8.0.pre10 spec/fixtures/upgrader/type_x.original.rb
graphql-1.8.0.pre9 spec/fixtures/upgrader/type_x.original.rb
graphql-1.8.0.pre8 spec/fixtures/upgrader/type_x.original.rb
graphql-1.8.0.pre7 spec/fixtures/upgrader/type_x.original.rb