added static property constraints using const and enums and fixed formatter ON rendering

This commit is contained in:
2026-07-09 14:47:39 -04:00
parent 1bb9586b9b
commit 942520a36a
3 changed files with 232 additions and 171 deletions

View File

@ -1,6 +1,6 @@
[
{
"description": "Queryer Execution",
"description": "Queryer Suite 1",
"database": {
"puncs": [
{
@ -2441,7 +2441,7 @@
]
},
{
"description": "Static relation constraints queries",
"description": "Queryer Suite 2",
"database": {
"puncs": [
{
@ -2671,6 +2671,7 @@
" WHERE",
" NOT entity_3.archived",
" AND attachment_4.kind = 'cover'",
" AND attachment_4.attachable_id = entity_1.id",
" ),",
" 'cover_attachments', (",
" SELECT COALESCE(jsonb_agg(jsonb_build_object(",
@ -2683,6 +2684,7 @@
" WHERE",
" NOT entity_5.archived",
" AND attachment_6.kind = 'cover'",
" AND attachment_6.attachable_id = entity_1.id",
" ),",
" 'media_attachments', (",
" SELECT COALESCE(jsonb_agg(jsonb_build_object(",
@ -2695,6 +2697,7 @@
" WHERE",
" NOT entity_7.archived",
" AND attachment_8.kind IN ('cover', 'thumbnail')",
" AND attachment_8.attachable_id = entity_1.id",
" )",
" )",
" FROM agreego.entity entity_1",