class GraphQL::Language::VariableDefinition
Defined in:
graphql/language/nodes.crConstructors
Instance Method Summary
-
#==(other : self)
Returns
true
if this reference is the same as other. - #children
- #default_value : FValue
- #default_value=(default_value : FValue)
-
#hash(hasher)
See
Object#hash(hasher)
- #name : String
- #name=(name : String)
- #type : Type
- #type=(type : Type)
Instance methods inherited from class GraphQL::Language::ASTNode
children
children,
visit(block : ASTNode -> _)
visit
Macros inherited from class GraphQL::Language::ASTNode
values(args)
values
Constructor Detail
def self.new(name : String, type : GraphQL::Language::ASTNode, default_value : GraphQL::Language::FValue, **rest)
#
Instance Method Detail
def ==(other : self)
#
Description copied from class Reference
Returns true
if this reference is the same as other. Invokes same?
.