mirror of
				https://github.com/graphql-python/graphene.git
				synced 2025-11-01 00:17:26 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			253 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			253 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import {
 | |
|   GraphQLObjectType,
 | |
|   GraphQLString,
 | |
|   GraphQLSchema,
 | |
| } from 'graphql';
 | |
| 
 | |
| 
 | |
| export default new GraphQLSchema({
 | |
|   query: new GraphQLObjectType({
 | |
|     name: 'Query',
 | |
|     fields: () => ({
 | |
|       __emptyField: {type: GraphQLString},
 | |
|     }),
 | |
|   }),
 | |
| });
 |