Returning profile values where necessary will remove the need to compute heavy joins unless the user actually wants all the data. Now Publication points at OrderProfiles which don't expose the sequences Orders->Sequence->EntryProfile avoids including the full `text` for the sequence.
14 lines
333 B
Python
14 lines
333 B
Python
from .data import Publication, PublicationProfile, Order, Sequence, Entry, OrderProfile
|
|
from .service import PublicationService
|
|
from .repo import PublicationRepo
|
|
|
|
__all__ = [
|
|
'Publication',
|
|
'PublicationProfile',
|
|
'Order',
|
|
'OrderProfile',
|
|
'Sequence',
|
|
'Entry',
|
|
'PublicationService',
|
|
'PublicationRepo',
|
|
]
|