I have a list of values on screen that as the user is typing will be filtered options. If the user wants to view all the records he will type:?;
Then my rest call will be: myserver / fetch /?
From what I understand, this "?" is interpreted as the beginning of the variable declaration, however I wanted to capture the "?" to see if I should return all records.
My question is if I have to just send the question mark somehow or I would have to give a replace and send a "*" maybe ..