We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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 it worked…
for character_name in {'John Seward', 'Quincey Morris', 'Arthur Holmwood'} union ( insert NPC { name := character_name, places_visited := (select City filter .name = 'London'), lover := (select Person filter .name = 'Lucy Westenra'), } );
It needs a assert_single on lover:
for character_name in {'John Seward', 'Quincey Morris', 'Arthur Holmwood'} union ( insert NPC { name := character_name, places_visited := (select City filter .name = 'London'), lover := assert_single((select Person filter .name = 'Lucy Westenra')), } );
The text was updated successfully, but these errors were encountered:
No branches or pull requests
was suppose to generate error according to the description, but it worked…
It needs a assert_single on lover:
The text was updated successfully, but these errors were encountered: