← Back to context

Comment by jsight

1 day ago

Yeah, I've had almost the same experience with people and ORMs. Often they'll make a good point about some weakness of some specific ORM, but it is almost always some use case that represents 1% (or less) of their application. Worse, there's nothing stopping them from just using sql for those couple of times that they need to bypass the ORM. After all, there's no reason to be religious about it and only use one tool.

99% of the time, I see ORMs pulling every single field for every query.

One of the things I appreciate about GraphQL is that it doesn’t even offer a way to ‘SELECT *’