mirror of
				https://github.com/graphql-python/graphene-django.git
				synced 2025-11-04 09:57:53 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			198 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			198 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from django.urls import path
 | 
						|
 | 
						|
from ..views import GraphQLView
 | 
						|
 | 
						|
urlpatterns = [
 | 
						|
    path("graphql/batch", GraphQLView.as_view(batch=True)),
 | 
						|
    path("graphql", GraphQLView.as_view(graphiql=True)),
 | 
						|
]
 |