If you want to use multiple relationship types in MATCH, you can use the pipe symbol (|).
Here is an example:
MATCH g=(p:Peron)<-[:produced_by|directed_by]-(m:Movie)
RETURN g
In the above example, I am using two relationship types, produced_by and directed_by, to select data from the graph. The above example is not based on real data. You can change node labels and relationship types to run it on real data.