Files
pgbackweb/internal/service/webhooks/paginate_webhook_executions.sql
T
2024-09-01 23:53:39 -06:00

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');