Git Product home page Git Product logo

Comments (8)

alirizwan avatar alirizwan commented on June 17, 2024

you are right. It indeed is the case. I will see how we can fix it. It seems like an issue coming from graphql-sequelize.

from graphcraft.

Yehonal avatar Yehonal commented on June 17, 2024

on graphql-sequelize-crud it was fixed, but seems that it uses complex loop:

https://github.com/Yehonal/graphql-sequelize-crud/blob/master/src/getSchema.ts

from graphcraft.

Yehonal avatar Yehonal commented on June 17, 2024

Here you can find the issue asked on graphql-sequelize:

mickhansen/graphql-sequelize#386

from graphcraft.

alirizwan avatar alirizwan commented on June 17, 2024

I have an idea how to fix it, there are two options, one to include through model's attributes in both n:m models and whenever someone queries we modify sequelize query output accordingly.

from graphcraft.

alirizwan avatar alirizwan commented on June 17, 2024

But it's a good catch, I didn't run into such situation so far but i guess i will think about and let you know as well.

from graphcraft.

Yehonal avatar Yehonal commented on June 17, 2024

This is how it's handled by graphql-sequelize-crud:
i've 3 tables for n:m association (recipe 1->n recipeIngredients n<-1 ingredients) where recipeIngredients table has quantities attribute inside
and this is the graphql query:

{
  recipes { // query to retrieve recipe from table (recipes)
    name   // recipe name
    Ingredients{ // query to retrieve ingredient relation
      edges {
        quantities // this is the field of relational table (recipeIngredients)
        node {  // the node is the true ingredient table (ingredients)
          name  // name of the ingredient 
        }
      }
    }
  }
}

from graphcraft.

Yehonal avatar Yehonal commented on June 17, 2024

i'm working on it using "sequelizeConnection" from graphql-sequelize

from graphcraft.

Yehonal avatar Yehonal commented on June 17, 2024

fixed on PR

from graphcraft.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.