I have two data types:
- “User”, with fileds like name, email and company_name
- “Location”, with fields like location_name and company_name
I need to create a “location_name” dropdown but only show options related to the company the user works on (based on the “User” data type relationship).
Right now I am only able to show all locations, without the constraints with the following:
Any tips? Thanks!