Skip to content

Commit 3d39a6b

Browse files
committed
cms@4cba6bd
Finish 4.16.15
1 parent f375e3c commit 3d39a6b

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

docs/.artifacts/cms/4.x/addresses.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
| [language](#language) | Determines which site(s) the addresses should be queried in, based on their language.
2525
| [limit](#limit) | Determines the number of addresses that should be returned.
2626
| [offset](#offset) | Determines how many addresses should be skipped in the results.
27-
| [orderBy](#orderby) | Determines the order that the addresses should be returned in. (If empty, defaults to `dateCreated DESC, id`.)
27+
| [orderBy](#orderby) | Determines the order that the addresses should be returned in. (If empty, defaults to `dateCreated DESC, elements.id`.)
2828
| [owner](#owner) | Sets the [ownerId](#ownerid) parameter based on a given owner element.
2929
| [ownerId](#ownerid) | Narrows the query results based on the addresses’ owner elements, per their IDs.
3030
| [preferSites](#prefersites) | If [unique()](https://docs.craftcms.com/api/v4/craft-elements-db-elementquery.html#method-unique) is set, this determines which site should be selected when querying multi-site elements.
@@ -501,7 +501,7 @@ $addresses = \craft\elements\Address::find()
501501
<a class="ref-defined-by" href="https://docs.craftcms.com/api/v4/craft-elements-db-elementquery.html#method-orderby" target="_blank" rel="noopener noreferer">Defined by <code>craft\elements\db\ElementQuery</code></a>
502502

503503
Determines the order that the addresses should be returned in. (If empty, defaults to `dateCreated DESC,
504-
id`.)
504+
elements.id`.)
505505

506506

507507

docs/.artifacts/cms/4.x/assets.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
| [language](#language) | Determines which site(s) the assets should be queried in, based on their language.
3131
| [limit](#limit) | Determines the number of assets that should be returned.
3232
| [offset](#offset) | Determines how many assets should be skipped in the results.
33-
| [orderBy](#orderby) | Determines the order that the assets should be returned in. (If empty, defaults to `dateCreated DESC, id`.)
33+
| [orderBy](#orderby) | Determines the order that the assets should be returned in. (If empty, defaults to `dateCreated DESC, elements.id`.)
3434
| [preferSites](#prefersites) | If [unique](#unique) is set, this determines which site should be selected when querying multi-site elements.
3535
| [prepareSubquery](#preparesubquery) | Prepares the element query and returns its subquery (which determines what elements will be returned).
3636
| [relatedTo](#relatedto) | Narrows the query results to only assets that are related to certain other elements.
@@ -722,7 +722,7 @@ $assets = \craft\elements\Asset::find()
722722
<a class="ref-defined-by" href="https://docs.craftcms.com/api/v4/craft-elements-db-elementquery.html#method-orderby" target="_blank" rel="noopener noreferer">Defined by <code>craft\elements\db\ElementQuery</code></a>
723723

724724
Determines the order that the assets should be returned in. (If empty, defaults to `dateCreated DESC,
725-
id`.)
725+
elements.id`.)
726726

727727

728728

docs/.artifacts/cms/4.x/categories.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
| [limit](#limit) | Determines the number of categories that should be returned.
3333
| [nextSiblingOf](#nextsiblingof) | Narrows the query results to only the category that comes immediately after another category in its structure.
3434
| [offset](#offset) | Determines how many categories should be skipped in the results.
35-
| [orderBy](#orderby) | Determines the order that the categories should be returned in. (If empty, defaults to `dateCreated DESC, id`, or the order defined by the category group if the [group](#group) or [groupId](#groupid) params are set to a single group.)
35+
| [orderBy](#orderby) | Determines the order that the categories should be returned in. (If empty, defaults to `dateCreated DESC, elements.id`, or the order defined by the category group if the [group](#group) or [groupId](#groupid) params are set to a single group.)
3636
| [positionedAfter](#positionedafter) | Narrows the query results to only categories that are positioned after another category in its structure.
3737
| [positionedBefore](#positionedbefore) | Narrows the query results to only categories that are positioned before another category in its structure.
3838
| [preferSites](#prefersites) | If [unique](#unique) is set, this determines which site should be selected when querying multi-site elements.
@@ -787,7 +787,7 @@ $categories = \craft\elements\Category::find()
787787
<a class="ref-defined-by" href="https://docs.craftcms.com/api/v4/craft-elements-db-elementquery.html#method-orderby" target="_blank" rel="noopener noreferer">Defined by <code>craft\elements\db\ElementQuery</code></a>
788788

789789
Determines the order that the categories should be returned in. (If empty, defaults to `dateCreated DESC,
790-
id`, or the order defined by the category group if the [group](#group) or [groupId](#groupid) params are set to a single group.)
790+
elements.id`, or the order defined by the category group if the [group](#group) or [groupId](#groupid) params are set to a single group.)
791791

792792

793793

docs/.artifacts/cms/4.x/entries.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
| [limit](#limit) | Determines the number of entries that should be returned.
4141
| [nextSiblingOf](#nextsiblingof) | Narrows the query results to only the entry that comes immediately after another entry in its structure.
4242
| [offset](#offset) | Determines how many entries should be skipped in the results.
43-
| [orderBy](#orderby) | Determines the order that the entries should be returned in. (If empty, defaults to `postDate DESC, id`, or the order defined by the section if the [section](#section) or [sectionId](#sectionid) params are set to a single Structure section.)
43+
| [orderBy](#orderby) | Determines the order that the entries should be returned in. (If empty, defaults to `postDate DESC, elements.id`, or the order defined by the section if the [section](#section) or [sectionId](#sectionid) params are set to a single Structure section.)
4444
| [positionedAfter](#positionedafter) | Narrows the query results to only entries that are positioned after another entry in its structure.
4545
| [positionedBefore](#positionedbefore) | Narrows the query results to only entries that are positioned before another entry in its structure.
4646
| [postDate](#postdate) | Narrows the query results based on the entries’ post dates.
@@ -1084,7 +1084,7 @@ $entries = \craft\elements\Entry::find()
10841084
<a class="ref-defined-by" href="https://docs.craftcms.com/api/v4/craft-elements-db-elementquery.html#method-orderby" target="_blank" rel="noopener noreferer">Defined by <code>craft\elements\db\ElementQuery</code></a>
10851085

10861086
Determines the order that the entries should be returned in. (If empty, defaults to `postDate DESC,
1087-
id`, or the order defined by the section if the [section](#section) or [sectionId](#sectionid) params are set to a single Structure section.)
1087+
elements.id`, or the order defined by the section if the [section](#section) or [sectionId](#sectionid) params are set to a single Structure section.)
10881088

10891089

10901090

0 commit comments

Comments
 (0)