Skip to content

Instantly share code, notes, and snippets.

@mkorostoff
Last active August 29, 2015 14:09
Show Gist options
  • Save mkorostoff/cda7aaf9d32f4df2d8cc to your computer and use it in GitHub Desktop.
Save mkorostoff/cda7aaf9d32f4df2d8cc to your computer and use it in GitHub Desktop.
<?php
//Drupal 8 version
$query = \Drupal::entityQuery('node');
$next = $query->condition('created', $created_time, '>')
->condition('type', 'article')
->sort('created', 'ASC')
->range(0, 1)
->execute();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment