G$Row
Explore posts from serversBABetter Auth
•Created by Barkop on 2/26/2025 in #help
Additional Fields on Client
It looks like you need to add the inferAdditionalFields plugin on the client https://www.better-auth.com/docs/concepts/typescript#inferring-additional-fields-on-client
4 replies
BABetter Auth
•Created by G$Row on 3/5/2025 in #help
Session cookie not updating
That makes sense. Thank you!
11 replies
BABetter Auth
•Created by G$Row on 3/5/2025 in #help
Session cookie not updating
Ok then it seems to be functioning as you intended. That behavior doesn't make sense to me though. I assumed that when I have the customSession plugin then any session I get, whether in the cookie cache or not, would have the custom session data in it. It took me a very long time to figure out that that was not the case. My suggestion would be to change the behavior of it or make it explicitly clear what the purpose of the customSession plugin is in the docs. I'm still not sure why you wouldn't want the custom fields in the cookie cache.
11 replies
BABetter Auth
•Created by G$Row on 3/5/2025 in #help
Session cookie not updating
Also may I suggest a change to the documentation. In addition this
Session caching, including secondary storage or cookie cache, does not include custom fields. Each time the session is fetched, your custom session function will be called.
Maybe include To properly use the customSession plugin you must call getSession with disabledCookieCache:true or else you will not get the custom fields back from the plugin in the session.
11 replies
BABetter Auth
•Created by G$Row on 3/5/2025 in #help
Session cookie not updating
Thanks for the response and the library!
11 replies
BABetter Auth
•Created by G$Row on 3/5/2025 in #help
Session cookie not updating
@bekacru It turns out it wasn't the middleware. It was the session cookie not being set. When I signed in with email the session gets set. This then takes me to the page where I can choose an account. I choose the account and my own api endpoint updates the session object. I called the
auth.api.getSession
with disabledCookieCache:true
on the frontend. It gives me the correct session back however it does not update the cookie.
In the response headers there was no Set-Cookie
header. For more context. I have the two additional fields set on the session in the auth config. I also have a customSession plugin which didn't do anything besides rearrange the data structure. I found out that if I remove the customSession
plugin then the getSession
call sets the cookie.
Two things tipped me off to it. First I stepped through the better-auth source code and saw that the customSession
plugin calls getSessionFromCtx
and passes the returnHeaders: false
but then never sets the cookie after that. Second is this Session caching, including secondary storage or cookie cache, does not include custom fields. Each time the session is fetched, your custom session function will be called.
from the documentation. That paragraph is confusing because what I thought were custom fields were actually called additional fields. I'm assuming custom fields only come from the customSession
plugin.
It was pretty easy for me to remove the customSession
plugin so I solved my problem. However, customSession
not putting the results in the cookie doesn't make sense to me. I definitely wanted it cached so that I didn't have to call getSession
with disabledCookieCache:true
every time. But I'm sure there is a reason why you guys did it this way.11 replies
BABetter Auth
•Created by Exoden on 2/26/2025 in #help
Update session manually
I'm trying to figure out the same thing.
16 replies
DTDrizzle Team
•Created by G$Row on 7/23/2024 in #help
I'm getting a Postgres Error when running my drizzle query but not when running the generated sql
I figured out a way around it. If I use a switch statement and not pass in the
timeFrame
as a parmeter it works. I'm not sure if this problem is a bug in the driver or in drizzle4 replies
DTDrizzle Team
•Created by G$Row on 7/23/2024 in #help
I'm getting a Postgres Error when running my drizzle query but not when running the generated sql
Not sure why
4 replies
DTDrizzle Team
•Created by G$Row on 7/23/2024 in #help
I'm getting a Postgres Error when running my drizzle query but not when running the generated sql
Ok so it seems that having the time frame be put in the sql string staffDateExpression is where the problem comes from. It doesn't recognize that they are the same for some reason.
4 replies
How to get data type from onMutate function in useMutation
That seems to do it! Thanks!
Can it be guaranteed that using the
inferRouterInputs<typeof taskRouter>['createTask']
(in my case) will always be the same type as what is passed into that onMutate function ?30 replies
DTDrizzle Team
•Created by hachoter on 6/27/2023 in #help
What is the type of transaction prop?
If anyone else runs across this here's what worked for me. This is an easy way to get the actual transaction type. (Using typeof db may work but it isn't the same.)
tx: Parameters<Parameters<typeof db.transaction>[0]>[0]
5 replies
DTDrizzle Team
•Created by Arthur Danjou 🧸 on 4/17/2024 in #help
Migration from prisma to Drizzle
Which part of it are you having trouble migrating?
6 replies
DTDrizzle Team
•Created by Bryan3 on 9/28/2023 in #help
How to include all fields in partial select syntax
Is there a way to do this with the columns of a subquery?
10 replies
DTDrizzle Team
•Created by G$Row on 11/8/2023 in #help
Getting "never" type from querying a relation
It is never explicitly stated in the docs (as far as I can tell) that you must include the relations in the schema. You have to infer it based on the "Querying" section of the Query page. The first code snippet has index.ts and schema.ts tabs. The way I figured it out was by the line
"import * as schema from './schema';
Then when I clicked on the schema.ts tab I noticed that the relations were there. Maybe a short sentence in that section that says the relations must be included as part of your schema could make things a bit more clear.5 replies
DTDrizzle Team
•Created by G$Row on 11/8/2023 in #help
Getting "never" type from querying a relation
Figured it out. I have my table models in different files and I import them all to create the final schema with which I can create the db object. Turns out I was only adding my table models to the schema and not the relations as well. After adding the relations to the schema it was fixed].
5 replies