@BossGrand I have a similar issue, it errors out this `graphql.error.located_error.GraphQLLocatedError: 'ImageFieldFile' object has no attribute 'decode'`
See original GitHub issue@BossGrand I have a similar issue, it errors out this graphql.error.located_error.GraphQLLocatedError: 'ImageFieldFile' object has no attribute 'decode'
_Originally posted by @horiyomi in https://github.com/graphql-python/graphene-django/issues/769#issuecomment-560012948_
Issue Analytics
- State:
- Created 4 years ago
- Comments:8
Top Results From Across the Web
Developers - @BossGrand I have a similar issue, it errors out this ...
BossGrand I have a similar issue, it errors out this `graphql.error.located_error.GraphQLLocatedError: 'ImageFieldFile' object has no attribute 'decode'`
Read more >Django error "'ImageFieldFile' object has no attribute 'replace'"
The problem happens when I try to display my views. I am not even making a reference to the image in base.html. My...
Read more >django error "'imagefieldfile' object has no attribute 'replace'"
I have a Project MODEL, that takes an image. anycodings_django I added the model to my admin page, and I anycodings_django created an...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
It works now, i had a typo. Thanks
class ProfileType(DjangoObjectType): class Meta: model = Profile extra_field = graphene.String() def resolve_extra_field(self, info): return info.context.build_absolute_uri(self.profile.url)