mirror of
				https://github.com/graphql-python/graphene.git
				synced 2025-10-31 07:57:26 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			213 B
		
	
	
	
		
			GraphQL
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			213 B
		
	
	
	
		
			GraphQL
		
	
	
	
	
	
| query {
 | |
|   empire {
 | |
|     id
 | |
|     name
 | |
|     ships(first:2) {
 | |
|       edges {
 | |
|         node {
 | |
|           id
 | |
|           name
 | |
|         }
 | |
|       }
 | |
|     }
 | |
|   }
 | |
|   node(id:"U2hpcDo4") {
 | |
|     id
 | |
|     ... on Ship {
 | |
|       name
 | |
|     }
 | |
|   }
 | |
| }
 |