Community Tip - Learn all about PTC Community Badges. Engage with PTC and see how many you can earn! X
Hello,everyone!
How do I write a query the QueryNumberPropertyHistory service?
I want to query values greater than 10.
thank you!
Solved! Go to Solution.
Hi @Snoopy_hu ,
Kindly find the below snapshot of Query input of service - QueryNumberPropertyHistory.
Also find the attached link for Query Parameter for Query Services & Using JSON Filters in Query Services.
{
"filters":{
"type": "GT",
"fieldName": "value",
"value": 10
}
}
Complete Result:
Expected Result:
Thanks & Regards,
Arun C
Hi @Snoopy_hu ,
Kindly find the below snapshot of Query input of service - QueryNumberPropertyHistory.
Also find the attached link for Query Parameter for Query Services & Using JSON Filters in Query Services.
{
"filters":{
"type": "GT",
"fieldName": "value",
"value": 10
}
}
Complete Result:
Expected Result:
Thanks & Regards,
Arun C
Hi @Arun_C ,
Ok, I tried it successfully through your method, thank you very much!
Thanks & Regards,
Snoopy_hu