class

ChatParticipant::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)
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_character(records : Enumerable, preload_query)
preload_character(record, preload_query)
preload_character(records : Enumerable)
preload_character(record)
preload_character(records : Enumerable, &)
preload_character(record, &)
preload_chat(records : Enumerable, preload_query)
preload_chat(record, preload_query)
preload_chat(records : Enumerable)
preload_chat(record)
preload_chat(records : Enumerable, &)
preload_chat(record, &)
truncate(*, cascade : 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

character_id(value)
character_id
chat_id(value)
chat_id
clone

Returns a copy of self with all instance variables cloned.

find(id)
full_join_character
full_join_chat
id(value)
id
inner_join_character
inner_join_chat
join_character
join_chat
left_join_character
left_join_chat
preload_character(preload_query : Character::BaseQuery)
preload_character
preload_character
preload_chat(preload_query : Chat::BaseQuery)
preload_chat
preload_chat
right_join_character
right_join_chat
update(id : Int64 | Avram::Nothing = Avram::Nothing.new, chat_id : Chat::PrimaryKeyType | Avram::Nothing = Avram::Nothing.new, character_id : Character::PrimaryKeyType | Avram::Nothing = Avram::Nothing.new) : 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)
where_character(assoc_query : Character::BaseQuery, auto_inner_join : Bool = true)
where_chat(assoc_query : Chat::BaseQuery, auto_inner_join : Bool = true)

Macros

generate_criteria_method(name, type)