Class: GraphQL::IntValue

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

Instance Method Summary collapse

Instance Method Details

#valueObject



396
397
398
399
400
# File 'ext/graphql_parser/graphql_ruby.c', line 396

static VALUE int_value_get_value(VALUE self) {
  struct GraphQLAstIntValue *node;
  TypedData_Get_Struct(self, struct GraphQLAstIntValue, &int_value_type, node);
  return rb_str_new_cstr(GraphQLAstIntValue_get_value(node));
}