Open stepanzalis opened 1 year ago
Thanks.
Did you have a look at the example? What exactly is unclear?
Generally I know its quite hard to get and I'm also not really happy with the system right now, but I couldn't figure out a better way yet. If you have some pointers I'm happy to try and improve it.
Hey! First, I would like to thank you for your package, so far I really like it. I currently struggle with
@HiddenIn
and@ViewedIn
syntax. Let's say I have following entities:Example:
Project has many tasks:
and access to subtasks (for example from Task entity I need to show how many subtasks are in there.
Problem:
I don't understand the @HiddenIn & @ViewedIn syntax in order not to get cyclic dependencies. Can you please provide me example how to add the Views in order to get
List<Task>
from Project andList<Subtask>
from Task? Thanks!