class GraphQL::Language::DirectiveDefinition
Defined in:
graphql/language/nodes.crConstructors
Instance Method Summary
-
#==(other : self)
Returns
true
if this reference is the same as other. - #arguments : Array(InputValueDefinition)
- #arguments=(arguments : Array(InputValueDefinition))
- #children
- #description : Union(String, Nil)
- #description=(description : Union(String, Nil))
-
#hash(hasher)
See
Object#hash(hasher)
- #locations : Array(String)
- #locations=(locations : Array(String))
- #name : String
- #name=(name : String)
Instance methods inherited from class GraphQL::Language::ASTNode
children
children,
visit(block : ASTNode -> _)
visit
Constructor Detail
def self.new(name : String, arguments, locations, description : Nil | String, **rest)
#
Instance Method Detail
def ==(other : self)
#
Description copied from class Reference
Returns true
if this reference is the same as other. Invokes same?
.