Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

graphql - how to filter a nested list

I am currently trying to filter a nested list based on a given id, but don't understand the syntax required. Although I have altered the entities and properties, this is what I am attempting

{
  companies{
    company{
      id,
      name,
      offices(where:{officeId: {eq: 2}}){
        officeId,
        address,
      }
    }
  }
}

In the returned data, I would like ALL companies and their offices where the office id is equal to 2. Is this possible and how would I do this?

like image 475
user3428422 Avatar asked Mar 15 '26 23:03

user3428422


1 Answers

This way you filter the offices inside all companies Try this

{
  companies(where:{company: {offices: {some: {officeId: {eq: 2}}}}}){
    company {
      id 
      name 
      offices {
        officeId
        address
      }
    }
  }
}
like image 135
Pascal Senn Avatar answered Mar 21 '26 23:03

Pascal Senn