Skip to content
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

feat(types): add inference for embeded joins by functions #614

Draft
wants to merge 11 commits into
base: chore/add-auto-types-gen-and-override-for-testing
Choose a base branch
from

Conversation

avallete
Copy link
Member

@avallete avallete commented Mar 30, 2025

What kind of change does this PR introduce?

Once supabase/postgres-meta#915 is merged

This introduce automatic types inferences for "joins based on functions" to postgrest-js.

Along with the type generation in pg-meta it should allows queries such as:

postgrest
        .from('organizations')
        .select('subscription_id, custom_function_returning_setof_other_table(customer_id)')

To work out of the box.

It also introduce a way to "force cast" an object relation as being not nullable at the database override level in case some DB layer app logic enforce it.

This should not be a breaking change since everything has be scoped in an additional type.

Fixes: CLIBS-79

Related: supabase/supabase-js#1259

Edit: Tested the full pipeline (typegen + inference) over our infra repo, was able to get rid of all types override for the billing_subscriptions (see: https://github.com/supabase/infrastructure/compare/develop...chore/upgrade-supabase-js)

Comment on lines +137 to +169
// if rpc is called with a typeless client, default to infering everything as any
): IsAny<Fn> extends true
? PostgrestFilterBuilder<
Schema,
Fn['Returns'] extends any[]
? Fn['Returns'][number] extends Record<string, unknown>
? Fn['Returns'][number]
: never
: Fn['Returns'] extends Record<string, unknown>
? Fn['Returns']
: never,
Fn['Returns'],
FnName,
null
>
: PostgrestFilterBuilder<
// otherwise, provide the right params for typed .select chaining
Schema,
Fn['Returns'] extends any[]
? Fn['Returns'][number] extends Record<string, unknown>
? Fn['Returns'][number]
: never
: Fn['Returns'] extends Record<string, unknown>
? Fn['Returns']
: never,
Fn['Returns'],
Fn['SetofOptions'] extends GenericSetofOption ? Fn['SetofOptions']['to'] : FnName,
Fn['SetofOptions'] extends GenericSetofOption
? Fn['SetofOptions']['to'] extends keyof Schema['Tables']
? Schema['Tables'][Fn['SetofOptions']['to']]['Relationships']
: Schema['Views'][Fn['SetofOptions']['to']]['Relationships']
: null
> {
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

note

This part should fix: supabase/supabase-js#1366

Now that we're able to detect embed from function within select, we can also use the same types to do the opposite and make:

.rpc('function_that_return_setof_table_A', {}).select('field_from_table_A')

And infer the right result.

@@ -23,7 +24,7 @@ export default class PostgrestTransformBuilder<
NewResultOne = GetResult<Schema, Row, RelationName, Relationships, Query>
>(
columns?: Query
): PostgrestTransformBuilder<Schema, Row, NewResultOne[], RelationName, Relationships> {
): PostgrestFilterBuilder<Schema, Row, NewResultOne[], RelationName, Relationships> {
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

note

This should fix: supabase/supabase-js#1365

Functions: {
get_user_profile_non_nullable: {
SetofOptions: {
isNotNullable: true
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

note

This will be the api to make any row returning function globally "non nullable" if desired by the user, to avoid having to use the ! operator everytime.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant