Querying jobs by attributes

Referencing a question from a couple years ago (Checking for a job state), it was mentioned that Hangfire only supports querying jobs by ID but filtering was being considered for future releases.

Has there been any further thought on this? We want to be able to check the state of jobs based on a common attribute. For example, one action may enqueue several jobs and we want to check the state of that group of jobs. Our current plan is to store group those jobs by job id in a separate data store, but if Hangfire has a way of allowing us to specify a common ID or something on each and then query them, that’d work even better.

Thanks!