Make items created by user always have id of `0` - eg. product with `userId` of `0` is user's own product. It will require to convert own product userId's (eg. from 10 to 0) when fetching from API - Make it as entity hook? ```ts const USER_ID_SELF = 0; ```
Make items created by user always have id of
0- eg. product withuserIdof0is user's own product.It will require to convert own product userId's (eg. from 10 to 0) when fetching from API - Make it as entity hook?