Class: GraphQL::ListType
Instance Method Summary collapse
Instance Method Details
#type ⇒ Object
641 642 643 644 645 |
# File 'ext/graphql_parser/graphql_ruby.c', line 641
static VALUE list_type_get_type(VALUE self) {
struct GraphQLAstListType *node;
TypedData_Get_Struct(self, struct GraphQLAstListType, &list_type_type, node);
return TypedData_Wrap_Struct(type_class, &type_type, (void*)GraphQLAstListType_get_type(node));
}
|