mirror of
https://github.com/grafana/grafana.git
synced 2025-08-01 23:02:11 +08:00
12 lines
183 B
SQL
Executable File
12 lines
183 B
SQL
Executable File
SELECT
|
|
"uuid",
|
|
"value",
|
|
"content_type"
|
|
FROM "resource_blob"
|
|
WHERE 1 = 1
|
|
AND "namespace" = 'x'
|
|
AND "group" = 'g'
|
|
AND "resource" = 'r'
|
|
ORDER BY "created" DESC
|
|
LIMIT 1;
|