In my collection I have several documents where the "token" field is null.
query := client.Collection("records").Where("token", "==", nil)
In Go, the query above returns zero documents.
What is the correct query to fetch all documents where the "token" field is null or missing?