Delete record from bucket

influx: Influx CLI 2.3.0 (git: 88ba346) build_date: 2022-04-06T19:30:53Z

	influx query 'from(bucket:"bucket_mqtt") \
	|> range(start: 2022-08-29T09:30:00Z, stop: 2022-08-29T09:40:00Z) \
	|> filter(fn: (r) => r._field=="level_A" and r.topic=="tank")' \
	--token xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx \
	--org-id xxxxx

Above query returns one record which i want to remove

	influx delete --bucket bucket_mqtt \
	--start 2022-08-29T09:30:00Z \
	--stop 2022-08-29T09:40:00Z \
	--predicate '_measurment="mqtt_consumer" AND _field="level_A"' \
	--token xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
	--org-id xxxxx

command doesn’t return any errors but wrong record is still in bucket. Where is a my bug?

@parom1 InfluxDB 2.3 does not support deleting data by field (as noted in the delete documentation).