def find_by_id()

in solutions_builder/template_root/{{common_path if has_common}}/src/common/models/example.py [0:0]


  def find_by_id(cls, id):
    try:
      example = Example.get_by_doc_id(id)
    except ModelNotFoundError:
      return None

    return example