I have a table view of all records of type "Node". Node has a connected "Order" object and "Order" object is also connected to "Client" (user)
Like this:
Node -> Order <- User
I want to list all nodes in a table and then create an order connected to logged-in Client when user selects to add an Order on a specific Node
Currently it will ask the user to fill in the Client field which is not what I want - I want it to automatically be set to a logged-in user object.