Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: rotsmaneYou can use global graph parameters to achieve this.
1. In the bre go to graph > edit paramters.
2. In this window you can create a new parameter in the parameter declarations tab. Set this to be a string param. Call it something like "VegetableField".
3. In the parameters 1 tab, enter a value for this parameter, so for now it would be "Field_Vegetable", the new name.
4. In your filter, don't refer to the actual name of the field, but instead use the new parameter you have created.
So, for example in your filter node you would use the following code to emit the Field_Vegetable field:
emit {{^VegetableField^}}
Then, whenever that field name changes in the future you can simply update your global paramter to reflect the change, rather than having to change every node.