mirror of
				https://github.com/graphql-python/graphene-django.git
				synced 2025-10-31 16:07:36 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			204 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			204 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from django.conf.urls import url
 | |
| 
 | |
| from ..views import GraphQLView
 | |
| 
 | |
| urlpatterns = [
 | |
|     url(r"^graphql/batch", GraphQLView.as_view(batch=True)),
 | |
|     url(r"^graphql", GraphQLView.as_view(graphiql=True)),
 | |
| ]
 |