module Acfs::Resource::QueryMethods

Methods providing the query interface for finding resouces.

@example

class MyUser < Acfs::Resource
end

MyUser.find(5)               # Find single resource
MyUser.all                   # Full or partial collection of
                             # resources
Comment.where(user: user.id) # Collection with additional parameter
                             # to filter resources