Strapi relation pagination

Try this method to solve.

http://127.0.0.1:1337/api/articles?filters[category]=1?pagination[page]=1&pagination[pageSize]=2

{
    "data": [
        {
            "id": 2,
            "attributes": {
                "Name": "WPS Office",
                "Description": "随时随地,办公更高效",
                "createdAt": "2023-10-14T20:17:05.712Z",
                "updatedAt": "2023-10-14T20:17:07.157Z",
                "publishedAt": "2023-10-14T20:17:07.142Z"
            }
        },
        {
            "id": 10,
            "attributes": {
                "Name": "腾讯会议",
                "Description": "腾讯会议,会开会",
                "createdAt": "2023-10-14T21:21:22.914Z",
                "updatedAt": "2023-10-14T21:22:21.133Z",
                "publishedAt": "2023-10-14T21:22:21.122Z"
            }
        }
    ],
    "meta": {
        "pagination": {
            "page": 1,
            "pageSize": 2,
            "pageCount": 8,
            "total": 15
        }
    }
}