absinthe-resolvers

Installation
SKILL.md

Absinthe - Resolvers

Guide to implementing efficient and maintainable resolvers in Absinthe.

Key Concepts

Basic Resolvers

defmodule MyApp.Resolvers.User do
  alias MyApp.Accounts

  def list_users(_parent, args, _resolution) do
    {:ok, Accounts.list_users(args)}
  end
Installs
36
GitHub Stars
173
First Seen
Jan 22, 2026
absinthe-resolvers — thebushidocollective/han