class SlackChannel::BaseQuery
- SlackChannel::BaseQuery
- Reference
- Object
Included Modules
- Avram::PrimaryKeyQueryable(SlackChannel)
- Avram::Queryable(SlackChannel)
Direct Known Subclasses
Defined in:
Constructors
Class Method Summary
-
.any? : Bool
Returns
true
if at least one of the collection's members is truthy. - .find(id)
-
.first : T
Returns the first element in the collection.
-
.first? : T | Nil
Returns the first element in the collection.
- .last : T
- .last? : T | Nil
- .new_with_existing_query(query : Avram::QueryBuilder)
-
.none? : Bool
Returns
true
if all of the elements of the collection are falsey. - .preload_slack_team(record : SlackChannel, force : Bool = false) : SlackChannel
- .preload_slack_team(record : SlackChannel, force : Bool = false, &) : SlackChannel
- .preload_slack_team(record : SlackChannel, preload_query : SlackTeam::BaseQuery, force : Bool = false) : SlackChannel
- .preload_slack_team(records : Enumerable(SlackChannel), force : Bool = false) : Array(SlackChannel)
- .preload_slack_team(records : Enumerable(SlackChannel), force : Bool = false, &) : Array(SlackChannel)
- .preload_slack_team(records : Enumerable(SlackChannel), preload_query : SlackTeam::BaseQuery, force : Bool = false) : Array(SlackChannel)
-
.truncate(*, cascade : Bool = false)
Removes all data from a table using the TRUNCATE postgres SQL command.
Instance Method Summary
-
#clone
Returns a copy of
self
with all instance variables cloned. - #created_at(value)
- #created_at
- #find(id)
- #full_join_slack_team
- #id(value)
- #id
- #inner_join_slack_team
- #join_slack_team
- #left_join_slack_team
- #name(value)
- #name
- #preload_slack_team(preload_query : SlackTeam::BaseQuery) : self
- #preload_slack_team : self
- #preload_slack_team(&) : self
- #right_join_slack_team
- #slack_id(value)
- #slack_id
- #slack_team_id(value)
- #slack_team_id
-
#update(id : Int64 | Avram::Nothing = Avram::Nothing.new, created_at : Time | Avram::Nothing = Avram::Nothing.new, updated_at : Time | Avram::Nothing = Avram::Nothing.new, name : String | Avram::Nothing = Avram::Nothing.new, slack_id : String | Avram::Nothing = Avram::Nothing.new, slack_team_id : SlackTeam::PrimaryKeyType | Avram::Nothing = Avram::Nothing.new) : Int64
Update the records using the query's where clauses, or all records if no wheres are added.
- #updated_at(value)
- #updated_at
- #where_slack_team(assoc_query : SlackTeam::BaseQuery, auto_inner_join : Bool = true)
Macro Summary
Constructor Detail
Class Method Detail
Returns true
if at least one of the collection's members is truthy.
[nil, true, 99].any? # => true
[nil, false].any? # => false
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
Returns the first element in the collection.
When the collection is empty, returns nil
.
([1, 2, 3]).first? # => 1
([] of Int32).first? # => nil
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?
.
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
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)