feat: implement wiki and entity repositories and services with corresponding SQL queries and generation
All checks were successful
Build and Release / release (push) Successful in 1m30s
All checks were successful
Build and Release / release (push) Successful in 1m30s
This commit is contained in:
@@ -90,3 +90,6 @@ WHERE entity_id = $1 AND wiki_id = $2;
|
||||
SELECT *
|
||||
FROM wikis
|
||||
WHERE slug = $1 AND is_deleted = false;
|
||||
|
||||
-- name: GetWikisBySlugs :many
|
||||
SELECT * FROM wikis WHERE slug = ANY($1::text[]) AND is_deleted = false;
|
||||
|
||||
Reference in New Issue
Block a user