mirror of
				https://github.com/strapi/strapi.git
				synced 2025-10-31 09:56:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			314 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			314 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 'use strict';
 | |
| 
 | |
| const args = require('./args');
 | |
| const scalars = require('./scalars');
 | |
| const types = require('./types');
 | |
| const helpers = require('./helpers');
 | |
| 
 | |
| module.exports = (context) => ({
 | |
|   args: args(context),
 | |
|   scalars: scalars(context),
 | |
|   buildInternalTypes: types(context),
 | |
|   helpers: helpers(context),
 | |
| });
 | 
