I have a simple many-to-many relationship between two tables with a join table between them. So, Table A, Table B, and Table Join AB. I have two goals. On the one hand, I want to display all records from Table A that are connected to Table B. On the other hand, I want to display all records from Table A that are not connected to any data in Table B. My goal is to link conditions from Table A to tasks in Table B. Multiple conditions can be assigned to multiple tasks. Then I want to create two galleries in Power Apps, where one gallery displays the already assigned conditions and the other gallery displays the unassigned conditions.

To retrieve all records from Table A that are connected to Table B, I use the following code:
Filter('Aufgaben Bedingungen'; Aufgabe.Aufgabe = ComboboxCanvas2.Selected.Aufgabe)
However, I cannot filter which records from Table A are not linked to Table B.