mirror of
				https://github.com/graphql-python/graphene.git
				synced 2025-11-04 09:57:41 +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
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 |