Multiple filters giving unexpected result
Say I have a data model similar to this:
I create some records and perform this query (note that
This is returning both user records. My understanding is that multiple Ash.Query.filter calls are combined with
I create some records and perform this query (note that
create! is my own simple factory helper)This is returning both user records. My understanding is that multiple Ash.Query.filter calls are combined with
and, so the first filter should constrain the results to 1 record at most. Is there anything I am doing wrong in the way my filters are defined?