mirror of
				https://github.com/graphql-python/graphene.git
				synced 2025-10-31 16:07:27 +03:00 
			
		
		
		
	Added FileField and ImageField conversion. Fixed #137
This commit is contained in:
		
							parent
							
								
									1f548f188d
								
							
						
					
					
						commit
						a1dd2b6293
					
				|  | @ -31,6 +31,7 @@ def convert_django_field(field): | |||
| @convert_django_field.register(models.SlugField) | ||||
| @convert_django_field.register(models.URLField) | ||||
| @convert_django_field.register(models.GenericIPAddressField) | ||||
| @convert_django_field.register(models.FileField) | ||||
| @convert_django_field.register(UUIDField) | ||||
| def convert_field_to_string(field): | ||||
|     return String(description=field.help_text) | ||||
|  |  | |||
|  | @ -53,6 +53,14 @@ def test_should_ipaddress_convert_string(): | |||
|     assert_conversion(models.GenericIPAddressField, graphene.String) | ||||
| 
 | ||||
| 
 | ||||
| def test_should_file_convert_string(): | ||||
|     assert_conversion(models.FileField, graphene.String) | ||||
| 
 | ||||
| 
 | ||||
| def test_should_image_convert_string(): | ||||
|     assert_conversion(models.ImageField, graphene.String) | ||||
| 
 | ||||
| 
 | ||||
| def test_should_auto_convert_id(): | ||||
|     assert_conversion(models.AutoField, graphene.ID, primary_key=True) | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue
	
	Block a user