Ben Wilson

Results 158 comments of Ben Wilson

Honestly, I didn't realize people were using `import_fields` on interfaces. I can see how it is sometimes convenient but the moment you need a custom resolver things can get a...

Ecto’s lateral join support is the same as it was then, which requires manually writing query strings. This makes it very hard to generate correctly. The window function addition though...

Ah. Yeah, if you're using the classic form it's expecting `:input` to be there, but that should be restricted to just mutation fields. Good catch, will fix!

There may be a few things going on here. One thing that shipped in 1.4 that will help this library is the ability to configure the pipeline from within the...

Update on this now that https://github.com/sikanhe/apollo-tracing-elixir/pull/10 has been merged. Problem 1: The biggest thing standing in the way of working subscriptions is support for batched resolution. Absinthe batch-resolves all subscriptions...

Hi @susana-garcia can you elaborate on what "fails" means? Do you get an exception? Does it simply not work?

Please provide the output of the following: `mix deps |grep absinthe`.

Yeah this line here https://github.com/absinthe-graphql/absinthe_relay/blob/master/lib/absinthe/relay/connection.ex#L528 should check for nil. I can push an update up but it'll come out as the 1.5 rc release since we're very close to releasing...

Ah, yeah Absinthe.Relay is using a non standard configuration pattern there, we should fix it. Honestly this ought to be set as like a module attribute on the schema or...