2026-01-26 10:30:49 -05:00

92 lines
2.3 KiB
Python

from backend.graphql_api.inputs.accounts.accounts import (
AccountCreateInput,
AccountUpdateInput,
AccountFilterInput
)
from backend.graphql_api.inputs.customers.customers import (
CustomerCreateInput,
CustomerUpdateInput,
CustomerFilterInput
)
from backend.graphql_api.inputs.services.services import (
ServiceCreateInput,
ServiceUpdateInput,
ServiceFilterInput
)
from backend.graphql_api.inputs.projects.projects import (
ProjectCreateInput,
ProjectUpdateInput,
ProjectFilterInput
)
from backend.graphql_api.inputs.invoices.invoices import (
InvoiceCreateInput,
InvoiceUpdateInput,
InvoiceFilterInput
)
from backend.graphql_api.inputs.labor.labor import (
LaborCreateInput,
LaborUpdateInput,
LaborFilterInput
)
from backend.graphql_api.inputs.profiles.profiles import (
ProfileCreateInput,
ProfileUpdateInput,
ProfileSearchInput
)
from backend.graphql_api.inputs.reports.reports import (
ReportCreateInput,
ReportUpdateInput,
ReportFilterInput
)
from backend.graphql_api.inputs.revenues.revenues import (
RevenueCreateInput,
RevenueUpdateInput,
RevenueFilterInput
)
from backend.graphql_api.inputs.schedules.schedules import (
ScheduleCreateInput,
ScheduleUpdateInput,
ScheduleFilterInput
)
from backend.graphql_api.inputs.punchlists.punchlists import (
PunchlistCreateInput,
PunchlistUpdateInput,
PunchlistFilterInput
)
__all__ = [
'AccountCreateInput',
'AccountUpdateInput',
'AccountFilterInput',
'CustomerCreateInput',
'CustomerUpdateInput',
'CustomerFilterInput',
'ServiceCreateInput',
'ServiceUpdateInput',
'ServiceFilterInput',
'ProjectCreateInput',
'ProjectUpdateInput',
'ProjectFilterInput',
'InvoiceCreateInput',
'InvoiceUpdateInput',
'InvoiceFilterInput',
'LaborCreateInput',
'LaborUpdateInput',
'LaborFilterInput',
'ProfileCreateInput',
'ProfileUpdateInput',
'ProfileSearchInput',
'ReportCreateInput',
'ReportUpdateInput',
'ReportFilterInput',
'RevenueCreateInput',
'RevenueUpdateInput',
'RevenueFilterInput',
'ScheduleCreateInput',
'ScheduleUpdateInput',
'ScheduleFilterInput',
'PunchlistCreateInput',
'PunchlistUpdateInput',
'PunchlistFilterInput'
]