splatnet3_scraper.query.QueryHandler.raw_query_hash(query_hash, language=None, variables={})

Makes a raw query to the SplatNet 3 API using the query hash.

This method is used to make a raw query to the SplatNet 3 API. It is not recommended that the user use this method directly, but rather use the query method instead, as it will handle all the token management automatically. If you MUST use a raw query, it is recommended that you use the raw_query method instead. This method is even more rarely useful than the raw_query method, but it is provided for completeness.

Parameters:
query_hash : str

The GraphQL query hash to use.

language : str | None

The language to use for the query. If None, the language loaded into the Config object will be used. Defaults to None.

variables : dict

The variables to use in the query. Defaults to {}.

Returns:

requests.Response – The response from the query.