wolfiton
Hi everyone,
I can’t figure out if what I am doing in wormwood is a bug or a bad implementation. I also looked over the library source code and couldn’t figure this out.
So here is the problem:
If I create a schema like this it doesn’t passes the test
@desc "Queryable fields for Blog Articles"
query do
field :blog_articles, list_of(:blog_article) do
resolve(fn _, _, _ ->
{:ok, Blog.list_articles()}
end)
end
end
@desc "define fileds that can be acessed for Blog queries"
object :blog_article do
field :id, :id
field :title, :string
end
end
Error trace:
mix test test/abs_wow_web/schema/queries/blog_article_test.ex
1) test GetArticles.gql Should return a list of all the Articles (all 2 of them) (AbsWowWeb.BlogArticleTest)
test/abs_wow_web/schema/queries/blog_article_test.ex:12
** (ArgumentError) argument error
code: assert length(articles) == 2
stacktrace:
:erlang.length(nil)
test/abs_wow_web/schema/queries/blog_article_test.ex:17: (test)
Finished in 0.3 seconds
1 test, 1 failure
But if i do it like this it passes the test with no problems:
@desc "Queryable fields for Blog Articles"
query do
field :articles, list_of(:article) do
resolve(fn _, _, _ ->
{:ok, Blog.list_articles()}
end)
end
end
@desc "define fileds that can be acessed for Blog queries"
object :article do
field :id, :id
field :title, :string
end
end
I also created a minimal example here with the problem GitHub - wolfiton/abs_wow · GitHub
Can someone explain to me if this is a bug or if i am doing something wrong?
Thanks
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,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
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
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
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
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
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
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself.
My main conc...
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
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 5- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
benwilson512
When in doubt,
IO.inspect. Specifically,IO.inspectthis line: abs_wow/test/abs_wow_web/schema/queries/blog_article_test.ex at master · wolfiton/abs_wow · GitHubYou’re getting an error because your
articlesvariable, defined on this line, is nil. abs_wow/test/abs_wow_web/schema/queries/blog_article_test.ex at master · wolfiton/abs_wow · GitHub. Usingget_inis probably not the way you want to go, it just returns nil without giving you any insight into what’s going on. I’d probably rewrite your pattern match to be:This way if the result does not have articles you can at least see why.
Darin
Hello again @wolfiton,
I pulled down your code and I think I know what the problem is.
After I got it to run (more on that in the bottom) I saw that the error it threw was
What I did was went directly into
GetArticles.gqland copied the fragment fromArticleFields.frag.gqlso that it looked like this. After that it ran fine. It seems like there is an issue in the import you are doing.If you want to get the fragment import to work you need to do a few things.
./ArticleFields.gqlbut the file is calledArticleFields.frag.gqlArticleFields.gqlis calledBlogArticleFields, but in your query you are just usingArticleFields.# import ./ArticleFields.gql. What it needs to be:#import "./ArticleFields.frag.ql"Notice there is no space between#andimport, and that the file name is quoted.So, by fixing the import and using the correct fragment name it should all work fine.
Also, as an aside, make sure you can run any code that you upload for others to test. I had to rename a few files and comment out some code from what you uploaded to get
mix testto run successfully. Just makes it a bit easier to get you the help you need.Hope that helps.
wolfiton
Thank you @benwilson512 for looking over my code and providing guidance and code to solve the problem and a better way to access the data that i am testing.
wolfiton
Thanks @Darin for providing help and for your time on explaining what i missed. Also thank you for pointing out what I could do better in the future to improve as a programmer. Really appreciate the time you put in the answer.
wolfiton
I would like to request permission from @benwilson512 and @Darin to add you to the credits of the Readme in helping me create the abs_wow Wormwood example testing.
Would this be OK with you/?
I am asking because i live in Europe where GDPR is a serious issue.