-
Notifications
You must be signed in to change notification settings - Fork 12
Open
Description
Copied from here to the upstream.
String
Works:
(thing:Thing { number: {randomElement:['Hello']} } *10)
Doesn't work:
(thing:Thing { number: {randomElement:['Hello.']} } *10)
// The part "(thing:Thing { number: {randomElement:['Hello.']} } *10)" could not be parsed, check it for type errors.
Number
Works:
(thing:Thing { number: {randomElement:[1]} } *10)
Doesn't work:
(thing:Thing { number: {randomElement:[1.1]} } *10)
// The part "(thing:Thing { number: {randomElement:[1.1]} } *10)" could not be parsed, check it for type errors.
Number in string
Works:
(thing:Thing { number: {randomElement:['1']} } *10)
Doesn't work:
(thing:Thing { number: {randomElement:['1.1']} } *10)
// The part "(thing:Thing { number: {randomElement:['1.1']} } *10)" could not be parsed, check it for type errors.
Metadata
Metadata
Assignees
Labels
No labels