Filter based on computer id

I’m trying to modify a simple relevance query to filter based on computer ID. The query runs but the filtering doesn’t work. It still returns all computers.

here is the query:

<?relevance (names of computers of results of it, names of it, statuses of results of it) of member actions of (bes action whose (id of it is 5549070)) ?>

and here is my attempt to filter based on computer id:

<?relevance (names of computers of results of it, names of it, statuses of results of it) of member actions of (bes action whose (id of it is 5549070)) of bes computers whose (id of it = 5617964774) ?>

What am i missing?

I used this once and it worked.

<?Relevance (ids of it, statuses of results of it) of bes actions whose (id of it = 539224841) ?>

I think you want to filter the bes action results where the result is for this computer? Try

<?relevance (names of computers of it, names of actions of it, statuses of it) of results whose (id of computer of it = 5617964774 ) of member actions of (bes action whose (id of it is 5549070)) ?>

1 Like

Thanks Jason… works. Appreciate the help

1 Like