JSON documents can contain explicit NULL values and omit fields entirely. The IS/IS NOT NULL/MISSING family of operators lets you test these conditions.
The query on the right looks for people where the children field is explicitly set to NULL.
Try changing the query to IS MISSING.
SELECT fname, children FROM tutorial WHERE children IS NULL