Class: GraphQL::BooleanValue

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

Instance Method Summary collapse

Instance Method Details

#valueObject



465
466
467
468
469
# File 'ext/graphql_parser/graphql_ruby.c', line 465

static VALUE boolean_value_get_value(VALUE self) {
  struct GraphQLAstBooleanValue *node;
  TypedData_Get_Struct(self, struct GraphQLAstBooleanValue, &boolean_value_type, node);
  return INT2BOOL(GraphQLAstBooleanValue_get_value(node));
}