We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
I want to use the distance_Lte filter as in the readme-file described. But I can´t perform the query. Can you tell me what my failure is?
My django classes:
class Location(models.Model): calendar = models.ForeignKey(Calendar, on_delete=models.CASCADE) name = models.CharField(max_length=255) location = models.PointField(srid=4326, unique=True) address = models.CharField(max_length=100) city = models.CharField(max_length=50) class LocationType(GeoJSONType): class Meta: model = Location geojson_field = 'location' filterset_class = LocationFilter interfaces = (relay.Node,) exclude = [] class LocationFilter(GeometryFilterSet): class Meta: model = Location fields = { 'city': ['exact', 'icontains', 'istartswith'], 'location': ['exact', 'intersects', 'distance_lte'] } class Query(graphene.ObjectType): location = relay.Node.Field(LocationType) locations = DjangoFilterConnectionField(LocationType)
My graphql-Query:
query{ locations(location_DistanceLte:{geometry:"{'type': 'Point', 'coordinates': [13.28702,52.4581]}", value:400, unit:"km"}){ edges{ node { id } } } }
The error-msg:
{ "errors": [ { "message": "Argument \"location_DistanceLte\" has invalid value {geometry: \"{'type': 'Point', 'coordinates': [13.28702,52.4581]}\", value: 400, unit: \"km\"}.\nExpected type \"Geometry\", found {Geometry: \"{'type': 'Point', 'coordinates': [13.28702,52.4581]}\", value: 400, unit: \"km\"}.", "locations": [ { "line": 2, "column": 34 } ] } ] }
I don´t know, what I´m doing wrong... It would be nice if you can help.
Thanks
The text was updated successfully, but these errors were encountered:
Did you ever figure this out? I’m running into the same issue.
Sorry, something went wrong.
Same problem here
This problem is related with graphene object type. distance_lte require Distance type, but mapping type is Geometry.
from graphql_geojson.filters import GeometryFilterSet, DistanceFilter class PlaceFilter(GeometryFilterSet): location__distance_lte = DistanceFilter(field_name='location', lookup_expr='distance_lte') class Meta: model = models.Place fields = { 'name': ['exact'] }
No branches or pull requests
Hello,
I want to use the distance_Lte filter as in the readme-file described. But I can´t perform the query. Can you tell me what my failure is?
My django classes:
My graphql-Query:
The error-msg:
I don´t know, what I´m doing wrong... It would be nice if you can help.
Thanks
The text was updated successfully, but these errors were encountered: