Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

157
Views
GraphQL filter only checks with first index during query

The Query is to find all leads filtered by the userid which is stored in loadedby [String]

query LeadMany($filter: FilterFindManyLeadInput) {
  leadMany(filter: $filter) {
    name
    loadedby
}
}

The Filter variables

{
  "filter": {
    "loadedby": ["123"]
  }
}

Which returns the data correctly

{
  "data": {
    "leadMany": [
      {
        "name": "A",
        "loadedby": [
          "123",
          "789"
        ],

But when I want to sort it by the second index in the loadedby array it doesn't return. So the filter is only checking with the first index

{
  "filter": {
    "loadedby": ["789"]
  }
}
{
  "data": {
    "leadMany": []
}}

Using Graphql Compose with Mongoose plugin for schema definition.

about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!