Giter Site home page Giter Site logo

Comments (5)

erikwrede avatar erikwrede commented on June 11, 2024

Thank you for the report 🙂
Can you please share something about the versions of graphene-sqlalchemy, sqlalchemy and graphene you're using and provide a reprodction including all involved ObjectTypes, Models, Enums and the Query? Without seeing the definition of AccommodationStatus it's hard to give any advice here.

from graphene-sqlalchemy.

n00el avatar n00el commented on June 11, 2024

Thank you for your fast reply! Sorry for the informations that I left out.

sqlalchemy: 1.4.46
graphene: 3.2.1
starlette-graphene3: 0.6.0
graphene-sqlalchemy: 3.0.0b3

Here is my enum:

class AccommodationStatus(str, Enum):
	creating = 'creating'
	active = 'active'
	inactive = 'inactive'

Here is my schema:

class CombinedQuery(graphene.ObjectType):
	accommodations = graphene.List(AccommodationGraphQL)
	def resolve_accommodations(self, info):
		query = AccommodationGraphQL.get_query(info)
		return query.all()

schema = graphene.Schema(query=CombinedQuery)

And here is my query:

query {
  accommodations {
    id
    status
  }
}

If I modify my status field to a string in the ObjectType it will work and , but that takes away the advantages provided by enums

class AccommodationGraphQL(SQLAlchemyObjectType):
	class Meta:
		model = AccommodationModel

	status = graphene.String()

OR if I write a custom resolver it will work again, but then I need to write resolvers to all my enums:

	def resolve_status(self, info):
		return self.status.value

from graphene-sqlalchemy.

erikwrede avatar erikwrede commented on June 11, 2024

Tried your code, but cannot reproduce the problem. Does it work for you with exactly this code? You can try putting it into a pytest testcase 🙂

class AccommodationStatus(str, PyEnum):
    creating = 'creating'
    active = 'active'
    inactive = 'inactive'

class AccommodationModel(Base):
    __tablename__ = "accommodations"
    id = Column(Integer, primary_key=True)
    status = Column(Enum(AccommodationStatus), nullable=False, default=AccommodationStatus.creating)

class AccommodationGraphQL(SQLAlchemyObjectType):
    class Meta:
        model = AccommodationModel

    status = graphene.String()

class CombinedQuery(graphene.ObjectType):
    accommodations = graphene.List(AccommodationGraphQL)

    def resolve_accommodations(self, info):
        return [AccommodationModel(id=1, status=AccommodationStatus.creating)]

schema = graphene.Schema(query=CombinedQuery)
query = """
query {
    accommodations {
    id
    status
    }
}
"""
result = schema.execute(query)
print(result)
print(json.dumps(result.formatted))

Enum 'AccommodationStatus' cannot represent value: <AccommodationStatus.active: 'creating'>
Judging by this error message, is there any chance this error was caused by you accidentally initializing the enum with status string active instead of creating when setting the enum value to active?

from graphene-sqlalchemy.

github-actions avatar github-actions commented on June 11, 2024

This issue was closed due to inactivity. If your request is still relevant, please open a new issue referencing this one and provide all of the requested information.

from graphene-sqlalchemy.

github-actions avatar github-actions commented on June 11, 2024

This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related topics referencing this issue.

from graphene-sqlalchemy.

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.