mirror of
				https://github.com/strapi/strapi.git
				synced 2025-11-03 19:36:20 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			312 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			312 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),
 | 
						|
});
 |