I have a MQTT client that wants to subscribe to the following topics
- node1/data/updates
- node1/data/delta
- node1/data
Of course I have multiple nodes, so I have to use wildcards as explained here: https://www.hivemq.com/blog/mqtt-essentials-part-5-mqtt-topics-best-practices/
I tried the following topic names
- +/data/+
- +/data/#
- +/data# (I was desperat)
Using the above expressions 1 and 2 I did not receive messages for the topic node1/data.
Is there a way to do this with a single subscription?