INNER CODE UNIT · Rust

max_interface_types

apollographql/apollo-rs · crates/apollo-smith/src/lib.rs:188

    pub fn max_interface_types(mut self, max: usize) -> Self {
        self.max_interface_types = max;
        self
    }

    /// Set the maximum number of object type definitions (default 50).
    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).

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…