You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(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.
(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.
The text was updated successfully, but these errors were encountered:
Copied from here to the upstream.
String
Works:
Doesn't work:
Number
Works:
Doesn't work:
Number in string
Works:
Doesn't work:
The text was updated successfully, but these errors were encountered: