method

extract_attribute

extract_attribute(node)
private

No documentation available.

# File activerecord/lib/active_record/relation/where_clause.rb, line 128
        def extract_attribute(node)
          attr_node = nil
          Arel.fetch_attribute(node) do |attr|
            return if attr_node&.!= attr # all attr nodes should be the same
            attr_node = attr
          end
          attr_node
        end