Using the _beforeQuery hook

Hi,
I want to allow one specific user to read a collection data, although the collection has privileges only for admin, i want to do this with the suppressAuth and hooks.
I created a beforeQuery hook on my collection

export function collection_beforeQuery(query, context) {

}
how do i add the suppressAuth to the query received in the parameters
let options = {
“suppressAuth”: true,
“suppressHooks”: true
};
but how do i add this “options” to the query?