Does filter on Subscription work?

Hi, I tried to do a filter on my subscription, I’m planning to only get the upcoming data for the specific user in that way, he doesn’t need to be prompt whenever a data that’s not for him.

  const query = new Moralis.Query("BscNFTOwners");
  query.equalTo("owner_of", ethAddress)
  const querySubscription = await query.subscribe();
  querySubscription.on("create", (notification) => getNotification(notification));

But apparently, it’s not working.

ok, it may not work
you could filter it in the interface as a work around for now