I would like to print this query as normal SQL.
$query = \Drupal::entityQuery('node');
Any help on this is appreciated.
jithinantony created an issue. See original summary.
This module is no longer maintained. Please see maintainer's note in the project description.
Try this:
$query = \Drupal::entityQuery('node') ->addTag('debug') ->execute();
Thank you! This works.
Comments
Comment #2
gabesulliceThis module is no longer maintained. Please see maintainer's note in the project description.
Comment #3
natemow commentedTry this:
Comment #4
jithinantony commentedThank you! This works.