graphgen
graphgen copied to clipboard
Parse error if a randomElement has a full stop in it
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.