Has problems when you use something like this in the schema
@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
The gql files will not recognize this format and it will not translate to BlogArticle and BlogArticles it will just give errors for test with invalid argument and return nil.
I feel that this is a bug.
Because if I use : :article and :articles it will translate to Article and Articles.






















