I have implemented a hook_nodeapi in a Drupal 6 site. When looking into the node, I found out the node->taxonomy is not loaded. This means taxonomy_nodeapi is not invoked before my hook even though the weigh of my module is greater than taxonomy.
Edit Adding code:
hook_nodeapi(&$node, $op, $arg = 0) {
if ($node->type == 'articles' && $op == 'load') {
dpm($node)
}
I think this may be default behaviors. Invoking taxonomy_nodeapi() directly works for me but I am still wondering as to why this is the case.