FusionAuth
    • Home
    • Categories
    • Recent
    • Popular
    • Pricing
    • Contact us
    • Docs
    • Login
    1. Home
    2. mohyddin.tash
    3. Posts
    M
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 2
    • Best 1
    • Controversial 0
    • Groups 0

    Posts made by mohyddin.tash

    • RE: FusionAuth Get all users not returning all users

      @joshua Thank you for updating the docs. I can confirm simply increasing the numberOfResults indeed returns the rest of the users!

      posted in General Discussion
      M
      mohyddin.tash
    • FusionAuth Get all users not returning all users

      I am using the query below to get all users. In the fusion auth admin dashboard there are 29 users for that application_id however only 25 users come back. Note: in the response also it says "total: 29" but only 25 users are in the response.

      {
        "bool" : {
          "must" : [ {
            "nested" : {
              "path" : "registrations",
              "query" : {
                "bool" : {
                  "must" : [ {
                    "match" : {
                      "registrations.applicationId" : "<my-app-id>"
                    }
                  } ]
                }
              }
            }
          } ]
        }
      }
      

      I can't really tell what is going on. Only thing I notice is that in the admin dashboard the paging shows 25 users per page, but I don't think this has to do with the problem?

      posted in General Discussion
      M
      mohyddin.tash