Arnaud Gissinger

Results 35 comments of Arnaud Gissinger

@korchaka666 I managed to find a workaround that seems to work fine for me. I have created a plugin: `~/plugins/pwa-update.js` ```js export default async () => { const workbox =...

Hello @darrellwarde, If I'm not missleading, we should implement custom directives like this. ```typescript const neoGql = new Neo4jGraphQL({ resolvers, typeDefs: [directiveTypeDef, typeDefs], transformers: [transformer], plugins: { auth: new Neo4jGraphQLAuthJWTPlugin({...

Hello, thanks for your idea! Will try to implement that once I have some free time. PS: any contribution is welcome Have a nice day!

Migrating to Cloudflare workers may be a solution, as we could store the Notion JWT in KV.

Hey! Thanks for your appreciation 🙂 Not sure, but this issue seems to be related to this one https://github.com/mathix420/notion-charts/issues/14 I'd love to see a contribution on this if you have...

@aspectgfg @darrellwarde Precompiling the graphql schema could be a big improvement for serverless use. As this would greatly reduce cold start times. With our small gql schema of around 400...

Hi @darrellwarde, nice to see your interest on this! I was thinking basically the same as you. Maybe a plugin for `@graphql-codegen/cli` [like these](https://www.graphql-code-generator.com/docs/plugins/index). I am currently using [`babel-plugin-graphql-tag`](https://github.com/gajus/babel-plugin-graphql-tag) to...

Hello @kootstra, thanks for reporting this issue! I will try to have a look once I got some free time, which is not really the case right now 😐

In my case the issue was fixed thanks to this `nuxt.config.ts`. **Original one:** ``` routeRules: { "/**": { isr: true }, }, nitro: { preset: "vercel", future: { nativeSWR: true,...