mirror of
				https://github.com/taigrr/yq
				synced 2025-01-18 04:53:17 -08:00 
			
		
		
		
	Better add documentation
This commit is contained in:
		
							parent
							
								
									70a1c60d7b
								
							
						
					
					
						commit
						30c269a66c
					
				| @ -67,23 +67,19 @@ will output | ||||
| - 2 | ||||
| ``` | ||||
| 
 | ||||
| ## Add object to array | ||||
| ## Add new object to array | ||||
| Given a sample.yml file of: | ||||
| ```yaml | ||||
| a: | ||||
|   - 1 | ||||
|   - 2 | ||||
| c: | ||||
|   cat: meow | ||||
|   - dog: woof | ||||
| ``` | ||||
| then | ||||
| ```bash | ||||
| yq eval '.a + .c' sample.yml | ||||
| yq eval '.a + {"cat": "meow"}' sample.yml | ||||
| ``` | ||||
| will output | ||||
| ```yaml | ||||
| - 1 | ||||
| - 2 | ||||
| - dog: woof | ||||
| - cat: meow | ||||
| ``` | ||||
| 
 | ||||
|  | ||||
| @ -38,11 +38,11 @@ var addOperatorScenarios = []expressionScenario{ | ||||
| 		}, | ||||
| 	}, | ||||
| 	{ | ||||
| 		description: "Add object to array", | ||||
| 		document:    `{a: [1,2], c: {cat: meow}}`, | ||||
| 		expression:  `.a + .c`, | ||||
| 		description: "Add new object to array", | ||||
| 		document:    `a: [{dog: woof}]`, | ||||
| 		expression:  `.a + {"cat": "meow"}`, | ||||
| 		expected: []string{ | ||||
| 			"D0, P[a], (!!seq)::[1, 2, {cat: meow}]\n", | ||||
| 			"D0, P[a], (!!seq)::[{dog: woof}, {cat: meow}]\n", | ||||
| 		}, | ||||
| 	}, | ||||
| 	{ | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user