Rohan Rajpal
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
> Happy to help!
Okay looks like the column names are also not case sensitive  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")...
Hey, this issue still persists.
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!