WhereConditions
Dynamic WHERE conditions for queries.
input WhereConditions {
AND: [WhereConditions!]
HAS: WhereConditionsRelation
OR: [WhereConditions!]
column: String
operator: SQLOperator
value: Mixed
}
Fields
WhereConditions.AND
● [WhereConditions!]
list input
A set of conditions that requires all conditions to match.
WhereConditions.HAS
● WhereConditionsRelation
input
Check whether a relation exists. Extra conditions or a minimum amount can be applied.
WhereConditions.OR
● [WhereConditions!]
list input
A set of conditions that requires at least one condition to match.
WhereConditions.column
● String
scalar
The column that is used for the condition.
WhereConditions.operator
● SQLOperator
enum
The operator that is used for the condition.
WhereConditions.value
● Mixed
scalar
The value that is used for the condition.
Member Of
WhereConditions
input ● WhereConditionsRelation
input