class Chat::BaseQuery

Included Modules

Direct Known Subclasses

Defined in:

Constructors

Class Method Summary

Instance Method Summary

Macro Summary

Constructor Detail

def self.all : self #

Class Method Detail

def self.any? : Bool #
Description copied from module Enumerable(Chat)

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

[nil, true, 99].any? # => true
[nil, false].any?    # => false

def self.find(id) #

def self.first : T #
Description copied from module Enumerable(Chat)

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

def self.first? : T | Nil #
Description copied from module Enumerable(Chat)

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

([1, 2, 3]).first?   # => 1
([] of Int32).first? # => nil

def self.last : T #

def self.last? : T | Nil #

def self.new_with_existing_query(query : Avram::QueryBuilder) #

def self.none? : Bool #
Description copied from module Enumerable(Chat)

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?.


def self.preload_characters(records : Enumerable, preload_query) #

def self.preload_characters(record, preload_query) #

def self.preload_characters(records : Enumerable) #

def self.preload_characters(record) #

def self.preload_characters(records : Enumerable, &) #

def self.preload_characters(record, &) #

def self.preload_creator(records : Enumerable, preload_query) #

def self.preload_creator(record, preload_query) #

def self.preload_creator(records : Enumerable) #

def self.preload_creator(record) #

def self.preload_creator(records : Enumerable, &) #

def self.preload_creator(record, &) #

def self.preload_participants(records : Enumerable, preload_query) #

def self.preload_participants(record, preload_query) #

def self.preload_participants(records : Enumerable) #

def self.preload_participants(record) #

def self.preload_participants(records : Enumerable, &) #

def self.preload_participants(record, &) #

def self.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 Method Detail

def clone #

Returns a copy of self with all instance variables cloned.


def creator_id(value) #

def creator_id #

def find(id) #

def full_join_characters #

def full_join_creator #

def full_join_participants #

def id(value) #

def id #

def inner_join_characters #

def inner_join_creator #

def inner_join_participants #

def join_characters #

def join_creator #

def join_participants #

def left_join_characters #

def left_join_creator #

def left_join_participants #

def name(value) #

def name #

def preload_characters(preload_query : Character::BaseQuery) #

def preload_characters #

def preload_characters(&) #

def preload_creator(preload_query : User::BaseQuery) #

def preload_creator #

def preload_creator(&) #

def preload_participants(preload_query : ChatParticipant::BaseQuery) #

def preload_participants #

def preload_participants(&) #

def right_join_characters #

def right_join_creator #

def right_join_participants #

def update(id : UUID | Avram::Nothing = Avram::Nothing.new, creator_id : User::PrimaryKeyType | Avram::Nothing = Avram::Nothing.new, name : String | Avram::Nothing | Nil = Avram::Nothing.new) : Int64 #
Description copied from module Avram::Queryable(Chat)

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)

def where_characters(assoc_query : Character::BaseQuery, auto_inner_join : Bool = true) #

def where_creator(assoc_query : User::BaseQuery, auto_inner_join : Bool = true) #

def where_participants(assoc_query : ChatParticipant::BaseQuery, auto_inner_join : Bool = true) #

Macro Detail

macro generate_criteria_method(name, type) #