Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SelectFields will only fire relationship query once and therefore with wrong arguments #604

Open
crissi opened this issue Mar 15, 2020 · 6 comments

Comments

@crissi
Copy link
Contributor

crissi commented Mar 15, 2020

I was looking into this #602 and fell over this bug.

With this query:

query ($proId: Int, $proId2: Int) {
  test2 {
    name

    alias1: profile(profileId: $proId2) {
      contentType
    }
    
    alias2:profile(profileId: $proId) {
      contentType
    }

  }
}
{
  "proId": 2,
  "proId2": 4,
  "id": 70
}

image

The profile relationship is only run once and therefore the different arguments given to the custom query clause is not taken into account, only the last query get the right args.

It seems a bit to hard to fix since it is not easily possible to alias eloquent relationships.

Unfortunately something like this is not possible. This would have made it a simplier fix
User::with('relationship', 'relationship AS other')->get();

@Pijuli
Copy link

Pijuli commented Jul 16, 2020

How did it end? We ran into the same issue :(
Saw the closed PR, but anything else

@crissi
Copy link
Contributor Author

crissi commented Jul 16, 2020 via email

@Pijuli
Copy link

Pijuli commented Jul 16, 2020

Yes, I saw it. I can't help as I'm not into the core of it.
We managed to make it work by splitting the query... but it'll probably take some more resources.
Anyway. I'll keep an eye on the issue.
Thanks anyway.

@mfn
Copy link
Collaborator

mfn commented Apr 5, 2021

My personal take (as I've expressed in #612 (review) ):

I don't think the approach using SelectFields is technically appropriate here. It relies on upfront figuring out everything needed so that the appropriately, possibly nested, SQL relations and stuff can be solved. This results in incredible amount of complexity.

Although the GraphQL spec stays highly absent in talking about how to fetch the data, using dataloaders is a very common and well understood technique.

Since graphql-laravel is a thin wrapper over graphql-php, everything from e.g. https://webonyx.github.io/graphql-php/data-fetching/#solving-n1-problem should apply. And this is in fact how I've approached this in all my projects and it works very well and also is datasource agnostic, as it simply doesn't matter whether it's Eloquent, ElasticSearch, etc.

I would love to be proven wrong, but I don't think this will be solved in SelectFields and workarounds different approaches to solve this are possible.

@mfn
Copy link
Collaborator

mfn commented Apr 9, 2021

Maybe we should add a "caveat" section to the readme and note some known limitations? 🤔

@mfn
Copy link
Collaborator

mfn commented Jun 26, 2023

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants