You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{% setcontent pages = 'pages' where { author: '1 OR 4' } %}
You can use {% setcontent pages = 'pages' where { author: '1 || 4' } %}
{% setcontent pages = 'pages' where { id: '>5 AND < 10' } %}
You can use {% setcontent pages = 'pages' where { id: '>5 && < 10' } printquery %}
SELECT content FROM Bolt\Entity\Content content WHERE content.contentType = :ct0 AND ((content.id > :id_1 AND content.id < :id_2) AND content.status = :status_1) ORDER BY content.publishedAt DESC
ct0: pages
id_1: 5
id_2: 10
status_1: published
(even with that superfluous space, which was fixed in #1621)
The following should work:
The text was updated successfully, but these errors were encountered: