forked from ontoportal/goo
-
Notifications
You must be signed in to change notification settings - Fork 7
Closed
Labels
Milestone
Description
At the moment we do not have the ability to search. It would be useful to do things like this.
personList = Person.search(:name , "foo")
personList.each do |p|
puts p.resource_id #lazy loading at this point
p.load #loads the entire object
end
Also the ability to search by Resources.
personList = Person.search(:friendOf , otherPerson)
personList.each do |p|
puts p.resource_id #lazy loading at this point
p.load #loads the entire object
end
Reactions are currently unavailable