|
|
|
|
|
by bokwoon
1102 days ago
|
|
https://twitter.com/edgedatabase/status/1620582614703964160 EdgeQL: select Child {name}
filter .<child[is Parent].name = 'Uma Thurman';
SQL: select child.name
from child
join parent_child_rel using (child_id)
join parent using (parent_id)
where parent.name = 'Uma Thurman';
IMO EdgeQL is going too far with the sigils |
|