You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug #523 pg_graphql 1.5.5 - array with enum type - not working
the above issue & its fixes - fix graphql schema generation issue, and arrayfilter operators.
Now i can use array filter with text[], int[], but i can not filter enum[].
kindly add enum support for array filter.
createtableif not exists account_type
(
id intnot null generated by default as identity primary key,
name textnot null,
base_types typ_base_account_type[] not null,
-- base_types text[] not null,
. . .
);
now insert some records
Expected behavior
Add array filter support for array with enum
Screenshots
ArrayFilter with enum array shows error:
List enum array works well
List & ArrayFilter with string, int - works well
Versions:
PostgreSQL: 16.3
pg_graphql 1.5.6
The text was updated successfully, but these errors were encountered:
Describe the bug
#523 pg_graphql 1.5.5 - array with enum type - not working
the above issue & its fixes - fix graphql schema generation issue, and arrayfilter operators.
Now i can use array filter with text[], int[], but i can not filter enum[].
kindly add enum support for array filter.
To Reproduce
Steps to reproduce the behavior:
now insert some records
Expected behavior
Add array filter support for array with enum
Screenshots
ArrayFilter with enum array shows error:
List enum array works well
List & ArrayFilter with string, int - works well
Versions:
The text was updated successfully, but these errors were encountered: