Skip to content

Commit b279a14

Browse files
committed
fix filter query with any operator
1 parent c7c5641 commit b279a14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Resources/MSGraph.Autorest/custom/Get-AzAdApplication.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ process {
192192
break
193193
}
194194
'ApplicationIdentifierUriParameterSet' {
195-
$PSBOundParameters['Filter'] = "identifierUri eq '$($PSBoundParameters['IdentifierUri'])'"
195+
$PSBOundParameters['Filter'] = "identifierUris/any(s:s eq $($PSBoundParameters[IdentifierUri]))'"
196196
$null = $PSBoundParameters.Remove('IdentifierUri')
197197
break
198198
}

0 commit comments

Comments
 (0)