Skip to main content

WhereConditions

Dynamic WHERE conditions for queries.

input WhereConditions {
column: String
operator: SQLOperator
value: Mixed
AND: [WhereConditions!]
OR: [WhereConditions!]
HAS: WhereConditionsRelation
}

Fields

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.

WhereConditions.AND ● [WhereConditions!] list input

A set of conditions that requires all conditions to match.

WhereConditions.OR ● [WhereConditions!] list input

A set of conditions that requires at least one condition to match.

WhereConditions.HAS ● WhereConditionsRelation input

Check whether a relation exists. Extra conditions or a minimum amount can be applied.

Member Of

WhereConditions input ● WhereConditionsRelation input