Deleting an article manually from postgres

How to correctly delete an article from the database using a query in Postgres?
Would such a request be enough?

delete from ttrss_entries where title=‘some title’

Or is it necessary to make a more complex query to remove dependencies from other tables?

https://dev.tt-rss.org/tt-rss/tt-rss/src/branch/master/classes/rpc.php#L74

you could delete from ttrss_entries directly, foreign keys should deal with all dependent rows.

Thanks a lot! Exactly what is needed!