I have added a column to the User table called 'Title'. The Title column is an Object that contains a list of Title ID's (all unique) with associated other columns (i.e., Title Name, Title Description, Title Start Date, Title End Date, etc. I'd like to create an API that GETs all the Users with a specific Title ID from the list and return the User and all associated data. The API will take an input of Title_ID_Input and filter the list of users by Title ID. (i.e. Title_ID_Input == User.Title. Title_ID) BUT, this is not working. Is this possible?