I'm struggling with a naming convention for a specific part of a URL.
For example: https://stackoverflow.com/questions/ask?abcd
Conventionally, this is what follows:
path
= /questions/ask
query string
= abcd
However I'm storing the following in a database, and am struggling on what to call it (it's not really a URI, path):
/questions/ask?abcd
Anyone run into this before?