Let's start with adding a new Account. We'll need a username and to make things more interesting we'll add
all movies with Scarlett Johansson to our watchlist:
Input
Run
insert Account {
username :='tutorial',
watchlist := (
# Using a sub-query to fetch the existing movies.select Movie filter .actors.name ='Scarlett Johansson'
)
};
We use ChatGPT with additional context from our documentation to answer your questions. Not all answers will be accurate. Please join our Discord if you need more help.