xPDO.newQuery
Last updated Apr 20th, 2021 | Page history | Improve this page | Report an issue
Support the team building MODX with a monthly donation.
The budget raised through OpenCollective is transparent, including payouts, and any contributor can apply to be paid for their work on MODX.
Backers
Budget
$301 per month—let's make that $500!
Learn morexPDO::newQuery¶
Creates an new xPDOQuery
for a specified xPDOObject
class.
Syntax¶
API Docs: https://api.modx.com/revolution/2.2/db_core_xpdo_xpdo.class.html#\xPDO::newQuery()
xPDOQuery newQuery (string $class, [mixed $criteria = null], [boolean|integer $cacheFlag = true])
Valid Class The string you pass as the class name should be a valid object class name. It'll be the same name you use moments later with your call to getObject, getObjectGraph, getCollection, or getCollectionGraph.
Examples¶
Create a new Query for the Box object:
$xpdo->newQuery('Box');
Create a new Query for the Box object, but already add a WHERE clause limiting to Boxes with width greater than 10:
$xpdo->newQuery('Box',array(
'width:>' => 10,
));
See Also¶
Support the team building MODX with a monthly donation.
The budget raised through OpenCollective is transparent, including payouts, and any contributor can apply to be paid for their work on MODX.
Backers
Budget
$301 per month—let's make that $500!
Learn more