Class: GraphQL::FloatValue

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

Instance Method Summary collapse

Instance Method Details

#valueObject



419
420
421
422
423
# File 'ext/graphql_parser/graphql_ruby.c', line 419

static VALUE float_value_get_value(VALUE self) {
  struct GraphQLAstFloatValue *node;
  TypedData_Get_Struct(self, struct GraphQLAstFloatValue, &float_value_type, node);
  return rb_str_new_cstr(GraphQLAstFloatValue_get_value(node));
}