FQL v4 will be decommissioned on June 30, 2025. Ensure that you complete your migration from FQL v4 to FQL v10 by that date. For more details, review the migration guide. Contact support@fauna.com with any questions. |
ContainsValue
This reference topic applies to FQL v4. Go to this page for the latest FQL v10 reference topics. |
ContainsValue( value, in )
containsValue( value, in )
ContainsValue( value, in )
ContainsValue( value, in )
ContainsValue( value, in )
Description
The ContainsValue
function returns true
if the specified value
exists
within the result of the in
expression, or false
otherwise.
ContainsValue
is useful when you need to distinguish between object,
arrays, or documents that contain a value (regardless of field name) and
those that do not.
ContainsValue
does not evaluate nested arrays or objects. If you need to
determine whether a value exists within a complex structure, the
Select
function can be used to target the appropriate section
within a structure.
Parameters
Parameter | Type | Definition and Requirements |
---|---|---|
|
Any |
A value of any type. |
|
Any |
A value of any type. |
Examples
The following query returns true
because the value 3
exists
in the provided object:
true
True
true
BooleanV(True)
true
The following query returns false
because the value 7
does not exist
in the provided object:
false
False
false
BooleanV(False)
false
Is this article helpful?
Tell Fauna how the article can be improved:
Visit Fauna's forums
or email docs@fauna.com
Thank you for your feedback!