Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

$in missing double quote Guid #309

Open
Marvinnnne opened this issue Oct 8, 2024 · 0 comments
Open

$in missing double quote Guid #309

Marvinnnne opened this issue Oct 8, 2024 · 0 comments

Comments

@Marvinnnne
Copy link

I try to use $in and i face this issue :
"Invalid JSON. A comma character ',' was expected in scope 'Array'. Every two elements in an array and properties of an object must be separated by commas."

This is the filter done by $in
$filter=(Microsoft.Dynamics.CRM.In(PropertyName=%27cap_productinformationid%27,PropertyValues=[7F2E937A-5D3F-EF11-840A-6045BD8C9F94,912E937A-5D3F-EF11-840A-6045BD8C9F94,D72E937A-5D3F-EF11-840A-6045BD8C9F94]))

It's missing " between Guid in the array. This should be

$filter=(Microsoft.Dynamics.CRM.In(PropertyName=%27cap_productinformationid%27,PropertyValues=["7F2E937A-5D3F-EF11-840A-6045BD8C9F94","912E937A-5D3F-EF11-840A-6045BD8C9F94","D72E937A-5D3F-EF11-840A-6045BD8C9F94"]))

We try to update the file dg.xrmquery.web because we think it's linked to this method getVal() but without success.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant