Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit bf65082

Browse files
authoredMar 5, 2024··
Merge branch 'master' into sabard/filter-cleanup
2 parents 3414623 + b30bc92 commit bf65082

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed
 

‎graphene_sqlalchemy/filters.py

+7
Original file line numberDiff line numberDiff line change
@@ -415,6 +415,13 @@ class Meta:
415415
graphene_type = graphene.Date
416416

417417

418+
class DateTimeFilter(OrderedFilter):
419+
"""Concrete Filter Class which specifies a type for all the abstract filter methods defined in the super classes"""
420+
421+
class Meta:
422+
graphene_type = graphene.DateTime
423+
424+
418425
class IdFilter(FieldFilter):
419426
class Meta:
420427
graphene_type = graphene.ID

0 commit comments

Comments
 (0)
Please sign in to comment.