easy-edgedb
easy-edgedb copied to clipboard
An illustrated textbook designed to be a one-stop shop for learning EdgeDB
A note in Chapter 6 has a broken reference: > You’ll notice that we just wrote the names in a set using {}, so we didn’t need to use an...
It's great to have those exercises at the end of each chapter. Most of them are small enough that they could be done "on paper" without actually having access to...
overall feedback: - I started off intending to follow along closely with the book, and actually run every query & code sample on my local instance. this hit a snag...
1. this code ``` for character_name in {'John Seward', 'Quincey Morris', 'Arthur Holmwood'} select character_name ++ ' is great'; ``` was suppose to generate error according to the description, but...
When following the tutorial in the book I was getting an error. Adding a missing assert_single seems to fix it
This EdgeQL code causes an error `for place_name in select (array_unpack(Place.important_places)) union (insert Landmark { name := place_name });` removing the 'select' fixes it.