May I ask is there any way we can get a notification on the server side?
such as search by notification id
i know we can use SQL to query, but i think it is not suggested right?
May I ask is there any way we can get a notification on the server side?
such as search by notification id
i know we can use SQL to query, but i think it is not suggested right?
@mengxin we usually discourage from using SQL queries because of the performance implications if queries are badly written.
If you’re doing a custom query to lookup a notification by its id
, it’ll use the primary key index, which should be fine.
Best.