Alec Aivazis

Results 84 issues of Alec Aivazis

Since we now have a place to park prompt-level configuration, we should clean up how we provide stdio internally

Enhancement

This PR updates houdini's APIs to be compatible with the updates to SvelteKit as described here: https://github.com/sveltejs/kit/discussions/5774. Unfortunately, I won't be able to get the integration tests to pass until...

If a route's path contains parameters that match a query's variables, the user shouldn't have to define a variable function if its just going to do `({params}) => params`. Questions:...

Enhancement

At the moment, if a user wants to use the preprocessor to generate a load function they must define their queries inline and use the appropriate "inline" function for the...

Enhancement

In order to support situations where a user wants to SSR a component query (or for some other reason interact with a store), we need to support a distinction between...

Enhancement

Houdini needs to provide the user a way to interact with the cache imperatively to handle situations that aren't covered by the declarative API

Priority
Enhancement

There are a few things that are missing from the integration tests: - [ ] CachePolicy logic - [x] Subscribe and Unsubscribe on route transitions - [ ] pending load...

Internal

There should be a `@refetchable` directive that labels fragments on `Node` or `Query` as refetchable. The api could look something like this: ```javascript const { data, refetch, variables } =...

Enhancement
Core

There are a few places where we could really use better error messaging that suggest fixes or link to the docs.: - [ ] mising `__typename` in abstract optimistic responses...

Enhancement

The computation for partial data relies on running into a field we've already seen before. We should be able to provide a hint to the cache when looking up the...

Enhancement