MCPcopy Index your code
hub / github.com/diffgram/diffgram / get_child_files

Method get_child_files

shared/database/source_control/file.py:456–461  ·  view source on GitHub ↗
(self, session: Session)

Source from the content-addressed store, hash-verified

454 return file
455
456 def get_child_files(self, session: Session) -> List['File']:
457 child_files = session.query(File).filter(
458 File.parent_id == self.id,
459 File.state != "removed"
460 ).all()
461 return child_files
462
463 def create_frame_packet_map(self, session):
464 """

Callers 6

get_child_files_coreFunction · 0.80
remove_coreFunction · 0.80
__copy_fileMethod · 0.80
transfer_child_filesFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected