Collections filtering
Operators
Name
Type
Description
The any operator
any operatorquery {
assets(
where: {
stringAttributes: {
any: {_and: [
{stringValue: {contains: "Personal"}}
{createdBy: {firstName: {eq: "Admin"}}}
]}}
}
) {
id
fullName
stringAttributes {
stringValue
createdBy {
firstName
}
}
}
}The all operator
all operatorThe none operator
none operatorThe empty operator
empty operatorThe typePublicId operator
typePublicId operatorLast updated
Was this helpful?