savin-ivelum

Results 6 comments of savin-ivelum

I believe the problem is in this check: ```python class GrapheneEnumType(GrapheneGraphQLType, GraphQLEnumType): def serialize(self, value): if not isinstance(value, PyEnum): #

But it will change scheme type to string right? But I'd like to have enum type

I've found a way to handle django class choices in graphene-django. I'm not sure that this is the right place to do it, but the main idea is to check...

And here is a monkey patch to use it right now: ```python from graphene.types.resolver import dict_or_attr_resolver, set_default_resolver def custom_resolver(*args, **kwargs): resolved = dict_or_attr_resolver(*args, **kwargs) if isinstance(resolved, models.Choices): resolved = resolved.value...

+1 My store submission is rejected because of this permission which is not used in the app

Sorry but is it already available on npm? I mean I see it here in [changelog](https://github.com/expo/expo/blob/main/packages/expo-video/CHANGELOG.md) under `Unpublished` but also there is a version [1.2.3](https://www.npmjs.com/package/expo-video/v/1.2.3) on npm