Need to invoke a GetById method

I have a couple instances where I do not immediately know an ID of a record I need to return. I am needing to use a method such as GetBids with a $Top 1 and a filter to return a single record. That works fine. I then need to be able to take that Id and use a GetBidbyId method to return the details for a single record to work with that data.

I tried using the parameter for Id with the expression "Id = (${result.value.map(i => i.Id)})" but that doesn't seem to work correctly. Anyone know what I am doing wrong here?

EDIT - - I figured it out. I simply needed to remove the "Id =" I was already specifying the field from the parameter dropdown.