Owens

Owens

How to read Postgrex SQL ERROR 42703

Hello all,

I’m scratching my head trying to read this error log from Postgrex.

** (Postgrex.Error) ERROR 42703 (undefined_column) column c2.user_id does not exist

    query: SELECT t0."id", t0."logo_url", t0."icon_url", t0."invite_password",
t0."is_company", t0."long_description", t0."name", t0."short_description",
t0."company_id", t0."inserted_at", t0."updated_at",
c1."id" FROM "teams" AS t0 INNER JOIN "cohorts"
AS c1 ON c1."id" = ANY($1) INNER JOIN  "cohorts_teams"
AS c2 ON c2."cohort_id" = c1."id" WHERE (c2."user_id" = t0."id") ORDER BY c1."id"

Here’s the function call.

teams_query = Team |> preload(:teams_users)
organization_query = Organization |> preload(:organizations_users)

cohort = Cohort
|> preload([teams: ^teams_query, organization: ^organization_query])
|> Repo.get!(cohort_id)

It appears to be looking for user_id on the cohorts_teams table, which doesn’t exist. If so, why could it be looking for this?

First 6 of 6 Posts Switch mode

benwilson512

benwilson512

Author of Craft GraphQL APIs in Elixir with Absinthe

Hi @Owens this is likely an isue with how you have defined your associations, can you show your schema modules?

Owens

Owens OP

Hi again @benwilson512 :slight_smile:

schema "cohorts" do
    field :first_day, :date
    field :has_stages, :boolean, default: false
    field :invite_password, :string
    field :last_day, :date
    field :name, :string
    field :team_based, :boolean, default: false
    field :teams_are_companies, :boolean, default: false
    field :time_block_count, :integer
    belongs_to :organization, Rocketship.Organizations.Organization
    many_to_many :users, Rocketship.Accounts.User, join_through: "cohorts_users"
    has_many :cohorts_users, Rocketship.Cohorts.CohortUser
    many_to_many :teams, Rocketship.Accounts.User, join_through: "cohorts_teams"
    has_many :cohorts_teams, Rocketship.Cohorts.CohortTeam
    timestamps()

schema "cohorts_teams" do
    belongs_to :cohort, Rocketship.Cohorts.Cohort
    belongs_to :team, Rocketship.Cohorts.Team
    timestamps()

schema "teams" do
    field :logo_url, :string
    field :icon_url, :string
    field :invite_password, :string
    field :is_company, :boolean, default: false
    field :long_description, :string
    field :name, :string
    field :short_description, :string
    field :company_id, :id
    many_to_many :users, Rocketship.Accounts.User, join_through: "teams_users"
    has_many :teams_users, Rocketship.Cohorts.TeamUser
    many_to_many :cohorts, Rocketship.Accounts.User, join_through: "cohorts_teams"
    has_many :cohorts_teams, Rocketship.Cohorts.CohortTeam
    timestamps()
benwilson512

benwilson512

Author of Craft GraphQL APIs in Elixir with Absinthe

You have a mistake here: many_to_many :teams, Rocketship.Accounts.User, join_through: "cohorts_teams". This should be Rocketship.Accounts.Team probably.

Also, if you use join_through and then a string it won’t use the schema, you need to join_through: [:cohorts_teams, :team]

Owens

Owens OP

Also, if you use join_through and then a string it won’t use the schema, you need to join_through: [:cohorts_teams, :team]

Interesting I hadn’t read that before. Is there documentation to explain this? The Ecto Association guide only shows join_through with string.

Thanks for your insights as always, Ben!

benwilson512

benwilson512

Author of Craft GraphQL APIs in Elixir with Absinthe

As a first note, the stuff you’re linking to are quite old, Ecto 3.X has been out for a while.

Secondly, I was a bit wrong now that I looked at it, I got join_through: confused with has_many through Ecto.Schema — Ecto v3.14.0. I almost always use an actual schema in the middle and not many_to_many.

Owens

Owens OP

Thanks for the reference!

Strange I came upon the 2.2 docs through Google and didn’t notice it was the old version.

— All posts loaded —

Where Next?

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
silverdr
Using Phoenix.LiveView.TagEngine as an EEx.Engine is deprecated! To compile HEEx, use Phoenix.LiveView.TagEngine.compile/2 instead. Sta...
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
michallepicki
I am using Oban and occasionally, shortly after a deployment, a handful of jobs can fail because of dependency on other parts of the syst...
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
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
type1fool
I just stumbled on a newly redesigned elixir-lang.org. :tada: It looks like @Software_Mansion did the work, and I think it is generally a...
New
akoutmos
@hugobarauna and I (Alex Koutmos) have been hard at work on writing a book on Nerves that takes you from simply blinking LEDs to building...
New

We're in Beta

About us Mission Statement