Fix CursorPagination parameter schema type

The CursorPagination's cursor query parameter expects a string and not
an integer.

Fixes #7691
This commit is contained in:
Jameel Al-Aziz 2021-02-02 21:13:03 -08:00
parent 431f7dfa3d
commit 97ef01310d
No known key found for this signature in database
GPG Key ID: D2C1CC4F32861B8D

View File

@ -961,7 +961,7 @@ class CursorPagination(BasePagination):
'in': 'query',
'description': force_str(self.cursor_query_description),
'schema': {
'type': 'integer',
'type': 'string',
},
}
]