Django Graphene Gis Extension 0.3

django-graphene-gis-extension 0.3

Last updated:

0 purchases

django-graphene-gis-extension 0.3 Image
django-graphene-gis-extension 0.3 Images

Free

Languages

Categories

Add to Cart

Description:

djangographenegisextension 0.3

https://github.com/serioeseGmbH/django-graphene-gis-extension
django-graphene-gis-extension extends django-graphene with GIS related type definitions
(i.e. scalars, field conversions, …).

Quick start

Install the package with pip:
pip install django-graphene-gis-extension

Add “serious_django_services” to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [
...
'graphene_gis_extension',
]

Use the scalars and input type definitions wherever you need them, for instance in a Query:
from graphene_gis_extension.scalars import PointScalar
from graphene_gis_extension.input_types import NearInputType

class Query(graphene.ObjectType):
thing_with_location = graphene.Field(
ThingWithLocationType,
exactly_at=graphene.Argument(PointScalar)
near=graphene.Argument(NearInputType)
)

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product: (if this is empty don't purchase this product)

Customer Reviews

There are no reviews.