Murilo Amaral Santiago

Results 2 comments of Murilo Amaral Santiago

You can simply import the `graphql_geojson.converter`. This worked for me: **Model** ``` from django.contrib.gis.db import models class Partner(models.Model): name = models.CharField(max_length=100, blank=False) coverage_area = models.MultiPolygonField() address = models.PointField() ``` **Type**...

That was really helpful! Thank you