I'm using acts-as-taggable-on. I have Article model:

class Article < ActiveRecord::Base
  acts_as_taggable_on :tags
end

I know how to find all articles with tag "tag". According to README the solution is: Article.tagged_with("tag").

But how to find all Articles without any tags?

link|improve this question

67% accept rate
feedback

3 Answers

up vote 4 down vote accepted
+50

Use a classic SQL trick: left join then select lines where second ID is null.

Article.
  joins(%Q{LEFT JOIN taggings ON taggings.taggable_id=articles.id AND taggings.taggable_type='Article'}).
  where('taggings.id IS NULL')
link|improve this answer
IMHO this feel hacky and not rails like.. – daniel Oct 27 '11 at 13:44
@daniel, there's no nice rails way to work with complex joins. Other than that, see codinghorror.com/blog/2007/10/… – Leonid Shevtsov Oct 27 '11 at 13:51
Yes, I agree that Article.tagged_with(Tag.all.map(&:to_s), :exclude => true) is more Rails way. But I'm using Rails 2.3 and want to use this like a named_scope so It is the only way... – petRUShka Oct 29 '11 at 11:58
@petRUShka, also, this query is much more efficient. – Leonid Shevtsov Oct 29 '11 at 12:34
That solutions dosn't work in some cases. I faced with following situation: some taggins havn't deleted, but tag_list is empty. – petRUShka Dec 5 '11 at 17:14
feedback

According to the source for acts-as-taggable-on, you can use the :exclude option:

##
# Return a scope of objects that are tagged with the specified tags.
#
# @param tags The tags that we want to query for
# @param [Hash] options A hash of options to alter you query:
#                       * <tt>:exclude</tt> - if set to true, return objects that are *NOT* tagged with the specified tags
#                       * <tt>:any</tt> - if set to true, return objects that are tagged with *ANY* of the specified tags
#                       * <tt>:match_all</tt> - if set to true, return objects that are *ONLY* tagged with the specified tags
#                       * <tt>:owned_by</tt> - return objects that are *ONLY* owned by the owner

So in your instance, just do:

Article.tagged_with("tag", :exclude => true)

EDIT: Just realized you asked for articles without any tags, in which case, you'll need to supply the list of all your tags to the method:

Article.tagged_with(Tag.all.map(&:to_s), :exclude => true)
link|improve this answer
feedback

You can just use the select function. I guess the SQL Solution is much more efficient, but this looks bit more nice:

Artical.all.select{|a| a.tags.count == 0 }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.