Ville Saukkonen

Results 62 issues of Ville Saukkonen

## Summary Would be cool if there would be an easy way to pick the previous value of an object and modify that optimistically. Now my code looks something like...

future 🔮

#### Perceived Problem Especially in case of explicit relations, it would be useful to support relay specification for connections. Now the connection does not follow any standard, which makes it...

type/feat

## Feature Description It is a common practice to run database migrations in an init container and wait for the migration job to finish. However, when the proxy never shuts...

priority: p1
type: feature request

This is important for variables.scss kind of files which are imported all over the code base. If css rule is introduced in that kind of file, it might be duplicated...

Help wanted 🙋
New rule 👌

The code explains it all: ```ts export const SomeObjectType = objectType({ name: SomeObject.$name, description: SomeObject.$description, definition(t) { t.field(SomeObject.id); t.field(SomeObject.name); t.string("url", { resolve(root) { return `www.url.com/${root.slug}`; // { t.list.field("someObject", { type:...

type/bug
community/help-wanted

Hi, I have following resolver: ``` t.nullable.boolean('voted', { async resolve(root, _, ctx) { if (!ctx.user) { return null; } return voted( ctx.user?.id); } }); ``` However, I'm not able to...

Now defining parameters etc is pretty cumbersome and verbose: `nonNull(list(nonNull(MyOwnObject)))`. Would be faster to write : `nonNull.list.nonNull(MyOwnObject)`. This would not only be faster to write, but also easier to auto...

Hi, We have a following svg: https://gist.github.com/villesau/2f4182fca1f5c61e5b4246c188617c74 Locally, following data uri is produced: https://gist.github.com/villesau/856334688e6dc1643c5410ecb85cf6b2 When building the production build, the result is following: https://gist.github.com/villesau/a2b43088424eb3ab60989941785bb236 The problematic part in prod build...

We have following setup: - vendor build uses autodll-webpack-plugin 0.3.9 - app build default webpack (3.11.0) config - both uses chunkhashes in names Hashes before package update: app: `app_build-c208c7c1f4a5f3a05681.js` vendor:...

i noticed the readme lacks the instructions like how to get the nubes, how to run the server etc. I didn't find nubes from maven or anywhere. vertx-jersey has a...

enhancement