Return the named migration or raise NodeNotFoundError.
(self, app_label, name_prefix)
| 140 | ) |
| 141 | |
| 142 | def get_migration(self, app_label, name_prefix): |
| 143 | """Return the named migration or raise NodeNotFoundError.""" |
| 144 | return self.graph.nodes[app_label, name_prefix] |
| 145 | |
| 146 | def get_migration_by_prefix(self, app_label, name_prefix): |
| 147 | """ |
no outgoing calls