Class: GraphQL::ObjectValue
- Defined in:
- ext/graphql_parser/graphql_ruby.c
Instance Method Summary collapse
Instance Method Details
#fields_size ⇒ Object
534 535 536 537 538 |
# File 'ext/graphql_parser/graphql_ruby.c', line 534
static VALUE object_value_get_fields_size(VALUE self) {
struct GraphQLAstObjectValue *node;
TypedData_Get_Struct(self, struct GraphQLAstObjectValue, &object_value_type, node);
return INT2FIX(GraphQLAstObjectValue_get_fields_size(node));
}
|