Files
pgbackweb/internal/service/webhooks/paginate_webhook_executions.sql
T
Luis Eduardo Jeréz Girón 0ac245bec2 Add webhook executions list
2024-09-01 23:37:04 -06:00

9 lines
322 B
SQL

-- name: WebhooksServicePaginateWebhookExecutionsCount :one
SELECT COUNT(*) FROM webhook_results
WHERE webhook_id = @webhook_id;
-- name: WebhooksServicePaginateWebhookExecutions :many
SELECT * FROM webhook_results
WHERE webhook_id = @webhook_id
ORDER BY created_at DESC
LIMIT sqlc.arg('limit') OFFSET sqlc.arg('offset');