Skip to main content
1-Visitor
July 15, 2015
Question

Filtering Results Returned From GetImplementingThingsWithData

  • July 15, 2015
  • 2 replies
  • 2753 views

I am using GetImplementingThingsWithData to find all devices that use a common template, but I would like to filter these results to look for a specific tag before displaying the contents in a grid. Has anybody ever done this?

Thanks in advance

2 replies

1-Visitor
July 16, 2015

You can use QueryImplementingThingsWithData as the base service for this.

Else with Get you can always grab that in a service and use the Query service (part of InfoTable Functions)

In the Java Doc, this section is very helpful for Queries: Query Parameter for Query Services

1-Visitor
July 7, 2016

Hi Pai Chung,

Thanks for your input. we are also using  QueryImplementingThingsWithData. in our utility services.

I guess, It is querying only max up to 500 things. We have no way to mention/change the max items above 500 for this like we do in QueryDataTableEntries. Do you have any suggestions to resolve the same.?

1-Visitor
July 7, 2016

Hi,

QueryImplementingThingsWithData has also maxItems parameter, you can set it bigger than 500.

Best Regards.

1-Visitor
July 7, 2016

Thanks Carles Coll,

I was using GetImplementingThingsWithData  service where we don't have query parameters and can't set max items limit to more than 500.

In QueryImplementingThingsWithData, we have maxItems parameter and it helps.