diff --git a/src/models/user/user.controller.js b/src/models/user/user.controller.js
index 37bb7814f25e3300dd3b2c763d670ba185b21220..e64460c96710ee9013a3afed4095dac7ff732e90 100644
--- a/src/models/user/user.controller.js
+++ b/src/models/user/user.controller.js
@@ -83,7 +83,7 @@ const getUser = async (id, options = {}) => {
 
 const getDisplayName = async user => user.getDisplayName()
 
-const getUsers = async (options = {}) => {
+const getUsers = async (data = {}, options = {}) => {
   try {
     const { trx, ...restOptions } = options
     return useTransaction(
@@ -91,7 +91,7 @@ const getUsers = async (options = {}) => {
         logger.info(
           `${USER_CONTROLLER} getUsers: fetching all users based on provided options ${restOptions}`,
         )
-        return User.find({}, { trx: tr, ...restOptions })
+        return User.find(data, { trx: tr, ...restOptions })
       },
       { trx, passedTrxOnly: true },
     )
diff --git a/src/models/user/user.graphql b/src/models/user/user.graphql
index 1a9ba208ea44a4c0695af214930788186dbfd94b..78b9a690e05cbbcd8762d04b48d5f85fe1f39268 100644
--- a/src/models/user/user.graphql
+++ b/src/models/user/user.graphql
@@ -68,9 +68,13 @@ input UpdatePasswordInput {
   newPassword: String!
 }
 
+input UsersQueryOptions {
+  isActive: Boolean
+}
+
 extend type Query {
   user(id: ID): User
-  users(options: PageInput): Users!
+  users(data: UsersQueryOptions, options: PageInput): Users!
   currentUser: User!
 }
 
diff --git a/src/models/user/user.resolvers.js b/src/models/user/user.resolvers.js
index 8e0e282f2b8dec390b8bb5dada78f7d9e48a6a28..27680f7e5a9664599f5c9449cd842bbf9c90d898 100644
--- a/src/models/user/user.resolvers.js
+++ b/src/models/user/user.resolvers.js
@@ -38,10 +38,10 @@ const userResolver = async (_, { id }, ctx) => {
   }
 }
 
-const usersResolver = async (_, { options }, ctx) => {
+const usersResolver = async (_, { data, options }, ctx) => {
   try {
     logger.error(`${USER_RESOLVER} users`)
-    return getUsers(options)
+    return getUsers(data, options)
   } catch (e) {
     logger.error(`${USER_RESOLVER} users: ${e.message}`)
     throw new Error(e)