Skip to content

Instantly share code, notes, and snippets.

@pmk1c
Last active June 12, 2017 11:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pmk1c/3c6f83cb71d3e505ab0f26ceb8012d22 to your computer and use it in GitHub Desktop.
Save pmk1c/3c6f83cb71d3e505ab0f26ceb8012d22 to your computer and use it in GitHub Desktop.
RestQL - PostResolver
defmodule Restql.Blog.PostResolver do
def all(_args, _info) do
{:ok, Restql.Blog.list_posts |> Restql.Repo.preload(:author)}
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment