sandorbedo
How to return partial responses in Absinthe?
Hi,
How should an Absinthe.Resolution struct look like when I want to return both data and errors from Absinthe?
This is now allowed by the GraphQL spec., but whenever I put something into the errors field of the Absinthe.Resolution struct, the data part of the response disappears from the response. This is what I try to do in a middleware without much success:
def call(resolution, params) do
resolution
|> Absinthe.Resolution.put_result({:error, params.errors})
|> Absinthe.Resolution.put_result({:ok, params.data})
end
…and in the handler function I simply return {:middleware, MyMiddleware, %{data: ..., errors: ...}}. It doesn’t make any difference when I try to manipulate the resolution struct directly, not via put_result/2.
What’s wrong with this approach?
Is it even possible to return data and errors in a single response using Absinthe?
Trending in Questions
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
Using Phoenix.LiveView.TagEngine as an EEx.Engine is deprecated!
To compile HEEx, use Phoenix.LiveView.TagEngine.compile/2 instead.
Sta...
New
Hello !
We want new/edit form pages to POST/PUT to their own URL rather than the resources REST defaults (post /things, put /things/:id)...
New
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app?
Looking for hints regarding:
Addi...
New
Hi all, I wanted to ask how the community is dealing with post-release steps.
Today we have Ecto migrations, which make sure that the db...
New
I am using Oban and occasionally, shortly after a deployment, a handful of jobs can fail because of dependency on other parts of the syst...
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
I just stumbled on a newly redesigned elixir-lang.org. :tada: It looks like @Software_Mansion did the work, and I think it is generally a...
New
@hugobarauna and I (Alex Koutmos) have been hard at work on writing a book on Nerves that takes you from simply blinking LEDs to building...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #phoenix_html
- #iex
- #blog-post
- #graphql
- #genstage
- #ai
- #websockets
- #elixirconf-us
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex










First 6 of 6 Posts!
sandorbedo
I believe this fixes the problem in Absinthe, but I’m not sure why was the result nulled out when there were errors in the response.
benwilson512
It has been a while since I reviewed the spec. For a long time this was not allowed. Can you provide a link to the updated language?
sandorbedo
The relevant section starts here: GraphQL
Here’s an example that shows both data and errors: GraphQL
benwilson512
Hi @sandorbedo this is a common misreading of the spec. This is talking about the overall response shape, not the resolution of any specific field. Absinthe absolutely lets you do the following:
fieldwithNoErrorwill return a result even iffieldWithErrorreturns an error. What you’re asking about is for an individual field to return both data and errors. That’s governed by this section of the spec: Handling Field Errors which unambiguously states:Absinthe is compliant here.
EDIT: A quick check of the 2025 draft shows that this remains unchanged in the latest draft too: GraphQL
sandorbedo
I think the problem is that you interpret “field” as something that has its own resolver, but that field can be part of any object. The object holding the
fieldWithErrorfield has a resolver, but thefieldWithErrorfield itself does not necessarily have one.How should one create a response that looks like this below? (the example is from the GraphQL spec)
The
namefield does not have it’s own resolver in Absinthe, but there is aheroquery that returns an object with ahero_friendsfield, that is a list of friends. Friends haveids andnames, but for some reason we were unable to resolve the name of a certain friend. So, in the resolver of theheroquery we should be able to do something like this:Even if the above
errors: ...syntax would work - which is not the case, this is just an imaginary syntax - the problem is that Absinthe would still return"hero": nullbecause of the current implementation. If we can’t return something like the JSON example above, I don’t understand how can Absinthe be compliant with the spec.benwilson512
To answer your last question first:
You absolutely can:
It’s worth pointing out as well that in your example what is the path of the error? It’s
"path": ["hero", "heroFriends", 1, "name"]. This means that the error was raised while resolving this field. If it was raised from theheroFriendsfield you would see the path simply be["hero", "heroFriends"].This is not correct. Every field has a resolver. Every field is “resolved”. Objects do not have resolvers at all, only fields do. More to the point, the spec is talking about the “process” of resolving a field, which isn’t implementation specific. See GraphQL. Every field goes through this execution and resolution process recursively.