You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'll see what I can do. I was hoping to parse out these columns of data and store it properly in the database so I can provide APIs to search by games compatible by driver versions, by rating, and so on.
Regex does look like a pretty good stopgap solution in the meantime.
I want to make/use a query builder and implement sorting, filtering and tags all in one go later on.
To me the most interesting bit is currently to be able to narrow a game's reports down to "recent nvidia tests", because old tests or those for a GPU you don't have are less important. But I can also do it on the client side, no problem, no hurry. Probably even better because then I don't have to query your API as often.
So you could query the data for something like:
to retrieve only the ratings that have the sub-string "nvidia" in the
gpuDriver
field and "ubuntu" inos
. Or something like:to limit results to only those after
1540914708
. Orto search for either string in the
os
field. Or a filter for the (minimum) Proton version, …You get the idea. It should be possible to combine them arbitrarily. Allowing RegEx syntax on the values would be nice, too.
The text was updated successfully, but these errors were encountered: