drupal2 Min Read

Drupal Code to run Database Query to Fetch Active User Details, Count, Pagination

Gorav Singal

December 30, 2021

TL;DR

Use Drupal entityQuery to fetch active users with pagination, then serialize and write the results to a JSON file.

Drupal Code to run Database Query to Fetch Active User Details, Count, Pagination

Introduction

This post shows code to run database query to fetch active user details, its count, with pagination and write its result json to a file.

Get Active Users

We will use \Drupal::entityQuery to run database query

$query = \Drupal::entityQuery('user')
    ->condition('status', '1');
$uids = $query->execute();

foreach ($uids as $uid) {
	$user = user_load($uid);
  print_r($user);
}

Above code will just print the result on console or browser.

Get Active Users with Pagination

If your users count is huge, We should use pagination. Else, we may get out of memory kind of errors. Or, database may become unresponsive.

$query = \Drupal::entityQuery('user')
    ->condition('status', '1')
    ->range(0, 1000);
$uids = $query->execute();

foreach ($uids as $uid) {
	$user = user_load($uid);
  print_r($user);
}

Notice the range(offset, count) function. Assume you have 5000 users, you will run above query 5 times, with following range parameters.

range(0, 1000)
range(1000, 1000);
range(2000, 1000);
range(3000, 1000);
range(4000, 1000);

Get Count of Users Based on Condition

//get total users
$query = \Drupal::entityQuery('user')
    ->condition('status', '1');

$total_users = $query->count()->execute();
print_r($total_users);

You can also run above query to get the total count of users, based on query condition.

Get Active Users and Write its JSON to a File

We may want to convert the output to JSON and write it to file.

$query = \Drupal::entityQuery('user')
    ->condition('status', '1')
    ->range(0, 1000);
$uids = $query->execute();

$baseFolder = '/your_folder/';

foreach ($uids as $uid) {
  $user = user_load($uid);
  $data = \Drupal::service('serializer')->serialize($user, 'json', ['plugin_id' => 'entity']);

  $filename = $baseFolder.$uid.'.json';
  print('<br/>Writing to file: '.$filename);
  file_put_contents($filename, $data); 
}

We first need to convert the object to json, it is done by:

\Drupal::service('serializer')->serialize($user, 'json', ['plugin_id' => 'entity'])

Then, we are creating a separate file based on uid of user.

Also see: Drupal Code to Fetch User Accessed Website within Last One Year

Share

Related Posts

Drupal Mysql Query to Fetch User Field Details and its Alias

Drupal Mysql Query to Fetch User Field Details and its Alias

Introduction In this posr, we will see how to prepare mysql query to fetch user…

Drupal DB Query Code to Fetch Active Users and Accessed Website Within last One Year

Drupal DB Query Code to Fetch Active Users and Accessed Website Within last One Year

Introduction Here, we will see the drupal code to fetch all the active users…

Drupal 8 - How to Theme Form and its Fields with reordering fields

Drupal 8 - How to Theme Form and its Fields with reordering fields

Introduction In this post, we will see how to theme form and its fields…

Drupal 8 - How to create a Page with admin access and create its menu entry in Reports (No Coding)

Drupal 8 - How to create a Page with admin access and create its menu entry in Reports (No Coding)

Introduction I needed a report page, where I wanted to have some information…

Drupal 7 - Code for Exporting all your content nodes in json files

Drupal 7 - Code for Exporting all your content nodes in json files

Introduction When I migrated all of my drupal-7 website to drupal-8, I wrote…

Drupal: How to detect country and redirect to country specific website by using Cloudflare

Drupal: How to detect country and redirect to country specific website by using Cloudflare

Introduction Assume you have a drupal website and using cloudflare. You are…

Latest Posts

AI Video Generation in 2025 — Models, Costs, and How to Build a Cost-Effective Pipeline

AI Video Generation in 2025 — Models, Costs, and How to Build a Cost-Effective Pipeline

AI video generation went from “cool demo” to “usable in production” in 2024-202…

AI Models in 2025 — Cost, Capabilities, and Which One to Use

AI Models in 2025 — Cost, Capabilities, and Which One to Use

Choosing the right AI model is one of the most impactful decisions you’ll make…

AI Image Generation in 2025 — Models, Costs, and How to Optimize Spend

AI Image Generation in 2025 — Models, Costs, and How to Optimize Spend

Generating one image with AI costs between $0.002 and $0.12. That might sound…

AI Coding Assistants in 2025 — Every Tool Compared, and Which One to Actually Use

AI Coding Assistants in 2025 — Every Tool Compared, and Which One to Actually Use

Two years ago, AI coding meant one thing: GitHub Copilot autocompleting your…

AI Agents Demystified — It's Just Automation With a Better Brain

AI Agents Demystified — It's Just Automation With a Better Brain

Let’s cut through the noise. If you read Twitter or LinkedIn, you’d think “AI…

Supply Chain Security — Protecting Your Software Pipeline

Supply Chain Security — Protecting Your Software Pipeline

In 2024, a single malicious contributor nearly compromised every Linux system on…