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
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
I’m trying to set up Emacs with elixir-ls via lsp-mode and credo via Flycheck. This should mostly be preconfigured as Flycheck picks up c...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
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
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixirconf-us
- #blog-post
- #ai
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 2- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
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.