Commit Graph

69 Commits

Author SHA1 Message Date
MardanovTimur
ab52178a94 merge with neomodel branch (edges updated) 2019-06-07 20:42:27 +03:00
MardanovTimur
02afb15d85 fixed conflicts 2019-05-28 03:47:42 +03:00
Paul Hallett
e6ad5887ca
Introduce Black formatting, additional tests 2019-05-02 17:46:35 +01:00
MardanovTimur
3f9eed71b7 fixed len in map error 2019-04-17 02:41:01 +03:00
MardanovTimur
45734bb3f1 fixed errors. improved edge queries 2019-04-17 02:28:15 +03:00
MardanovTimur
85d45414f9 fix 2019-02-24 02:45:47 +03:00
Mardanov Timur Rustemovich
1685b36e80 added post_resolver in django connection field 2019-02-04 13:33:51 +03:00
Mardanov Timur Rustemovich
3af66f6903 added know_parent bool field in connectionfield 2019-01-29 10:28:59 +03:00
Mardanov Timur Rustemovich
612eebdd55 fixed parent field detectioon 2019-01-24 21:22:21 +03:00
Mardanov Timur Rustemovich
875bb4a024 changed filter 2019-01-22 11:33:14 +03:00
Mardanov Timur Rustemovich
8bda68fbf7 trying to fix epic error 2019-01-16 14:13:25 +03:00
Mardanov Timur Rustemovich
804a5f127e release 2019-01-16 14:00:05 +03:00
Mardanov Timur Rustemovich
30cd430c27 fix 2019-01-16 13:42:02 +03:00
Mardanov Timur Rustemovich
e4fa8fe0b7 added support convertion for neomodel relationship 2019-01-16 13:01:37 +03:00
Mardanov Timur Rustemovich
e2165c1324 fixed neomodel_filter_fields 2018-12-02 02:48:30 +03:00
Mardanov Timur Rustemovich
57e3e86eb1 fixed parent system 2018-11-29 17:32:55 +03:00
Mardanov Timur Rustemovich
15a6744aea added filtering and parent node support 2018-11-29 16:24:36 +03:00
Mardanov Timur Rustemovich
0e4c57490e removed base class 2018-11-26 23:38:24 +03:00
Mardanov Timur Rustemovich
307021480e fixed filters 2018-11-21 09:16:36 +03:00
Jay Hale
d8bdda94df Add back support for django-filter < 2 2018-09-04 13:15:04 -04:00
Jay Hale
dc0c2900d1 Making GrapheneFilterSetMixin compatible with django_filter 2 2018-09-04 13:15:04 -04:00
Syrus Akbary
54ef52e1c6 Reformatted files using black 2018-07-19 16:52:24 -07:00
Syrus Akbary
bb6da28008 Merge branch 'master' into form_mutations 2018-06-05 13:31:29 -07:00
Syrus Akbary
a9e5beb9eb Merge branch 'master' into form_mutations
# Conflicts:
#	graphene_django/forms/converter.py
#	graphene_django/forms/tests/test_converter.py
2018-06-05 13:23:39 -07:00
=
43c0c99136 fix lint error 2018-04-15 00:21:53 -04:00
=
b331319aea Fix merge conflicts 2018-04-15 00:12:49 -04:00
eyal0803
e12c329507
Added support for Django 1.8.x
Since I didn't know why the `rel` attribute wasn't there in the first place, maybe it's better to use the `remote_field` only if it's there and leave `rel` as a default (i.e else).
2018-02-23 12:20:37 +02:00
eyal0803
e51f6070df
Fixes #400
After more digging than I expected (and planned), I'm 99% sure that the problem comes from `graphene_django`.

I found a [comment](16436f3751/django/db/models/fields/reverse_related.py (L4-L6)) in Django's source that refers to an attribute named `remote_field`, instead of `rel`.

It seamed to fix the problem for me without any other bugs (yet).
2018-02-22 05:45:40 +02:00
=
384bff08e8 Add fallback for depracated atrribute 2017-12-06 13:10:03 -05:00
=
d314d1041f rel -> remote_field: Update Django DeprecatedAttribute 2017-12-06 12:50:55 -05:00
=
62c0694901 models.DateField corresponds to graphene Date Scalar 2017-12-05 15:04:29 -05:00
Syrus Akbary
568073a090
Merge pull request #325 from urbandove/master
Fix infinite recursion when sublassing DjangoFilterConnectionField
2017-11-14 13:16:26 -08:00
=
3f08ed629c Fix infinite recursion when sublassing DjangoFilterConnectionField and merging querysets 2017-11-13 14:56:25 -05:00
Samuel Cormier-Iijima
1db1cbdd9c
Fix passing request context to filterset creation
Currently this code throws an error about `context` not being defined.
2017-11-13 12:47:55 -05:00
Syrus Akbary
bc59d0ad8e
Merge pull request #232 from basilfx/master
Pass context object to FilterSet for request-baed filtering
2017-11-13 02:39:18 -08:00
Syrus Akbary
b8fb64d893
Merge branch 'master' into fix-select-related 2017-11-13 02:31:15 -08:00
Charles Haro
4013f78ecb fix default_queryset overriding queryset when merging queries 2017-11-03 12:26:49 -07:00
Charles Haro
6d0837e7cb add test to show annotation not being perservered 2017-11-03 12:26:33 -07:00
Charles Haro
5491e2cb00 add test to show .reverse() not being perserved 2017-11-03 12:25:22 -07:00
Jacob
1d76db8164 Use super for base queryset logic 2017-10-14 13:23:08 -05:00
Cameron Dawson
69cec060d8 Fix select_related with filtering 2017-10-14 13:23:08 -05:00
Grant McConnaughey
666ddb2ff3 Merge form converter modules 2017-10-02 09:42:57 -05:00
Syrus Akbary
3d58148f03 Code adapted to new resolver API 2017-07-28 09:43:27 -07:00
Bas Stottelaar
4bdcf054eb Pass context object to FilterSet instance to support request-baed filtering (fixes #203). 2017-07-28 16:46:39 +02:00
Syrus Akbary
6ceb07c51c Improved resolver consistency 2017-07-26 23:36:08 -07:00
Syrus Akbary
72529b70bb Fixed all tests and flake issues 2017-07-24 23:42:40 -07:00
Syrus Akbary
48bcccdac2 Improved integration with Graphene 2.0 2017-07-24 22:27:50 -07:00
Syrus Akbary
46a1ddedd8 Added RELAY_CONNECTION_MAX_LIMIT and RELAY_CONNECTION_ENFORCE_FIRST_OR_LAST settings
Relay connections will be limited to 100 records by default.
2017-04-15 02:15:17 -07:00
Syrus Akbary
cc03da0598 Moved tests to filter field tests 2017-04-15 01:17:53 -07:00
Syrus Akbary
5833cb83be Fixed filterset limit issue 2017-04-15 01:00:02 -07:00