Rohan Rajpal

Results 54 comments of Rohan Rajpal

A workaround is in this project, works fine I guess. Yet to experiment with all of the mdsvex features tho. https://github.com/sharu725/hagura-sveltekit

Here's the culprit https://github.com/Shopify/shopify-api-node/blob/main/src/auth/session/storage/postgresql.ts#L150

For Postgres, we can set the data type to Text & not worry about the length https://www.postgresql.org/docs/current/datatype-character.html

Okay looks like the column names are also not case sensitive ![image](https://user-images.githubusercontent.com/7023147/185740932-bdb3e475-9df7-4c55-93f5-1516be7a8465.png) https://github.com/Shopify/shopify-api-node/blob/main/src/auth/session/storage/postgresql.ts#L150 This is despite mentioning them with the right case in the link above. I guess there is...

For anyone using Prisma, here's the current workaround: ```prisma model ShopifySession { id String @id shop String state String isonline Boolean scope String? expires Int? onlineaccessinfo String? accesstoken String? @@map("shopify_session")...

Would love to have svelte kit support! Happy to contribute as well (if it is in the pipeline)

+1, happy to make a PR if someone isn't working on this. It's hacktoberfest :)

Is this a difficulty/low type issue? If yes then I'd like to work on it!