Lets say that we have a book and author entities in JDL-Studio like this:
entity Book {
name String required minlength(2)
}
entity Author {
name String required minlength(2)
}
relationship ManyToMany {
Book{author(name)} to Author{book}
}
When we run the show, we can login and create a new book, but we need to choose between the list of authors in the dropdown list that we have already created in the author entity, right?
How can we do this 2 things using jhipster:import-jdl:
1) tell Jhipster-JDL to create a search box to look in a list of authors (let's say we have a 1000 author entries) and 2) have a text box where we can add a new text creating a new author entry in the database (or think about a tag for the book: adventures, science-fiction,... but not using the already created from the list).
Is it posible to do that when creating de JDL-Studio Entities? Is there any place with more advanced use cases besides https://www.jhipster.tech/jdl/
Would it be possible with jhipster-uml? Is UML, more powerful? https://www.jhipster.tech/jhipster-uml/