I want to query a user by the value of extensionAttribute1 but I'm getting this error: "Microsoft.Graph.Models.ODataErrors.ODataError: Property 'extensionAttribute1' does not exist as a declared property or extension property."
When I go to my own user in Entra, I can clearly see my extensionattributes are filled in:

This is the code I'm using to make the request:
UserCollectionResponse? response = await _graph.Users.GetAsync(requestConfiguration =>
{
requestConfiguration.QueryParameters.Filter = "extensionAttributes/extensionAttribute1 eq '<MY-VALUE>'";
requestConfiguration.QueryParameters.Count = true;
requestConfiguration.Headers.Add("ConsistencyLevel", "eventual");
});```