Skip to content

Get error when using django cursor pagination #157

@habibi1981

Description

@habibi1981

I'm using django cursor pagination for queryset pagination, and for testing my code I'm using the django-mock-queries package for mock queryset. I get this error when I get page two in queryset:
python3.10/site-packages/django_mock_queries/utils.py:145: in is_match
return {


  COMPARISON_LT: lambda: first < second if first is not None else False,
    COMPARISON_LTE: lambda: first <= second if first is not None else False,
    COMPARISON_IN: lambda: first in second if first is not None else False,
    COMPARISON_STARTSWITH: lambda: first.startswith(second),
    COMPARISON_ISTARTSWITH: lambda: first.lower().startswith(second.lower()),
    COMPARISON_ENDSWITH: lambda: first.endswith(second),
    COMPARISON_IENDSWITH: lambda: first.lower().endswith(second.lower()),
    COMPARISON_ISNULL: lambda: (first is None) == bool(second),
    COMPARISON_REGEX: lambda: re.search(second, first) is not None,
    COMPARISON_IREGEX: lambda: re.search(second, first, flags=re.I) is not None,
    COMPARISON_RANGE: lambda: second[0] <= first <= second[1]
}[comparison]()

E TypeError: '<' not supported between instances of 'int' and 'Value'

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions