Class: Spikard::QueryOnlyConfig
- Inherits:
-
Object
- Object
- Spikard::QueryOnlyConfig
- 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 ⇒ QueryOnlyConfig
constructor
A new instance of QueryOnlyConfig.
Constructor Details
#initialize ⇒ QueryOnlyConfig
Returns a new instance of QueryOnlyConfig.
52 |
# File 'sig/types.rbs', line 52
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.
49 50 51 |
# File 'sig/types.rbs', line 49 def complexity_limit @complexity_limit end |
#depth_limit ⇒ Integer?
Returns the value of attribute depth_limit.
50 51 52 |
# File 'sig/types.rbs', line 50 def depth_limit @depth_limit end |
#introspection_enabled ⇒ Boolean?
Returns the value of attribute introspection_enabled.
48 49 50 |
# File 'sig/types.rbs', line 48 def introspection_enabled @introspection_enabled end |
Class Method Details
.default ⇒ QueryOnlyConfig
53 |
# File 'sig/types.rbs', line 53
def self.default: () -> QueryOnlyConfig
|