Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

queryNodes provides a filtering mechanism. Filters are added as request parameters. Filter values must be properly URL encoded. You can use multiple filters within the same request.

Hide block

Format and operators

The filter has the following format: property[operator]=value . For example, http://<domain>/.rest/delivery/pages/v1?title[like]=tour

Supported operators:

  • ne means <>
  • eq means =
  • lt means <
  • lte means <=
  • gt means >
  • gte means >=
  • like means LIKE
  • in means IN
  • not-in means NOT IN

Example:

http:///.rest/delivery/pages/v1?mgnl:created[in]=2018-01-01~2018-02-01



Property filter

Filter for a property of the node. Thev value for the property must be an exact match.

...