mirror of
				https://github.com/graphql-python/graphene-django.git
				synced 2025-11-04 18:08:01 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			7 lines
		
	
	
		
			181 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			181 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from django.conf.urls import url
 | 
						|
 | 
						|
from ..views import GraphQLView
 | 
						|
from .schema_view import schema
 | 
						|
 | 
						|
urlpatterns = [url(r"^graphql", GraphQLView.as_view(schema=schema, pretty=True))]
 |