wolfiton

wolfiton OP

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

First 5 of 5 Posts Switch mode

benwilson512

benwilson512

Author of Craft GraphQL APIs in Elixir with Absinthe

When in doubt, IO.inspect. Specifically, IO.inspect this line: abs_wow/test/abs_wow_web/schema/queries/blog_article_test.ex at master · wolfiton/abs_wow · GitHub

You’re getting an error because your articles variable, defined on this line, is nil. abs_wow/test/abs_wow_web/schema/queries/blog_article_test.ex at master · wolfiton/abs_wow · GitHub. Using get_in is 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:

 assert {:ok, %{data: %{"BlogArticles" => articles}}} = result

This way if the result does not have articles you can at least see why.

Darin

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

%{
  errors: [
    %{
      locations: [%{column: 0, line: 5}],
      message: "Unknown fragment \"ArticleFields\""
    }
  ]

What I did was went directly into GetArticles.gql and copied the fragment from ArticleFields.frag.gql so that it looked like this. After that it ran fine. It seems like there is an issue in the import you are doing.

query {
  BlogArticles {
    id
    title
  }
}

If you want to get the fragment import to work you need to do a few things.

  1. You are importing from ./ArticleFields.gql but the file is called ArticleFields.frag.gql
  2. The fragment inside ArticleFields.gql is called BlogArticleFields, but in your query you are just using ArticleFields.
  3. Your import statement was incorrectly formatted. Yours: # import ./ArticleFields.gql. What it needs to be: #import "./ArticleFields.frag.ql" Notice there is no space between # and import, 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 test to run successfully. Just makes it a bit easier to get you the help you need.

Hope that helps.

wolfiton

wolfiton OP

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

wolfiton OP

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

wolfiton OP

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.

— All posts loaded —

Where Next? Top

Trending in Questions Top

stjefim
Hello! Suppose you are building workflow (order / task / payment) processing system with the following requirements: Each workflow con...
New
jonnycharles
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
spammy
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
dli
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app? Looking for hints regarding: Addi...
New
bottlenecked
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
roeland
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
rahultumpala
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 Top

JesseHerrick
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
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Damirados
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
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
ausimian
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
juhalehtonen
There has been a thread to discuss the Stack Overflow Developer Survey on this forum every year since 2018, so here’s yet another one for...
New

We're in Beta

About us Mission Statement