Class: Spikard::QueryMutationConfig
- Inherits:
-
Object
- Object
- Spikard::QueryMutationConfig
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#complexity_limit ⇒ Integer?
Returns the value of attribute complexity_limit.
-
#depth_limit ⇒ Integer?
Returns the value of attribute depth_limit.
-
#introspection_enabled ⇒ Boolean?
Returns the value of attribute introspection_enabled.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize ⇒ QueryMutationConfig
constructor
A new instance of QueryMutationConfig.
Constructor Details
#initialize ⇒ QueryMutationConfig
Returns a new instance of QueryMutationConfig.
77 |
# File 'sig/types.rbs', line 77
def initialize: (?introspection_enabled: bool, ?complexity_limit: Integer, ?depth_limit: Integer) -> void
|
Instance Attribute Details
#complexity_limit ⇒ Integer?
Returns the value of attribute complexity_limit.
74 75 76 |
# File 'sig/types.rbs', line 74 def complexity_limit @complexity_limit end |
#depth_limit ⇒ Integer?
Returns the value of attribute depth_limit.
75 76 77 |
# File 'sig/types.rbs', line 75 def depth_limit @depth_limit end |
#introspection_enabled ⇒ Boolean?
Returns the value of attribute introspection_enabled.
73 74 75 |
# File 'sig/types.rbs', line 73 def introspection_enabled @introspection_enabled end |
Class Method Details
.default ⇒ QueryMutationConfig
78 |
# File 'sig/types.rbs', line 78
def self.default: () -> QueryMutationConfig
|