kasvith
Hi,
Im trying to get DataLoader working with an external service.
This is my field resolver
object :recent_conversation do
# other fields here
field :sender, non_null(:user), description: "Last sender for the conversation" do
resolve fn %{sender_id: sender_id}, _args, %{context: %{loader: loader}} ->
loader
|> Dataloader.load(:user, :user, sender_id)
|> Dataloader.run()
|> on_load(fn loader ->
loader
|> Dataloader.get(:user, :user, sender_id)
|> case do
%{} = user ->
{:ok, user}
end
end)
end
end
end
And here is my dataloder KV source
def data() do
Dataloader.KV.new(&fetch/2)
end
def fetch(_batch_key, users) do
IO.puts("here")
IO.inspect(users)
loaded_users = users |> MapSet.to_list() |> load_users()
users
|> Enum.with_index()
|> Enum.reduce(%{}, fn {id, idx}, results ->
Map.put(results, id, Enum.at(loaded_users, idx))
end)
end
defp load_users(ids) when is_list(ids) do
IO.puts("Loading users #{inspect(ids)}")
case ApiClient.get_users_bulk(ids) do
{:ok, %{users: users}} ->
users
{:error, _err} ->
{:error}
{:api_error, _err} ->
{:error}
end
end
I prefer to have a generic data loader which can be used to load users by passing different fields, so I avoided using batch resolution(API accepts user IDs in batch)
When I’m running the following query, I see multiple Loading users logs(multiple API calls)
query {
myRecentConversations{
id
content
createdAt
unreadCount
sender{
id
username
avatar
}
}
}
Why dataloader is not loading all users per this GraphQL query in a batch? I’ve used Facebook Dataloader in JS projects and it loads all data in a batch when running in a single graphql query context unlike this.
Is there something I can do to make this execute a batch call to API?
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
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
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app?
Looking for hints regarding:
Addi...
New
Kia ora,
We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
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
Hello,
I have an Elixir backend that implements a custom protocol over TCP. I want to load test the backend and assess the performance o...
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
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
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
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
- #blog-post
- #phoenix_html
- #iex
- #graphql
- #ai
- #genstage
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex










First 2 of 2 Posts
benwilson512
This is your issue. You shouldn’t be calling
Dataloader.runyourself, just pipe straight toon_load(fn loader ->)and then Absinthe will call Dataloader.run internally after the whole batch has been accumulated.kasvith
Thanks, it worked
Are there other improvements I can do to this code?
My main reason was to use the same loader with different fields, thus I didn’t use
dataloadermacro.