INNER CODE UNIT · Rust
max_object_types
apollographql/apollo-rs · crates/apollo-smith/src/lib.rs:194
pub fn max_object_types(mut self, max: usize) -> Self {
self.max_object_types = max;
self
}
/// Set the maximum number of union type definitions (default 50).
pub fn max_union_types(mut self, max: usize) -> Self {
self.max_union_types = max;
self
}
/// Set the maximum number of input object type definitions (default 50).
pub fn max_input_object_types(mut self, max: usize) -> Self {
self.max_input_object_types = max;
self
}
/// Set the maximum number of fragment definitions (default 50).