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
@imor Please verify this is not my setup and help to get rid of the error:
begin;
createschemaif not exists a1; grant usage on schema a1 to public;
createtablea1.foo(id intprimary key); grantselecton table a1.foo to public;
insert intoa1.foo (id) values (1);
create or replacefunctiona1.bar(a1.foo) returns int[] stable return array[1, 2, 3]::int[];
grant execute on function a1.bar(a1.foo) to public;
set local search_path to a1;
comment on schema a1 is e'@graphql({"inflect_names": true})';
selectgraphql.resolve($$query {fooCollection {edges{node{ id bar }}}}$$); -- invalid return type from functionrollback;
Originally posted by @dvv in #454 (comment)
The text was updated successfully, but these errors were encountered: