Code Monkey home page Code Monkey logo

Comments (16)

jarnosteeman avatar jarnosteeman commented on August 24, 2024

The typeMapper should probably receive the whole attribute instead of just the type, to get access to the Model's name and the attribute's name.

from graphql-sequelize.

mickhansen avatar mickhansen commented on August 24, 2024

Would not make it a typeMapper anymore though ;)
But we'll probably have to remove ENUM from the typeMapper and do a special case in attributeFields.

from graphql-sequelize.

aweary avatar aweary commented on August 24, 2024

Does it matter what the name is for the GraphQLEnumType? If we just need to enforce unique names we can generate unique random strings for the name.

from graphql-sequelize.

jarnosteeman avatar jarnosteeman commented on August 24, 2024

It will make the returned schema valid again since name's are just required to be unique, but introspection of your schema saying Object x has a field of type "Di57gpl" (random string) isn't very nice.

from graphql-sequelize.

aweary avatar aweary commented on August 24, 2024

Well, looking nice in introspection is a secondary concern to functionality. So I think what it should do is generate a random string for the schema name, note that it does so in the docs, and if you really need to have specific declared names you can exclude the ENUM and define it yourself.

from graphql-sequelize.

brad-decker avatar brad-decker commented on August 24, 2024

In order to maintain the function of typeMapper only being a typeMapper, we could check to see if the returned type from typeMapper is a ENUM inside of attributeFields and add the name after the fact using key and model name. So something like [modelname][Key]EnumType - (ex: userStatusEnumType) ?

from graphql-sequelize.

jarnosteeman avatar jarnosteeman commented on August 24, 2024

The unique name checking takes place inside the GraphQLObjectType constructor so that wouldnt fix the error.

from graphql-sequelize.

brad-decker avatar brad-decker commented on August 24, 2024

The unique name error is thrown from the schema object, not from the GraphQLEnumType/Or Object Types. GraphQL doesn't know its non-unique until you try to build the schema.

from graphql-sequelize.

brad-decker avatar brad-decker commented on August 24, 2024
Error: Schema must contain unique named types but contains multiple types named "undefined".
    at invariant ([...]/node_modules/graphql/jsutils/invariant.js:20:11)
    at typeMapReducer ([...]/node_modules/graphql/type/schema.js:138:41)

from graphql-sequelize.

jarnosteeman avatar jarnosteeman commented on August 24, 2024

Ahh, yes I see. Then i'd say run like that. It makes more sense to implement the name logic inside the attributeFields function.

from graphql-sequelize.

brad-decker avatar brad-decker commented on August 24, 2024

@aweary + @mickhansen thoughts on this solution? Requires an additional type check inside of attributeFields which is the only negative.

from graphql-sequelize.

aweary avatar aweary commented on August 24, 2024

👍

from graphql-sequelize.

mickhansen avatar mickhansen commented on August 24, 2024

@brad-decker Sounds like a good solution for now.

from graphql-sequelize.

brad-decker avatar brad-decker commented on August 24, 2024

@mickhansen i threw the fix for this into my open Pull request. added tests for coverage

from graphql-sequelize.

mickhansen avatar mickhansen commented on August 24, 2024

Published in v0.9.0

from graphql-sequelize.

jlaramie avatar jlaramie commented on August 24, 2024

@mickhansen this should be reopened as the fix does not cover nesting via DataTypes.ARRAY(DataTypes.ENUM(ENUM_ARRAY))

from graphql-sequelize.

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.