Yurii Karabas

Results 236 comments of Yurii Karabas

Hi @rolikoff, Could you please show how you generate OpenAPI schema? Here is what component definition looks like in my case: ```py from fastapi import FastAPI from fastapi_pagination import Page,...

Hi @davidbrochart, Now it should be easier to implement this feature. Example: ```py from typing import Any, TypeVar, Generic, Sequence, Type from fastapi import FastAPI from pydantic import BaseModel, Field...

Hi @davidbrochart, I am closing this issue, please reopen it if you have more questions.

Hi @sahil-kumar-1129, Could you please try to use `unique=False` parameter?

Hi @rsingh2411, It's actually related to `pydantic` logic, not to `fastapi-pagination`. You need to pass `date`, not `datetime` object for validation.

You need to upgrade to latest fastapi-pagination version

@rsingh2411 I am closing this issue, please, reopen it in case of any issues.

Hi @sahil-kumar-1129, If it's not possible to upgrade to newest version you can use this function: ```py from typing import Union, Optional, Any from sqlalchemy import select, func from sqlalchemy.orm...