From 40da74fc520d3d6633cdf387af988e0150d6f85e Mon Sep 17 00:00:00 2001 From: Adam Date: Tue, 7 Aug 2018 11:04:52 -0400 Subject: [PATCH] Mention filter incompatibility with django 2.0 Was in the process of updating our app to Python 3 + Django 2.1 and ran into this (would've been nice if t was mentioned in the docs). Related: https://github.com/graphql-python/graphene-django/issues/464 --- docs/filtering.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/filtering.rst b/docs/filtering.rst index 63b72dd..cfecf2c 100644 --- a/docs/filtering.rst +++ b/docs/filtering.rst @@ -3,7 +3,9 @@ Filtering Graphene integrates with `django-filter `__ (< 2.0.0) to provide -filtering of results. See the `usage +filtering of results (this also means filtering is only compatible with Django < 2.0). + +See the `usage documentation `__ for details on the format for ``filter_fields``.