Sha256: 961885b9e90c715baac79bb3ff1c869b74c94dfada8f722b2a3ffd4bf6f3b4f5

Contents?: true

Size: 326 Bytes

Versions: 2

Compression:

Stored size: 326 Bytes

Contents

module Rasti
  module DB
    module NQL
      module Nodes
        module Comparisons
          class NotEqual < Base

            def filter_condition(collection_class)
              Sequel.negate(attribute.identifier(collection_class) => argument.value)
            end

          end
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rasti-db-2.2.0 lib/rasti/db/nql/nodes/comparisons/not_equal.rb
rasti-db-2.1.0 lib/rasti/db/nql/nodes/comparisons/not_equal.rb