Versions Compared

Key

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

...

Search nodes in the tours workspace which contain the keyword vietnam . Return the results in descending order by the location property and restrict the limit to one.:

Code Pro
curl -X GET 'http://localhost:8080/magnoliaAuthor/.rest/delivery/trips/v1?q=vietnam&orderBy=location%20desc&limit=1' \
-u superuser:superuser

...

Search a tour and filter with the description property (Get photobombed by a Sea Turtle).:

Code Block
curl -X GET \
'http://localhost:8080/magnoliaAuthor/.rest/delivery/trips/v1?description=Get%20photobombed%20by%20a%20Sea%20Turtle' \
-u superuser:superuser

...

Search all ancestor nodes of the page the /travel/about/careers/marketing-associate page from the website workspace:

Code Block
curl -X GET \
'http://localhost:8080/magnoliaAuthor/.rest/delivery/website/v1?@ancestor=/travel/about/careers/marketing-associate' \
 -u superuser:superuser

...