Method: TinyGQL::Nodes::EnumTypeDefinition#children
- Defined in:
- lib/tinygql/nodes.rb
#children ⇒ Object
796 797 798 |
# File 'lib/tinygql/nodes.rb', line 796 def children ary = []; ary << description if description; ary.concat(directives) if directives; ary.concat(enum_value_definition) if enum_value_definition; ary end |