This is super simple, and I don't get why it's not working.
{% set results = craft.entries.section('events').lightSwitchField('1') %}
Returns all entries in Events where the light switch field is green.
{% set results = craft.entries.section('events').lightSwitchField('0') %}
Returns all entries in Events. Period. Not all entries that the lightswitch is set to off.
I want to get all entries where the lightswitch field is off. Later I'm going to chain some other fields to the query too.
What have I not understood about how this works?
trueandfalsein place of'1'and'0'? – Joshua Baker Oct 14 '15 at 16:19