-
-
Notifications
You must be signed in to change notification settings - Fork 138
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(typescript): function only have union over args #914
Conversation
CREATE OR REPLACE FUNCTION public.get_user_audit_setof_single_row(user_row users) | ||
RETURNS SETOF users_audit | ||
LANGUAGE SQL STABLE | ||
ROWS 1 | ||
AS $$ | ||
SELECT * FROM public.users_audit WHERE user_id = user_row.id; | ||
$$; | ||
|
||
CREATE OR REPLACE FUNCTION public.get_todos_setof_rows(user_row users) | ||
RETURNS SETOF todos | ||
LANGUAGE SQL STABLE | ||
AS $$ | ||
SELECT * FROM public.todos WHERE "user-id" = user_row.id; | ||
$$; | ||
|
||
CREATE OR REPLACE FUNCTION public.get_todos_setof_rows(todo_row todos) | ||
RETURNS SETOF todos | ||
LANGUAGE SQL STABLE | ||
AS $$ | ||
SELECT * FROM public.todos WHERE "user-id" = todo_row."user-id"; | ||
$$; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
note
Those will also be used to improve the introspection to provide automatic types inferences for embeded functions select joins in follow-up PR's.
Args: ${fns | ||
.map(({ args }) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
note
The loop is now at the Args
level to unionize.
Returns: ${(() => { | ||
// Case 1: `returns table`. | ||
const tableArgs = fns[0].args.filter(({ mode }) => mode === 'table') | ||
if (tableArgs.length > 0) { | ||
const argsNameAndType = tableArgs.map(({ name, type_id }) => { | ||
const type = types.find(({ id }) => id === type_id) | ||
let tsType = 'unknown' | ||
if (type) { | ||
tsType = pgTypeToTsType(type.name, { types, schemas, tables, views }) | ||
} | ||
return { name, type: tsType } | ||
}) | ||
|
||
return `{ | ||
${argsNameAndType.map( | ||
({ name, type }) => `${JSON.stringify(name)}: ${type}` | ||
)} | ||
}` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
note
Single Returns
using the first element within the fns
array as source of truth.
Pull Request Test Coverage Report for Build 14155356078Details
💛 - Coveralls |
What kind of change does this PR introduce?
Into the more correct:
This also will fix on the type inference side the return type for
rpc
functions calls from an union of object, to a single object.