class

Tour::BaseQuery

Inherits Avram::PrimaryKeyQueryable < Avram::Queryable < Enumerable < Reference < Object

Constructors

all

Class methods

any?

Returns true if at least one of the collection's members is truthy.

[nil, true, 99].any? # => true
[nil, false].any?    # => false
([] of Int32).any?   # => false
  • #present? does not consider truthiness of elements.
  • #any?(&) and #any(pattern) allow custom conditions.

NOTE: #any? usually has the same semantics as #present?. They only differ if the element type can be falsey (i.e. T <= Nil || T <= Pointer || T <= Bool). It's typically advised to prefer #present? unless these specific truthiness semantics are required.

find(id) : T
first

Returns the first element in the collection. Raises Enumerable::EmptyError if the collection is empty.

([1, 2, 3]).first   # => 1
([] of Int32).first # raises Enumerable::EmptyError
first?

Returns the first element in the collection. When the collection is empty, returns nil.

([1, 2, 3]).first?   # => 1
([] of Int32).first? # => nil
last
last?
new_with_existing_query(query : Avram::QueryBuilder)
none?

Returns true if all of the elements of the collection are falsey.

[nil, false].none?       # => true
[nil, false, true].none? # => false

It's the opposite of all?.

preload_collect_points(record : Tour, force : Bool = false) : Tour
preload_collect_points(record : Tour, force : Bool = false, &) : Tour
preload_collect_points(record : Tour, preload_query : CollectPoint::BaseQuery, force : Bool = false) : Tour
preload_collect_points(records : Enumerable(Tour), force : Bool = false) : Array(Tour)
preload_collect_points(records : Enumerable(Tour), force : Bool = false, &) : Array(Tour)
preload_collect_points(records : Enumerable(Tour), preload_query : CollectPoint::BaseQuery, force : Bool = false) : Array(Tour)

force is an accepted argument, but is ignored

preload_collect_points_tour(record : Tour, force : Bool = false) : Tour
preload_collect_points_tour(record : Tour, force : Bool = false, &) : Tour
preload_collect_points_tour(record : Tour, preload_query : CollectPointsTour::BaseQuery, force : Bool = false) : Tour
preload_collect_points_tour(records : Enumerable(Tour), force : Bool = false) : Array(Tour)
preload_collect_points_tour(records : Enumerable(Tour), force : Bool = false, &) : Array(Tour)
preload_collect_points_tour(records : Enumerable(Tour), preload_query : CollectPointsTour::BaseQuery, force : Bool = false) : Array(Tour)
truncate(*, cascade : Bool = false, restart_identity : Bool = false)

Removes all data from a table using the TRUNCATE postgres SQL command.

You should run this command with cascade: true if your table columns are referenced by other foreign key constraints. Use delete instead if you don't want to accidentally delete rows referenced elsewhere.

To delete all data referenced by foreign keys as well, set cascade to true.

Instance methods

clone

Returns a copy of self with all instance variables cloned.

created_at(value)
created_at
end_date(value)
end_date
find(id) : T
full_join_collect_points
full_join_collect_points_tour
id(value)
id
image1(value)
image1
image2(value)
image2
image3(value)
image3
image4(value)
image4
image5(value)
image5
inner_join_collect_points
inner_join_collect_points_tour
join_collect_points
join_collect_points_tour
left_join_collect_points
left_join_collect_points_tour
note(value)
note
preload_collect_points(preload_query : CollectPoint::BaseQuery, *, through : Avram::Queryable | Nil = nil) : self
preload_collect_points(*, through : Avram::Queryable | Nil = nil) : self
preload_collect_points(*, through : Avram::Queryable | Nil = nil, &) : self
preload_collect_points_tour(preload_query : CollectPointsTour::BaseQuery) : self
preload_collect_points_tour
preload_collect_points_tour
right_join_collect_points
right_join_collect_points_tour
start_date(value)
start_date
title(value)
title
update(id : UUID | Avram::Nothing = IGNORE, created_at : Time | Avram::Nothing = IGNORE, title : String | Avram::Nothing = IGNORE, start_date : Time | Avram::Nothing = IGNORE, end_date : Time | Avram::Nothing = IGNORE, note : String | Avram::Nothing = IGNORE, image1 : String | Avram::Nothing | Nil = IGNORE, image2 : String | Avram::Nothing | Nil = IGNORE, image3 : String | Avram::Nothing | Nil = IGNORE, image4 : String | Avram::Nothing | Nil = IGNORE, image5 : String | Avram::Nothing | Nil = IGNORE, user_id : Int32 | Avram::Nothing | Nil = IGNORE) : Int64

Update the records using the query's where clauses, or all records if no wheres are added.

Returns the number of records updated as Int64.

# Update all comments with the word "spam" as spam
CommentQuery.new.body.ilike("spam").update(spam: true)
user_id(value)
user_id
where_collect_points(assoc_query : CollectPoint::BaseQuery, auto_inner_join : Bool = true)
where_collect_points_tour(assoc_query : CollectPointsTour::BaseQuery, auto_inner_join : Bool = true)

Macros

generate_criteria_method(name, type)