You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 29, 2026. It is now read-only.
format!("This field is nullable but you're not wrapping the type in Option. Did you mean Option<{}>", provided_type),
233
+
format!("This field is nullable but you're not wrapping the type in MaybeUndefined or Option. Did you mean cynic::MaybeUndefined<{}> or Option<{}>", provided_type, provided_type),
format!("Recursive types must be wrapped in Option. Did you mean Option<{}>", provided_type)
243
+
format!("Recursive types must be wrapped in MaybeUndefined or Option. Did you mean cynic::MaybeUndefined<{}> or Option<{}>", provided_type, provided_type)
244
244
}
245
245
TypeValidationError::SpreadOnOption{ .. } => "You can't spread on an optional field".to_string(),
246
246
TypeValidationError::SpreadOnVec{ .. } => "You can't spread on a list field".to_string(),
0 commit comments