Last active
November 14, 2019 09:42
-
-
Save voising/2f7925d802cdac691aba7e1b037e5072 to your computer and use it in GitHub Desktop.
Marketplace - Search by rate & tags - Model - Crystal
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class ProductQuery < Granite::Base | |
connection pg | |
column id : Int64, primary: true | |
column user_id : Int64 | |
column title : String? | |
column description : String? | |
column tags : Array(Int64) | Nil | |
column amount : Float64? | |
column attachment : String? | |
select_statement <<-SQL | |
SELECT products.id, | |
products.user_id, | |
products.title, | |
products.description, | |
ARRAY_AGG(taggables.tag_id) AS tags, | |
MIN(rates.amount) AS amount, | |
(ARRAY_AGG(attachments.picture))[1] AS attachment | |
FROM products | |
LEFT OUTER JOIN taggables ON taggables.model_id = products.id AND taggables.model_type = 'Product' | |
LEFT OUTER JOIN rates ON rates.model_id = products.id AND rates.model_type = 'Product' | |
LEFT OUTER JOIN attachments ON attachments.id = products.attachment_id | |
SQL | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment