senorcodecat
02/20/2018, 6:42 PMquery {
  allUsers (filter: { AND: [
  	{bootCamps_every: {location: "Anaheim"}},
    {bootCampsAttended_none: {location: "Anaheim"}}
  ]}) {
    firstName
    lastName
    bootCamps {
      location
    }
    bootCampsAttended {
      location
    }
  }
}Fitch
02/20/2018, 7:12 PMconst query = `{
  allInfluencers(filter: {influencerName:"senor"}) {
    myNetworkPlatforms(filter:{networkUsername_not:null network:YOUTUBE}) {
      link
      network
      networkUsername
    }
   id
  }
}`Fitch
02/20/2018, 7:13 PMFitch
02/20/2018, 7:13 PMsenorcodecat
02/20/2018, 7:21 PMquery {
  allUsers (filter: {bootCamps_every: {location: "Anaheim"}}){
    id
    firstName
    lastName
    bootCamps (filter: {AND: [{location: "Anaheim"} {location_not: null}]}) {
      location
    }
    bootCampsAttended (filter: {location_not: "Anaheim"}) {
      location
    }
  }
}senorcodecat
02/20/2018, 7:21 PM{
        "bootCamps": [],
        "lastName": "Gavin",
        "firstName": "Patrick",
        "id": "ID HERE",
        "bootCampsAttended": []
      },Fitch
02/20/2018, 10:20 PMquery {
  allUsers {
    id
    firstName
    lastName
    bootCamps (filter: {location: "Anaheim" location_not: null}) {
      location
    }
    bootCampsAttended (filter: {location_not: "Anaheim"}) {
      location
    }
  }
}Fitch
02/20/2018, 10:20 PMFitch
02/20/2018, 10:21 PMsenorcodecat
02/20/2018, 11:02 PMsenorcodecat
02/20/2018, 11:03 PMsenorcodecat
02/20/2018, 11:03 PMsenorcodecat
02/20/2018, 11:04 PMsenorcodecat
02/20/2018, 11:47 PM