Ryan Kauk

Results 5 comments of Ryan Kauk

I would like this feature too. If you were using a previous orm and are migrating to Mikro, there's a possibility you'll have schema differences in the meantime. If this...

Let me know your thoughts on this and where I should look in the code to implement something like this. Seems somewhere related to renameFields in MongoDriver but not 100%...

Hey @B4nan, it seems this might be possible here https://github.com/mikro-orm/mikro-orm/blob/3ec3f8b75b615a69a2f0bcdb3c890f405631f2a6/packages/core/src/drivers/DatabaseDriver.ts#L159 This is already parsing into snake format for the prefixing. It just needs to be converted into dot notation instead....

@LawJolla I was just wondering your thoughts on the graphql side implementation of the refresh token. I was thinking about doing it a similar way you did but I'm concerned...

Yea for sure, I saw this part ... this.props.client.mutate({ mutation: REFRESH_ACCESS_TOKEN, variables: { accessToken: authResult.accessToken } }).then(resolve) which I would assume the client side would give the graphql server the...