I heavily disagree with the notion that most developers would rather query with something that isn't SQL.
Funny, as Triplit front page shows a query much like SQL:
const deliveredMessagesQuery = client .query("messages") .Where("conversationId", "=", convoId) .Order("created_at", "DESC")
Probably the biggest upgrade SQL could have is putting the SELECT after the FROM, so autocomplete would work nicely.
Funny, as Triplit front page shows a query much like SQL: