Is it possible to delete a specific portion of document in Couchbase using N1QL?

Please let me know if its possible to delete an element from the children array based on the Id from the below sample document .
i.e. I need to delete all the details of Id=100( delete the entire element in the array)

{
	"results": [{
		"tutorial": {
			"type": "contact",
			"title": "Mr.",
			"fname": "Ian",
			"lname": "Taylor",
			"age": 56,
			"email": "ian@gmail.com",
			"children": [{
					"Id": "100",
					"Details": [{
						"fname": "Abama",
						"age": 17,
						"gender": "F"
					}]

				},
				{
					"Id": "101",
					"Details": [{
						"fname": "Alex",
						"age": 17,
						"gender": "M"
					}]

				}
			],
			"hobbies": [
				"golf",
				"surfing"
			],
			"relation": "cousin"
		}
	}]
}