Class: GraphQL::IntValue
Instance Method Summary collapse
Instance Method Details
#value ⇒ Object
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));
}
|