Kevin Hahn

Results 52 comments of Kevin Hahn

I'm also running into this. It looks like there's [some code](https://github.com/ChilliCream/graphql-platform/blob/e60254347fa17e1e17b93ccf7d62f0f083651c14/src/HotChocolate/Data/src/Data/Projections/Extensions/ProjectionObjectFieldDescriptorExtensions.cs#L199-L206) for handling a similar issue when using Relay conventions. I'm not sure how much work it might be, but...

I didn't test that case. You should be able to just use the queryable as the return type and let the mutation convention change the type in the scheme. So...

I've done this myself using the technique mentioned above of having a custom converter. One major issue I ran into is that System.Text.Json requires that the first property be the...

@Nokel81 I'm getting this error. From the logs I found these 2 errors that seem like they may be related: ``` error: W1011 16:40:40.826174 46156 dial.go:72] using custom dialer with...

@LaXiS96 I took the example that sdanyliv gave and made it work for dictionaires. I use it like this: `.Where(e => Json.Value(e.LexemeForm, ms => ms.Values["en"]).Contains(query))` Here's the builder: ```C# sealed...

This sounds like a cool feature. But is Future really the right term for it? It seems more like parallel or collated querying or something. Typically a Future is just...

What if we just called it `Lazy()` as that's what it's creating? We'd just want to make sure and document the function so you understand the use case considering IQueryable...

This would be awesome. But I'd also love support for calling ` jsonb_path_exists` and providing my own path, that way if the translation doesn't work for my use case I...

We're using the multi line string feature in json5 as some of our translations are quite long and some team members edit the files manually or use vscode.

I would also like to be able to specify the explicit output type. I've got a struct that wraps a string, when serialized it's just turned into a string so...