mirror of
https://github.com/graphql-python/graphene-django.git
synced 2024-11-22 17:47:12 +03:00
fdeadf5ce5
* Fix project setup * Fix test_should_query_postgres_fields
25 lines
611 B
Python
25 lines
611 B
Python
class MissingType(object):
|
|
pass
|
|
|
|
|
|
try:
|
|
# Postgres fields are only available in Django with psycopg2 installed
|
|
# and we cannot have psycopg2 on PyPy
|
|
from django.contrib.postgres.fields import (
|
|
IntegerRangeField,
|
|
ArrayField,
|
|
HStoreField,
|
|
JSONField as PGJSONField,
|
|
RangeField,
|
|
)
|
|
except ImportError:
|
|
IntegerRangeField, ArrayField, HStoreField, PGJSONField, RangeField = (
|
|
MissingType,
|
|
) * 5
|
|
|
|
try:
|
|
# JSONField is only available from Django 3.1
|
|
from django.db.models import JSONField
|
|
except ImportError:
|
|
JSONField = MissingType
|