OData Query Builder Connector for SAP solutions
Overview
Allow you to construct an OData query in a microflow from its basic components without needing to construct the query string in an HTTP compliant way, and without needing to know all the details of constructing OData queries.
Documentation
Introduction
The OData Query Builder widgets from the App Store allow you to construct an OData query in a microflow from its basic components without needing to construct the query string in an HTTP compliant way, and without needing to know all the details of constructing OData queries.
How to Build Your Query
Starting Your Query
All query microflows begin with a Start action, which specifies the location of the OData service and the Collection name you are querying. This returns an object which is used by all the other actions to add more OData parameters to the query.
Creating a Filter
You can filter your results by comparing it with a single value held as the attribute of an object (Filter object) or with several values held as an attribute in a list of objects (Filter list).
You can use several filters in your query by combining them with a Join action.
Counting Items Returned
You can either just return a count of the number of objects found by your query, using the Count action, or return the count in addition to the returned objects using the Count Inline action.
Returning Associated Objects
You can expand your query to include objects which are associated with the objects found by your query by using the Expand action.
Sorting Your Objects
You can sort the objects which are returned by your query using the Order By action.
Returning a Subset of Objects
You can limit the number of object returned by your query by using the Top action to return a specific number of objects, and the Skip action to return objects which are not at the top of the list of items found by the query.
Creating the Query String
All query microflows end with the Build String action which takes the object to which the OData Query Builder actions have been added, and returns a string which is the OData query.
Read More
More information about OData queries can be found in the following documents: