garyaustin
08/03/2022, 2:57 PM_nate
08/03/2022, 4:19 PMskyclo
08/03/2022, 7:48 PMAlbert [tox/cis]
08/03/2022, 8:00 PMskyclo
08/03/2022, 8:13 PMskyclo
08/03/2022, 8:13 PMAlbert [tox/cis]
08/03/2022, 8:14 PMgaryaustin
08/03/2022, 8:37 PMsilentworks
08/03/2022, 9:16 PMquick_piper15
08/04/2022, 6:24 AMsamson
08/04/2022, 3:00 PMlooni
08/04/2022, 3:02 PMif (filterByName) {
query = query.or(`first_name.ilike.${filterByName},last_name.ilike.${filterByName}`, {
foreignTable: 'table1'
});
}
What would be the best way to perform this search within two different foreign tables at the same time?Mellow
08/04/2022, 3:20 PMclient.auth.signIn
with a redirectTo
it appends the query params using a #
instead of ?
eg it posts the url like: /callback#access_token=
Am I doing something wrong?garyaustin
08/04/2022, 3:29 PMMellow
08/04/2022, 3:31 PMgaryaustin
08/04/2022, 3:38 PMMellow
08/04/2022, 3:50 PMgaryaustin
08/04/2022, 3:51 PMtrebor
08/04/2022, 4:11 PMfelixthehat
08/04/2022, 4:19 PMmaiikol1192
08/04/2022, 7:29 PMVik
08/04/2022, 9:53 PMVik
08/05/2022, 12:40 AMVik
08/05/2022, 1:05 AMjoshcowan25
08/05/2022, 1:35 AMsamson
08/05/2022, 8:01 AMomar
08/05/2022, 8:14 AMhefler
08/05/2022, 9:38 AMgeom
which contains a polygon. Long story short: 'm trying to fetch it using @supabase/supabase-js
. I want to find if a coordinate is found in any row. How do I do it? I get error 500 when calling like so:
const { data, error } = await supabase
.from( 'places' )
.select('geom')
.eq('geom',`st_contains("places".geom, ${lon} ${lat})`);
From Postgres logs I get this hint:
"st" <-- parse error at position 2 within geometry
omar
08/05/2022, 1:22 PM