So you could query the data for something like:
/games/<appId>/reports?gpuDriver=nvidia
/games/<appId>/reports?gpuDriver=nvidia&os=ubuntu
to retrieve only the ratings that have the sub-string "nvidia" in the gpuDriver field and "ubuntu" in os. Or something like:
/games/<appId>/reports?timestamp=>1540914708
to limit results to only those after 1540914708. Or
/games/<appId>/reports?os[]=mint&os[]=ubuntu
to 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.
So you could query the data for something like:
to retrieve only the ratings that have the sub-string "nvidia" in the
gpuDriverfield and "ubuntu" inos. Or something like:to limit results to only those after
1540914708. Orto search for either string in the
osfield. 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.