Sha256: 09af0658b83869252ffe7cddb3ffddf562bf06d5f498bbfd72948a6823ebab2c
Contents?: true
Size: 859 Bytes
Versions: 171
Compression:
Stored size: 859 Bytes
Contents
# encoding: utf-8 module Mongoid # :nodoc: module Relations #:nodoc: module Builders #:nodoc: module Referenced #:nodoc: 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)) IdentityMap.get(crit.klass, crit.selector) || crit end end end end end end
Version data entries
171 entries across 79 versions & 4 rubygems