mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 20:17:32 +00:00
13 lines
191 B
SQL
13 lines
191 B
SQL
SELECT id,
|
|
instance_id,
|
|
table_name,
|
|
parent_type,
|
|
parent_id,
|
|
resource_name,
|
|
updated_at,
|
|
amount
|
|
FROM projections.resource_counts
|
|
WHERE id > $1
|
|
ORDER BY id
|
|
LIMIT $2;
|