Created
February 8, 2018 06:28
-
-
Save midnai/5a1baeb26f6cb9c1effdcc45cb6a8817 to your computer and use it in GitHub Desktop.
Some drupal 8 conditions
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$query->condition('myfield', array(1, 2, 3), 'IN'); | |
$query->condition('myfield', array(5, 10), 'BETWEEN'); | |
$query->condition('myfield', array(1, 2, 3), 'NOT IN'); | |
$query->isNull('myfield'); | |
$query->isNotNull('myfield'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment