Skip to main content

OrdinancesWhereHasInput

One entry in the unified whereHas filter for ordinances.

input OrdinancesWhereHasInput {
relation: OrdinancesRelations!
mode: WhereHasMatchMode
ids: [ID!]
}

Fields

OrdinancesWhereHasInput.relation ● OrdinancesRelations! non-null enum

The relation being constrained.

OrdinancesWhereHasInput.mode ● WhereHasMatchMode enum

How the ids list should be matched.

OrdinancesWhereHasInput.ids ● [ID!] list scalar

The related model ids to match.

  • ANY with ids: matches rows whose relation includes at least one id.
  • ANY without ids (omitted or empty): degenerates to an existence check, matching rows that have any related entry at all.
  • ALL with ids: matches rows whose relation includes every id (one whereHas per id).
  • ALL without ids: no-op (no constraint applied).
  • NOT_ALL with ids: matches rows missing at least one id.
  • NOT_ALL without ids: no-op.
  • NONE: ids ignored; matches rows with no related entries.

Member Of

ordinances query