Sha256: afb395e186e5e7ad643e1a6d67144933c89ed6e31fbc75eae222e5f597434ce6
Contents?: true
Size: 839 Bytes
Versions: 26
Compression:
Stored size: 839 Bytes
Contents
# encoding: utf-8 module Mongoid module Relations module Builders module Referenced class Many < Builder # This builder either takes a hash and queries for the # object or an array of documents, where it will just return tem. # # @example Build the documents. # Builder.new(meta, attrs).build # # @param [ String ] type The type of document to query for. # # @return [ Array<Document> ] The documents. def build(type = nil) return object unless query? return [] if object.is_a?(Array) crit = metadata.criteria(Conversions.flag(object, metadata), base.class) IdentityMap.get_many(crit.klass, crit.selector) || crit end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems