In order to create a required relationship using JDL, I found that we can do this:
entity A
entity B
relationship ManyToOne{
A{b required} to B
}
When I run the following command jhipster-uml myjdlfile.jdl
I get this:
An error has occurred:
SyntaxError
At line 5, column 6.
Error message:
Expected "}" or a space but "r" found.
Apparentlly, it doesn't recognize the required .
I am using Jhipster UML v1.6.5 and Jhipster Generator v3.4.0
Any ideas?
Thanks :)