Values.PredicateStores information for generating Amplify DataStore queries. Use a Predicate to retrieve a subset of the data in a collection.
type nonrec t = {or_ : PredicateList.t option;A list of predicates to combine logically.
*)and_ : PredicateList.t option;A list of predicates to combine logically.
*)field : String_.t option;The field to query.
*)operator : String_.t option;The operator to use to perform the evaluation.
*)operand : String_.t option;The value to use when performing the evaluation.
*)operandType : OperandType.t option;The type of value to use when performing the evaluation.
*)}val make :
?or_:PredicateList.t ->
?and_:PredicateList.t ->
?field:String_.t ->
?operator:String_.t ->
?operand:String_.t ->
?operandType:OperandType.t ->
unit ->
t