SELECT Text {
title,
hashtags,
# Display the author's email as a sanity-check
author_email := .author.email,
} FILTER
.author.email ='dana@tutorial.com';
Run
Output
Press the 'Run' button to evaluate the input
Let's add hashtags to all posts mentioning EdgeDB in the
title:
SELECT Text {
title,
hashtags,
# Display the author's email as a sanity-check
author_email := .author.email,
} FILTER
.author.email ='dana@tutorial.com';