-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Valve Master Servers aren't filtered properly #106
Comments
Are you referring to the filters in valve master server query? The closest filter to |
Yes, the filters in valve master server query. subscription getServers($searchGame: ServersFilters!, $howMany: Int! ) {
servers(filters: $searchGame, limit: $howMany)
{
name,
appid,
playersOnline
}
} I set these as the query variables {
"searchGame":
{
"runsAppId": 440,
"isEmpty": true
},
"howMany": 30
} |
I couldn't find a graphQL playground with gamedig (I haven't used graphQL much before). What's the URL of the API you're querying for this data, or is it created using a tool that automatically generates graphQL bindings for rust? |
The mentioned project is this one: SESS-Backend (will also edit the initial message to make this clear). |
As i was testing the requests in the graphql playground, i noticed that the data did not match the filters.
I made a request for one server with isEmpty set to false, and then the same one with isEmpty set to true. Both of them fetched the same server.
Maintainer edit: The referenced project is SESS-Backend.
The text was updated successfully, but these errors were encountered: