-
-
Notifications
You must be signed in to change notification settings - Fork 158
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
base: chore/add-auto-types-gen-and-override-for-testing
Are you sure you want to change the base?
feat(types): add inference for embeded joins by functions #614
Conversation
// 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 | ||
> { |
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
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> { |
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
This should fix: supabase/supabase-js#1365
Functions: { | ||
get_user_profile_non_nullable: { | ||
SetofOptions: { | ||
isNotNullable: true |
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
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.
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: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)