mirror of
https://github.com/eduardolat/pgbackweb.git
synced 2026-05-20 11:59:04 -05:00
9 lines
328 B
SQL
9 lines
328 B
SQL
-- name: WebhooksServicePaginateWebhookExecutionsCount :one
|
|
SELECT COUNT(*) FROM webhook_executions
|
|
WHERE webhook_id = @webhook_id;
|
|
|
|
-- name: WebhooksServicePaginateWebhookExecutions :many
|
|
SELECT * FROM webhook_executions
|
|
WHERE webhook_id = @webhook_id
|
|
ORDER BY created_at DESC
|
|
LIMIT sqlc.arg('limit') OFFSET sqlc.arg('offset'); |