validate_enum_literals_in_operators
If enabled, validate enum literals in operators likeIN, NOT IN, ==, != against the enum type and throw an exception if the literal is not a valid enum value.
validate_mutation_query
Validate mutation queries before accepting them. Mutations are executed in the background, and running an invalid query will cause mutations to get stuck, requiring manual intervention. Only change this setting if you encounter a backward-incompatible bug.validate_polygons
Enables or disables throwing an exception in the pointInPolygon function, if the polygon is self-intersecting or self-tangent. Possible values:- 0 — Throwing an exception is disabled.
pointInPolygonaccepts invalid polygons and returns possibly incorrect results for them. - 1 — Throwing an exception is enabled.