```query { allUsers (filter: { AND: [ {bootCa...
# prisma-whats-new
s
Copy code
query {
  allUsers (filter: { AND: [
  	{bootCamps_every: {location: "Anaheim"}},
    {bootCampsAttended_none: {location: "Anaheim"}}
  ]}) {
    firstName
    lastName
    bootCamps {
      location
    }
    bootCampsAttended {
      location
    }
  }
}
f
Copy code
const query = `{
  allInfluencers(filter: {influencerName:"senor"}) {
    myNetworkPlatforms(filter:{networkUsername_not:null network:YOUTUBE}) {
      link
      network
      networkUsername
    }
   id
  }
}`
should be a type like _not:null
or networkUsername:null
s
So, even with this, it's still returning null values
Copy code
query {
  allUsers (filter: {bootCamps_every: {location: "Anaheim"}}){
    id
    firstName
    lastName
    bootCamps (filter: {AND: [{location: "Anaheim"} {location_not: null}]}) {
      location
    }
    bootCampsAttended (filter: {location_not: "Anaheim"}) {
      location
    }
  }
}
Still get a result like
Copy code
{
        "bootCamps": [],
        "lastName": "Gavin",
        "firstName": "Patrick",
        "id": "ID HERE",
        "bootCampsAttended": []
      },
f
Copy code
query {
  allUsers {
    id
    firstName
    lastName
    bootCamps (filter: {location: "Anaheim" location_not: null}) {
      location
    }
    bootCampsAttended (filter: {location_not: "Anaheim"}) {
      location
    }
  }
}
Try that .. and if not .. back it up to only 1 filter .. and then add on
pay attention to what prefills as you type .. make sure it is available at the level / schema
s
Yep, tried that multiple times. Wondering how the different levels interact with one another. Trying now.
Still not working. it's returning all users
So odd
Looks like it's not filtering relations
Confirmed. Filters are not working on relations. It's as if they don't exist.