Seppe Dekeyser

Results 10 issues of Seppe Dekeyser

Fixes https://discord.com/channels/1024421016405016718/1209467376224182312 ### To help everyone out, please make sure your PR does the following: - [x] Update the first line to point to the ticket that this PR fixes...

### Describe the feature When a query is generated with a field that uses custom data types, the generated `MyQuery.d.ts` file doesn't contain the import to that type and TypeScript...

Enhancement
Core

Using the AST provided by the library, I'm doing some introspection on the queries to extract the default values passed in to a query. I noticed that the `IntValueNode` and...

With [Svelte 5 now being RC](https://svelte.dev/blog/svelte-5-release-candidate) it's about time to finish this up, so that we have Svelte 5 support right when it comes out. The main breaking changes Svelte...

### Describe the bug A part of our schema looks something like this: ```gql type Organization implements Node { id: ID! name: String! module1Settings: Module1Settings! # more fields... } type...

Previously the preferences such as language and theme were stored as session cookies, which means they got cleared whenever the browser shut down. Adding the max-age makes sure that they...

### Describe the feature Currently, pullSchema uses `fetch` without much more, resulting in a 4-minute timeout (in my case) if the remote api is unreachable. This lead to a lot...

Currently it is possible to have a query marked with `@load` in a `+page.svelte` file. Houdini will pick this up and server-side load this automatically for you, as if you...

Internal

### Describe the feature If you have a +page.server.ts where you are returning data and you have a +page.gql as well, then you will never have the data from the...

Enhancement
SvelteKit