-
Notifications
You must be signed in to change notification settings - Fork 2
Closed
Description
Short description of the issue
selectors like this fail if the page was never saved manually:
$pages->find('repeater.count>0');
Expected behavior
it should return all pages with at least one repeater item
Actual behavior
it returns only pages that where saved MANUALLY. pages that where populated via the API (setAndSave) or even saved via the API ($page->save()) will not appear on that selector.
Optional: Screenshots/Links that demonstrate the issue
Steps to reproduce the issue
- create a page with a repeater field
- create a new page and populate this repeater via the api
- do a $pages->find('repeater.count>0')->each('path');
it will only return manually saved pages.