Class: GraphQL::Name

Inherits:
Node
  • Object
show all
Defined in:
ext/graphql_parser/graphql_ruby.c

Instance Method Summary collapse

Instance Method Details

#valueObject



687
688
689
690
691
# File 'ext/graphql_parser/graphql_ruby.c', line 687

static VALUE name_get_value(VALUE self) {
  struct GraphQLAstName *node;
  TypedData_Get_Struct(self, struct GraphQLAstName, &name_type, node);
  return rb_str_new_cstr(GraphQLAstName_get_value(node));
}