(self)
| 37 | redis_graph.commit() |
| 38 | |
| 39 | def build_indices(self): |
| 40 | for field in fields: |
| 41 | create_node_exact_match_index(redis_graph, 'label_a', field) |
| 42 | create_node_exact_match_index(redis_graph, 'label_b', field) |
| 43 | wait_for_indices_to_sync(redis_graph) |
| 44 | |
| 45 | # Validate that all properties are indexed |
| 46 | def validate_indexed(self): |
no test coverage detected