class GraphQL::Language::SchemaDefinition
Defined in:
graphql/language/nodes.crConstructors
Instance Method Summary
-
#==(other : self)
Returns
true
if this reference is the same as other. - #directives : Array(Directive)
- #directives=(directives : Array(Directive))
-
#hash(hasher)
See
Object#hash(hasher)
- #mutation : Union(String, Nil)
- #mutation=(mutation : Union(String, Nil))
- #query : String
- #query=(query : String)
- #subscription : Union(String, Nil)
- #subscription=(subscription : Union(String, Nil))
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(query : String, mutation : Nil | String, subscription : Nil | String, directives, **rest)
#
Instance Method Detail
def ==(other : self)
#
Description copied from class Reference
Returns true
if this reference is the same as other. Invokes same?
.