Skip to content

Commit

Permalink
MODFQMMGR-508 Mark 3 instance fields as unqueryable
Browse files Browse the repository at this point in the history
This commit marks 3 instance fields as unqueryable, as we're not
supporting queryable arrays except when they have a provided set of
values
  • Loading branch information
mweaver-ebsco committed Oct 7, 2024
1 parent 9ab3bcd commit adae3d0
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@
}
},
sourceAlias: "inst",
queryable: true,
queryable: false,
essential: true,
visibleByDefault: false,
valueGetter: "( SELECT array_agg(elems.value->>'alternativeTitle') FROM jsonb_array_elements(:sourceAlias.jsonb->'alternativeTitles') AS elems)",
Expand Down Expand Up @@ -379,7 +379,7 @@
},
},
isIdColumn: false,
queryable: true,
queryable: false,
essential: true,
visibleByDefault: false,
valueGetter: "( SELECT array_agg(elems.value->>'name') FILTER (WHERE (elems.value->>'name') IS NOT NULL) AS array_agg FROM jsonb_array_elements(:sourceAlias.jsonb->'contributors') AS elems)",
Expand Down Expand Up @@ -549,7 +549,7 @@
},
},
isIdColumn: false,
queryable: true,
queryable: false,
visibleByDefault: false,
essential: true,
hidden: false,
Expand Down

0 comments on commit adae3d0

Please sign in to comment.