intersects method

Expression intersects(
  1. Geography other
)
inherited

Returns an Expression that is true when this column's geometry intersects other — wraps ST_Intersects.

Implementation

Expression intersects(Geography other) => Expression(
  'ST_Intersects($this, ST_GeogFromText(${EscapedExpression(other.toEwkt())}))',
);