I have a model with these attributes:
attributes: {
title: {
type: 'string'
},
tags: {
type: 'array'
}
}
How can I query whether or not the tags
attribute contains some value? For example, I would like to select all the records that have the tags blue
and green
.
Is this even possible with Waterline? I couldn't find any documentation regarding this topic.