From 75a2880e588339211ffeb03c6df0f462d3eb1d67 Mon Sep 17 00:00:00 2001 From: Zack Behringer Date: Wed, 6 Dec 2023 12:49:42 -0500 Subject: [PATCH] feat: move main services from EMS to nionic (#378) * switched to using Nionic to retrieve main services and its data * updated main services data queries to sum usage for a time for fields with the same name * updated main services data query to require time parameters * switched metric data query to go through Facility, now requiring time parameters * refactored GraphQL interface to use schema and code generation where possible * fixed EMS data export command --- .pre-commit-config.yaml | 4 + CONTRIBUTING.md | 13 + contxt/cli/commands/ems.py | 52 +- contxt/cli/commands/metrics.py | 19 +- contxt/generated/nionic_queries.py | 79 + contxt/generated/nionic_schema.py | 17723 ++++ contxt/models/ems.py | 32 +- contxt/models/facilities.py | 77 - contxt/services/api.py | 4 +- contxt/services/ems.py | 18 +- contxt/services/nionic.py | 89 +- contxt/services/pagination.py | 77 + graphql/nionic_queries.graphql | 88 + graphql/nionic_schema.json | 141858 ++++++++++++++++++++++++++ poetry.lock | 11 +- 15 files changed, 159971 insertions(+), 173 deletions(-) create mode 100644 contxt/generated/nionic_queries.py create mode 100644 contxt/generated/nionic_schema.py delete mode 100644 contxt/models/facilities.py create mode 100644 graphql/nionic_queries.graphql create mode 100644 graphql/nionic_schema.json diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index a73ee28f..f7fa899e 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -3,21 +3,25 @@ repos: hooks: - id: isort name: isort + exclude: ^(contxt/generated) entry: poetry run isort language: system types: [python] - id: black name: black + exclude: ^(contxt/generated) entry: poetry run black language: system types: [python] - id: flake8 name: flake8 + exclude: ^(graphql/|contxt/generated) entry: poetry run flake8 language: system types: [python] - id: mypy name: mypy + exclude: ^(contxt/generated) entry: poetry run mypy --ignore-missing-imports language: system require_serial: true diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 97b8383b..18434197 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -41,6 +41,19 @@ Our [CI pipeline](.github/workflows/ci.yaml) will run these tools on each commit poetry run pre-commit install ``` +### Updating the Nionic Graphql artifacts + + +```sh +poetry shell + +python3 -m sgqlc.introspection --exclude-deprecated --exclude-description http://localhost:3000/graphql graphql/nionic_schema.json + +sgqlc-codegen schema graphql/nionic_schema.json contxt/generated/nionic_schema.py + +sgqlc-codegen operation --schema graphql/nionic_schema.json .nionic_schema contxt/generated/nionic_queries.py graphql/nionic_queries.graphql +``` + ### Create Release On a commit to main, our [CI pipeline](.github/workflows/ci.yaml) will bump the version (determined by [conventional commits](https://www.conventionalcommits.org/)) and publish a new release to PyPI. diff --git a/contxt/cli/commands/ems.py b/contxt/cli/commands/ems.py index c1e5f317..8de0ac19 100644 --- a/contxt/cli/commands/ems.py +++ b/contxt/cli/commands/ems.py @@ -35,36 +35,46 @@ def mains( clients: Clients, facility_id: int, resource_type: ResourceType, fields: List[str], sort: str ) -> None: """Get main services""" - items = clients.ems.get_main_services(facility_id=facility_id, resource_type=resource_type) + results = clients.nionic.get_main_services(facility_id=facility_id, resource_type=resource_type) + items = [ + MainService( + x.id, x.facility_id, x.name, x.type, x.demand.id, x.usage.id, x.created_at, x.updated_at + ) + for x in results + ] print_table(items=items, keys=fields, sort_by=sort) @ems.command() @click.argument("facility_id") @click.option("--resource-type", type=ResourceType, default="electric", help="Resource type") -@click.option("--start", type=click.DateTime(), help="Start time") -@click.option("--end", type=click.DateTime(), help="End time") +@click.option("--start", type=click.DateTime(), help="Start time", required=True) +@click.option("--end", type=click.DateTime(), help="End time", required=True) @click.pass_obj def main_data( clients: Clients, facility_id: int, resource_type: ResourceType, start: datetime, end: datetime ) -> None: """Get main service data""" data: Dict[datetime, Dict[str, Any]] = defaultdict(dict) - services = clients.ems.get_main_services(facility_id=facility_id, resource_type=resource_type) + services = clients.nionic.get_main_services(facility_id=facility_id, resource_type=resource_type) with click.progressbar( services, label="Downloading main service data", item_show_func=lambda s: f"Service {s.name}" if s else "", ) as services_: for service in services_: - for t, v in clients.iot.get_time_series_for_field( - field=service.usage_field, - start_time=start, - end_time=end, + for t, v in clients.nionic.get_data_point_data( + data_source_name=service.usage.data_source_name, + name=service.usage.name, + start=start.astimezone().isoformat(), + end=end.astimezone().isoformat(), window=Window.MINUTELY, per_page=5000, ): - data[t][service.usage_field.field_human_name] = v + if t in data and service.usage.name in data[t]: + data[t][service.usage.name] = v + data[t][service.usage.name] + else: + data[t][service.usage.name] = v # Dump print_table(items=data) @@ -119,11 +129,11 @@ def usage( @ems.command() -@click.argument("facility_ids", nargs=-1) +@click.argument("facility_ids", nargs=-1, type=click.INT) @click.option( "--include", default="all", - callback=csv_callback(options=["spend", "usage"]), + callback=csv_callback(options=["mains", "usage"]), help="Data to export", ) @click.option("--start", type=click.DateTime(), default=LAST_WEEK.isoformat(), help="Start time") @@ -141,9 +151,9 @@ def export( """Export data for facilities""" with click.progressbar( facility_ids, label="Downloading data", item_show_func=lambda f: f"Facility {f}" if f else "" - ) as facility_ids_: + ): for facility in clients.nionic.get_facilities(): - if facility.id not in facility_ids_: + if facility.id not in facility_ids: continue fpath = output / facility.slug @@ -157,16 +167,20 @@ def export( # Main service data if "mains" in include: data: Dict[datetime, Dict[str, Any]] = defaultdict(dict) - services = clients.ems.get_main_services(facility_id=facility.id) + services = clients.nionic.get_main_services(facility_id=facility.id) for service in services: - for t, v in clients.iot.get_time_series_for_field( - field=service.usage_field, - start_time=start, - end_time=end, + for t, v in clients.nionic.get_data_point_data( + data_source_name=service.usage.data_source_name, + name=service.usage.name, + start=start.astimezone().isoformat(), + end=end.astimezone().isoformat(), window=Window.MINUTELY, per_page=5000, ): - data[t][service.usage_field.field_human_name] = v + if t in data and service.usage.name in data[t]: + data[t][service.usage.name] = v + data[t][service.usage.name] + else: + data[t][service.usage.name] = v Serializer.to_csv(data, fpath / "ems" / "main_service_usage.csv") print(f"Wrote data to {output}") diff --git a/contxt/cli/commands/metrics.py b/contxt/cli/commands/metrics.py index c4b52cf7..48f4aadb 100644 --- a/contxt/cli/commands/metrics.py +++ b/contxt/cli/commands/metrics.py @@ -1,3 +1,5 @@ +from datetime import datetime + import click from contxt.cli.clients import Clients @@ -19,15 +21,14 @@ def labels(clients: Clients) -> None: @metrics.command() @click.option( - "--source-id", + "--facility-id", required=True, - help="Organization ID, defaults to first value in token if not specified", -) -@click.option( - "--label", required=True, help="Organization ID, defaults to first value in token if not specified" + help="Facility ID", ) +@click.option("--label", required=True, help="Facility ID") +@click.option("--start", required=True, type=click.DateTime()) @click.pass_obj -def data(clients: Clients, source_id: str, label: str) -> None: - """Get facilities""" - facilities = clients.nionic.get_metric_data(label, source_id) - print(Serializer.to_table(facilities)) +def data(clients: Clients, facility_id: int, label: str, start: datetime) -> None: + """Get metric data""" + results = clients.nionic.get_metric_data(label, facility_id, start.astimezone().isoformat()) + print(Serializer.to_table(results)) diff --git a/contxt/generated/nionic_queries.py b/contxt/generated/nionic_queries.py new file mode 100644 index 00000000..be76f691 --- /dev/null +++ b/contxt/generated/nionic_queries.py @@ -0,0 +1,79 @@ +import sgqlc.types +import sgqlc.operation +from . import nionic_schema + +_schema = nionic_schema +_schema_root = _schema.nionic_schema + +__all__ = ('Operations',) + + +def mutation_create_facility(): + _op = sgqlc.operation.Operation(_schema_root.mutation_type, name='createFacility', variables=dict(name=sgqlc.types.Arg(sgqlc.types.non_null(_schema.String)), slug=sgqlc.types.Arg(sgqlc.types.non_null(_schema.String)), timezoneName=sgqlc.types.Arg(sgqlc.types.non_null(_schema.String)))) + _op_create_facility = _op.create_facility(input={'facility': {'name': sgqlc.types.Variable('name'), 'slug': sgqlc.types.Variable('slug'), 'timezoneName': sgqlc.types.Variable('timezoneName')}}) + _op_create_facility_facility = _op_create_facility.facility() + _op_create_facility_facility.id() + return _op + + +class Mutation: + create_facility = mutation_create_facility() + + +def query_facilities(): + _op = sgqlc.operation.Operation(_schema_root.query_type, name='facilities') + _op_facilities = _op.facilities() + _op_facilities_nodes = _op_facilities.nodes() + _op_facilities_nodes.id() + _op_facilities_nodes.name() + _op_facilities_nodes.slug() + _op_facilities_nodes.address() + _op_facilities_nodes.city() + _op_facilities_nodes.state() + _op_facilities_nodes.zip() + _op_facilities_nodes.timezone_name() + return _op + + +def query_metric_labels(): + _op = sgqlc.operation.Operation(_schema_root.query_type, name='metricLabels') + _op_source_labels = _op.source_labels() + _op_source_labels.source_id() + _op_source_labels.label() + return _op + + +def query_main_services(): + _op = sgqlc.operation.Operation(_schema_root.query_type, name='mainServices', variables=dict(facilityId=sgqlc.types.Arg(sgqlc.types.non_null(_schema.Int)))) + _op_main_services = _op.main_services(filter={'facilityId': {'equalTo': sgqlc.types.Variable('facilityId')}}) + _op_main_services_nodes = _op_main_services.nodes() + _op_main_services_nodes.id() + _op_main_services_nodes.facility_id() + _op_main_services_nodes.name() + _op_main_services_nodes.type() + _op_main_services_nodes_usage = _op_main_services_nodes.data_point_by_usage(__alias__='usage') + _op_main_services_nodes_usage.id() + _op_main_services_nodes_usage.data_source_name() + _op_main_services_nodes_usage.name() + _op_main_services_nodes_usage.alias() + _op_main_services_nodes_usage.data_type() + _op_main_services_nodes_demand = _op_main_services_nodes.data_point_by_demand(__alias__='demand') + _op_main_services_nodes_demand.id() + _op_main_services_nodes_demand.data_source_name() + _op_main_services_nodes_demand.name() + _op_main_services_nodes_demand.alias() + _op_main_services_nodes_demand.data_type() + _op_main_services_nodes.created_at() + _op_main_services_nodes.updated_at() + return _op + + +class Query: + facilities = query_facilities() + main_services = query_main_services() + metric_labels = query_metric_labels() + + +class Operations: + mutation = Mutation + query = Query diff --git a/contxt/generated/nionic_schema.py b/contxt/generated/nionic_schema.py new file mode 100644 index 00000000..edb70414 --- /dev/null +++ b/contxt/generated/nionic_schema.py @@ -0,0 +1,17723 @@ +import sgqlc.types +import sgqlc.types.datetime +import sgqlc.types.relay + + +nionic_schema = sgqlc.types.Schema() + + +# Unexport Node/PageInfo, let schema re-declare them +nionic_schema -= sgqlc.types.relay.Node +nionic_schema -= sgqlc.types.relay.PageInfo + + + +######################################################################## +# Scalars and Enumerations +######################################################################## +class AccessTokenType(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('MACHINE', 'USER') + + +class AccountChargesOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('ACCOUNT_STATEMENT_ID_ASC', 'ACCOUNT_STATEMENT_ID_DESC', 'CATEGORY_ASC', 'CATEGORY_DESC', 'CREATED_AT_ASC', 'CREATED_AT_DESC', 'DELETED_AT_ASC', 'DELETED_AT_DESC', 'ID_ASC', 'ID_DESC', 'INTERVAL_END_ASC', 'INTERVAL_END_DESC', 'INTERVAL_START_ASC', 'INTERVAL_START_DESC', 'LABEL_ASC', 'LABEL_DESC', 'LINE_NUMBER_ASC', 'LINE_NUMBER_DESC', 'NATURAL', 'NORMALIZED_VALUE_ASC', 'NORMALIZED_VALUE_DESC', 'OVERRIDE_AT_ASC', 'OVERRIDE_AT_DESC', 'OVERRIDE_LABEL_ASC', 'OVERRIDE_LABEL_DESC', 'OVERRIDE_STATEMENT_MONTH_ASC', 'OVERRIDE_STATEMENT_MONTH_DESC', 'OVERRIDE_STATEMENT_YEAR_ASC', 'OVERRIDE_STATEMENT_YEAR_DESC', 'OVERRIDE_VALUE_ASC', 'OVERRIDE_VALUE_DESC', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'STATEMENT_DATE_ASC', 'STATEMENT_DATE_DESC', 'UPDATED_AT_ASC', 'UPDATED_AT_DESC', 'VALUE_ASC', 'VALUE_DESC') + + +class AccountStatementHistoriesOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('ACCOUNT_STATEMENT_ID_ASC', 'ACCOUNT_STATEMENT_ID_DESC', 'CREATED_AT_ASC', 'CREATED_AT_DESC', 'DESCRIPTION_ASC', 'DESCRIPTION_DESC', 'NATURAL') + + +class AccountStatementsOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('CREATED_AT_ASC', 'CREATED_AT_DESC', 'CURRENCY_CODE_ASC', 'CURRENCY_CODE_DESC', 'DELETED_AT_ASC', 'DELETED_AT_DESC', 'ID_ASC', 'ID_DESC', 'INTEGRATION_ASC', 'INTEGRATION_DESC', 'INTEGRATION_KEY_ASC', 'INTEGRATION_KEY_DESC', 'INTERVAL_END_ASC', 'INTERVAL_END_DESC', 'INTERVAL_START_ASC', 'INTERVAL_START_DESC', 'IS_VALIDATED_ASC', 'IS_VALIDATED_DESC', 'METADATA_ASC', 'METADATA_DESC', 'NATURAL', 'NORMALIZED_CURRENCY_CODE_ASC', 'NORMALIZED_CURRENCY_CODE_DESC', 'OVERRIDE_AT_ASC', 'OVERRIDE_AT_DESC', 'OVERRIDE_CURRENCY_CODE_ASC', 'OVERRIDE_CURRENCY_CODE_DESC', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'STATEMENT_MONTH_ASC', 'STATEMENT_MONTH_DESC', 'STATEMENT_YEAR_ASC', 'STATEMENT_YEAR_DESC', 'UPDATED_AT_ASC', 'UPDATED_AT_DESC', 'UTILITY_ACCOUNT_ID_ASC', 'UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_END_DATE_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_END_DATE_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_EXCLUDE_USAGE_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_EXCLUDE_USAGE_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_METER_LABEL_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_METER_LABEL_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_PROVIDER_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_PROVIDER_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_START_DATE_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_START_DATE_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENTS_COUNT_ASC', 'UTILITY_METER_STATEMENTS_COUNT_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_END_DATE_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_END_DATE_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_EXCLUDE_USAGE_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_EXCLUDE_USAGE_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_METER_LABEL_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_METER_LABEL_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_PROVIDER_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_PROVIDER_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_START_DATE_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_START_DATE_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_END_DATE_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_END_DATE_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_EXCLUDE_USAGE_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_EXCLUDE_USAGE_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_METER_LABEL_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_METER_LABEL_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_PROVIDER_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_PROVIDER_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_START_DATE_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_START_DATE_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENTS_MAX_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENTS_MAX_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENTS_MAX_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_MAX_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_MAX_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENTS_MAX_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENTS_MAX_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENTS_MAX_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENTS_MAX_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENTS_MAX_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENTS_MAX_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENTS_MAX_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENTS_MAX_END_DATE_ASC', 'UTILITY_METER_STATEMENTS_MAX_END_DATE_DESC', 'UTILITY_METER_STATEMENTS_MAX_EXCLUDE_USAGE_ASC', 'UTILITY_METER_STATEMENTS_MAX_EXCLUDE_USAGE_DESC', 'UTILITY_METER_STATEMENTS_MAX_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENTS_MAX_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENTS_MAX_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENTS_MAX_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENTS_MAX_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENTS_MAX_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENTS_MAX_METER_LABEL_ASC', 'UTILITY_METER_STATEMENTS_MAX_METER_LABEL_DESC', 'UTILITY_METER_STATEMENTS_MAX_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_MAX_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_MAX_PROVIDER_ASC', 'UTILITY_METER_STATEMENTS_MAX_PROVIDER_DESC', 'UTILITY_METER_STATEMENTS_MAX_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENTS_MAX_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENTS_MAX_START_DATE_ASC', 'UTILITY_METER_STATEMENTS_MAX_START_DATE_DESC', 'UTILITY_METER_STATEMENTS_MAX_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENTS_MAX_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENTS_MAX_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENTS_MAX_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENTS_MAX_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENTS_MAX_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENTS_MAX_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENTS_MAX_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENTS_MAX_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENTS_MAX_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENTS_MIN_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENTS_MIN_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENTS_MIN_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_MIN_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_MIN_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENTS_MIN_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENTS_MIN_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENTS_MIN_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENTS_MIN_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENTS_MIN_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENTS_MIN_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENTS_MIN_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENTS_MIN_END_DATE_ASC', 'UTILITY_METER_STATEMENTS_MIN_END_DATE_DESC', 'UTILITY_METER_STATEMENTS_MIN_EXCLUDE_USAGE_ASC', 'UTILITY_METER_STATEMENTS_MIN_EXCLUDE_USAGE_DESC', 'UTILITY_METER_STATEMENTS_MIN_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENTS_MIN_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENTS_MIN_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENTS_MIN_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENTS_MIN_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENTS_MIN_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENTS_MIN_METER_LABEL_ASC', 'UTILITY_METER_STATEMENTS_MIN_METER_LABEL_DESC', 'UTILITY_METER_STATEMENTS_MIN_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_MIN_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_MIN_PROVIDER_ASC', 'UTILITY_METER_STATEMENTS_MIN_PROVIDER_DESC', 'UTILITY_METER_STATEMENTS_MIN_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENTS_MIN_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENTS_MIN_START_DATE_ASC', 'UTILITY_METER_STATEMENTS_MIN_START_DATE_DESC', 'UTILITY_METER_STATEMENTS_MIN_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENTS_MIN_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENTS_MIN_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENTS_MIN_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENTS_MIN_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENTS_MIN_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENTS_MIN_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENTS_MIN_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENTS_MIN_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENTS_MIN_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_END_DATE_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_END_DATE_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_EXCLUDE_USAGE_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_EXCLUDE_USAGE_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_METER_LABEL_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_METER_LABEL_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_PROVIDER_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_PROVIDER_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_START_DATE_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_START_DATE_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_END_DATE_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_END_DATE_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_EXCLUDE_USAGE_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_EXCLUDE_USAGE_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_METER_LABEL_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_METER_LABEL_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_PROVIDER_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_PROVIDER_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_START_DATE_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_START_DATE_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENTS_SUM_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENTS_SUM_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENTS_SUM_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_SUM_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_SUM_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENTS_SUM_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENTS_SUM_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENTS_SUM_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENTS_SUM_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENTS_SUM_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENTS_SUM_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENTS_SUM_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENTS_SUM_END_DATE_ASC', 'UTILITY_METER_STATEMENTS_SUM_END_DATE_DESC', 'UTILITY_METER_STATEMENTS_SUM_EXCLUDE_USAGE_ASC', 'UTILITY_METER_STATEMENTS_SUM_EXCLUDE_USAGE_DESC', 'UTILITY_METER_STATEMENTS_SUM_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENTS_SUM_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENTS_SUM_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENTS_SUM_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENTS_SUM_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENTS_SUM_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENTS_SUM_METER_LABEL_ASC', 'UTILITY_METER_STATEMENTS_SUM_METER_LABEL_DESC', 'UTILITY_METER_STATEMENTS_SUM_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_SUM_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_SUM_PROVIDER_ASC', 'UTILITY_METER_STATEMENTS_SUM_PROVIDER_DESC', 'UTILITY_METER_STATEMENTS_SUM_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENTS_SUM_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENTS_SUM_START_DATE_ASC', 'UTILITY_METER_STATEMENTS_SUM_START_DATE_DESC', 'UTILITY_METER_STATEMENTS_SUM_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENTS_SUM_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENTS_SUM_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENTS_SUM_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENTS_SUM_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENTS_SUM_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENTS_SUM_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENTS_SUM_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENTS_SUM_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENTS_SUM_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_END_DATE_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_END_DATE_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_EXCLUDE_USAGE_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_EXCLUDE_USAGE_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_METER_LABEL_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_METER_LABEL_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_PROVIDER_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_PROVIDER_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_START_DATE_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_START_DATE_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_END_DATE_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_END_DATE_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_EXCLUDE_USAGE_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_EXCLUDE_USAGE_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_METER_LABEL_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_METER_LABEL_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_PROVIDER_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_PROVIDER_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_START_DATE_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_START_DATE_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_UTILITY_METER_ID_DESC') + + +class Acknowledgement(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('ACKNOWLEDGED', 'REJECTED', 'UNACKNOWLEDGED') + + +class BalancingAuthoritiesOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('CREATED_AT_ASC', 'CREATED_AT_DESC', 'NATURAL', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'SLUG_ASC', 'SLUG_DESC', 'UPDATED_AT_ASC', 'UPDATED_AT_DESC') + + +class BigFloat(sgqlc.types.Scalar): + __schema__ = nionic_schema + + +class BigInt(sgqlc.types.Scalar): + __schema__ = nionic_schema + + +Boolean = sgqlc.types.Boolean + +class BuildingAreaTypesOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('DESCRIPTION_ASC', 'DESCRIPTION_DESC', 'METADATA_ASC', 'METADATA_DESC', 'NATURAL', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'TYPE_ASC', 'TYPE_DESC') + + +class BuildingAreasOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('BUILDING_AREA_TYPE_ID_ASC', 'BUILDING_AREA_TYPE_ID_DESC', 'CREATED_AT_ASC', 'CREATED_AT_DESC', 'DESCRIPTION_ASC', 'DESCRIPTION_DESC', 'FACILITY_ID_ASC', 'FACILITY_ID_DESC', 'GEOMETRY_ASC', 'GEOMETRY_DESC', 'ID_ASC', 'ID_DESC', 'LABEL_ASC', 'LABEL_DESC', 'NATURAL', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'UPDATED_AT_ASC', 'UPDATED_AT_DESC') + + +class ComponentsOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('ALIAS_ASC', 'ALIAS_DESC', 'CREATED_AT_ASC', 'CREATED_AT_DESC', 'FACILITY_ID_ASC', 'FACILITY_ID_DESC', 'ID_ASC', 'ID_DESC', 'MACHINE_USER_ID_ASC', 'MACHINE_USER_ID_DESC', 'NAME_ASC', 'NAME_DESC', 'NATURAL', 'OUT_OF_SERVICE_ASC', 'OUT_OF_SERVICE_DESC', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'UPDATED_AT_ASC', 'UPDATED_AT_DESC') + + +class ControlEventActivityLogsOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('ACTOR_ASC', 'ACTOR_DESC', 'CONTROL_EVENT_ID_ASC', 'CONTROL_EVENT_ID_DESC', 'METADATA_ASC', 'METADATA_DESC', 'NATURAL', 'TIME_ASC', 'TIME_DESC', 'TYPE_ASC', 'TYPE_DESC') + + +class ControlEventLogsOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('ACTOR_ASC', 'ACTOR_DESC', 'CONTROL_EVENT_ID_ASC', 'CONTROL_EVENT_ID_DESC', 'CREATED_AT_ASC', 'CREATED_AT_DESC', 'ID_ASC', 'ID_DESC', 'MESSAGE_ASC', 'MESSAGE_DESC', 'NATURAL', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC') + + +class ControlEventStateType(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('CANCELLED', 'CANCEL_REQUESTED', 'COMPLETED', 'FAILED', 'SCHEDULED', 'STARTED') + + +class ControlEventStatesOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('ACTOR_ASC', 'ACTOR_DESC', 'CONTROL_EVENT_ID_ASC', 'CONTROL_EVENT_ID_DESC', 'CREATED_AT_ASC', 'CREATED_AT_DESC', 'DESCRIPTION_ASC', 'DESCRIPTION_DESC', 'NATURAL', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'STATE_ASC', 'STATE_DESC') + + +class ControlEventsOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('ACKNOWLEDGED_AT_ASC', 'ACKNOWLEDGED_AT_DESC', 'COMPONENT_ID_ASC', 'COMPONENT_ID_DESC', 'CREATED_AT_ASC', 'CREATED_AT_DESC', 'END_TIME_ASC', 'END_TIME_DESC', 'ID_ASC', 'ID_DESC', 'NAME_ASC', 'NAME_DESC', 'NATURAL', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'REMOTE_METADATA_ASC', 'REMOTE_METADATA_DESC', 'START_TIME_ASC', 'START_TIME_DESC', 'UPDATED_AT_ASC', 'UPDATED_AT_DESC') + + +class ControlType(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('AUTOMATIC', 'MANUAL') + + +class Country(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('ABW', 'AFG', 'AGO', 'AIA', 'ALA', 'ALB', 'AND', 'ARE', 'ARG', 'ARM', 'ASM', 'ATA', 'ATF', 'ATG', 'AUS', 'AUT', 'AZE', 'BDI', 'BEL', 'BEN', 'BES', 'BFA', 'BGD', 'BGR', 'BHR', 'BHS', 'BIH', 'BLM', 'BLR', 'BLZ', 'BMU', 'BOL', 'BRA', 'BRB', 'BRN', 'BTN', 'BVT', 'BWA', 'CAF', 'CAN', 'CCK', 'CHE', 'CHL', 'CHN', 'CIV', 'CMR', 'COD', 'COG', 'COK', 'COL', 'COM', 'CPV', 'CRI', 'CUB', 'CUW', 'CXR', 'CYM', 'CYP', 'CZE', 'DEU', 'DJI', 'DMA', 'DNK', 'DOM', 'DZA', 'ECU', 'EGY', 'ERI', 'ESH', 'ESP', 'EST', 'ETH', 'FIN', 'FJI', 'FLK', 'FRA', 'FRO', 'FSM', 'GAB', 'GBR', 'GEO', 'GGY', 'GHA', 'GIB', 'GIN', 'GLP', 'GMB', 'GNB', 'GNQ', 'GRC', 'GRD', 'GRL', 'GTM', 'GUF', 'GUM', 'GUY', 'HKG', 'HMD', 'HND', 'HRV', 'HTI', 'HUN', 'IDN', 'IMN', 'IND', 'IOT', 'IRL', 'IRN', 'IRQ', 'ISL', 'ISR', 'ITA', 'JAM', 'JEY', 'JOR', 'JPN', 'KAZ', 'KEN', 'KGZ', 'KHM', 'KIR', 'KNA', 'KOR', 'KWT', 'LAO', 'LBN', 'LBR', 'LBY', 'LCA', 'LIE', 'LKA', 'LSO', 'LTU', 'LUX', 'LVA', 'MAC', 'MAF', 'MAR', 'MCO', 'MDA', 'MDG', 'MDV', 'MEX', 'MHL', 'MKD', 'MLI', 'MLT', 'MMR', 'MNE', 'MNG', 'MNP', 'MOZ', 'MRT', 'MSR', 'MTQ', 'MUS', 'MWI', 'MYS', 'MYT', 'NAM', 'NCL', 'NER', 'NFK', 'NGA', 'NIC', 'NIU', 'NLD', 'NOR', 'NPL', 'NRU', 'NZL', 'OMN', 'PAK', 'PAN', 'PCN', 'PER', 'PHL', 'PLW', 'PNG', 'POL', 'PRI', 'PRK', 'PRT', 'PRY', 'PSE', 'PYF', 'QAT', 'REU', 'ROU', 'RUS', 'RWA', 'SAU', 'SDN', 'SEN', 'SGP', 'SGS', 'SHN', 'SJM', 'SLB', 'SLE', 'SLV', 'SMR', 'SOM', 'SPM', 'SRB', 'SSD', 'STP', 'SUR', 'SVK', 'SVN', 'SWE', 'SWZ', 'SXM', 'SYC', 'SYR', 'TCA', 'TCD', 'TGO', 'THA', 'TJK', 'TKL', 'TKM', 'TLS', 'TON', 'TTO', 'TUN', 'TUR', 'TUV', 'TZA', 'UGA', 'UKR', 'UMI', 'URY', 'USA', 'UZB', 'VAT', 'VCT', 'VEN', 'VGB', 'VIR', 'VNM', 'VUT', 'WLF', 'WSM', 'YEM', 'ZAF', 'ZMB', 'ZWE') + + +class Cursor(sgqlc.types.Scalar): + __schema__ = nionic_schema + + +class DataPointType(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('COMPOSITE', 'RAW', 'VIRTUAL') + + +class DataPointsOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('ALIAS_ASC', 'ALIAS_DESC', 'CREATED_AT_ASC', 'CREATED_AT_DESC', 'DATA_SOURCE_NAME_ASC', 'DATA_SOURCE_NAME_DESC', 'DATA_TYPE_ASC', 'DATA_TYPE_DESC', 'DESCRIPTION_ASC', 'DESCRIPTION_DESC', 'EXPRESSION_ASC', 'EXPRESSION_DESC', 'FORMATTED_EXPRESSION_ASC', 'FORMATTED_EXPRESSION_DESC', 'FREQUENCY_ASC', 'FREQUENCY_DESC', 'ID_ASC', 'ID_DESC', 'LOCATION_TYPE_ASC', 'LOCATION_TYPE_DESC', 'NAME_ASC', 'NAME_DESC', 'NATURAL', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'TYPE_ASC', 'TYPE_DESC', 'UNITS_ASC', 'UNITS_DESC', 'UPDATED_AT_ASC', 'UPDATED_AT_DESC') + + +class DataSourcesOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('CREATED_AT_ASC', 'CREATED_AT_DESC', 'DESCRIPTION_ASC', 'DESCRIPTION_DESC', 'NAME_ASC', 'NAME_DESC', 'NATURAL', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'UPDATED_AT_ASC', 'UPDATED_AT_DESC') + + +Date = sgqlc.types.datetime.Date + +class Datetime(sgqlc.types.Scalar): + __schema__ = nionic_schema + + +class DependenciesOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('ID_ASC', 'ID_DESC', 'NAME_ASC', 'NAME_DESC', 'NATURAL', 'PATH_ASC', 'PATH_DESC', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'TYPE_ASC', 'TYPE_DESC') + + +class EnumMainServicesType(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('AIRFLOW_ELECTRIC_HIGH', 'AIRFLOW_ELECTRIC_LOW', 'AIRFLOW_HIGH', 'AIRFLOW_LOW', 'ELECTRIC', 'GAS', 'WATER') + + +class EventHandlersOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('HANDLER_ASC', 'HANDLER_DESC', 'NATURAL', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC') + + +class EventTypesOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('NAME_ASC', 'NAME_DESC', 'NATURAL', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC') + + +class EventsOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('ACTION_ASC', 'ACTION_DESC', 'ACTOR_ASC', 'ACTOR_DESC', 'CREATED_AT_ASC', 'CREATED_AT_DESC', 'EVENT_ASC', 'EVENT_DESC', 'FACILITY_ID_ASC', 'FACILITY_ID_DESC', 'ID_ASC', 'ID_DESC', 'NATURAL', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'TYPE_ASC', 'TYPE_DESC') + + +class FacilitiesGroupBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('ADDRESS', 'ADDRESS_DISTINCT', 'BONUS_LTR', 'BONUS_LTR_DISTINCT', 'CITY', 'CITY_DISTINCT', 'COMMODITY', 'COMMODITY_DISTINCT', 'CONFIG', 'CONFIG_DISTINCT', 'COST_CENTER', 'COST_CENTER_DISTINCT', 'COUNTRY', 'COUNTRY_DISTINCT', 'CREATED_AT', 'CREATED_AT_DISTINCT', 'CREATED_AT_TRUNCATED_TO_DAY', 'CREATED_AT_TRUNCATED_TO_HOUR', 'FACILITY_CONTACTS', 'FACILITY_CONTACTS_DISTINCT', 'GEOMETRY', 'GEOMETRY_DISTINCT', 'GO_LIVE_DATE', 'GO_LIVE_DATE_DISTINCT', 'GO_LIVE_DATE_TRUNCATED_TO_DAY', 'GO_LIVE_DATE_TRUNCATED_TO_HOUR', 'LATITUDE', 'LATITUDE_DISTINCT', 'LINK_ACTIVE', 'LINK_ACTIVE_DISTINCT', 'LONGITUDE', 'LONGITUDE_DISTINCT', 'METRICS_ONE_ACTIVE', 'METRICS_ONE_ACTIVE_DISTINCT', 'NAME', 'NAME_DISTINCT', 'N_SIGHT_2_ACTIVE', 'N_SIGHT_2_ACTIVE_DISTINCT', 'N_SIGHT_ACTIVE', 'N_SIGHT_ACTIVE_DISTINCT', 'PRE_BONUS_EBITDA', 'PRE_BONUS_EBITDA_DISTINCT', 'REAL_TIME_ENABLED', 'REAL_TIME_ENABLED_DISTINCT', 'RETIRED_AT', 'RETIRED_AT_DISTINCT', 'RETIRED_AT_TRUNCATED_TO_DAY', 'RETIRED_AT_TRUNCATED_TO_HOUR', 'STATE', 'STATE_DISTINCT', 'SUPPRESSE_FINANCIALS', 'SUPPRESSE_FINANCIALS_DISTINCT', 'TIMEZONE_NAME', 'TIMEZONE_NAME_DISTINCT', 'TYPE', 'TYPE_DISTINCT', 'UNIT_GROUP', 'UNIT_GROUP_DISTINCT', 'UPDATED_AT', 'UPDATED_AT_DISTINCT', 'UPDATED_AT_TRUNCATED_TO_DAY', 'UPDATED_AT_TRUNCATED_TO_HOUR', 'WMS', 'WMS_DISTINCT', 'ZIP', 'ZIP_DISTINCT') + + +class FacilitiesOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('ADDRESS_ASC', 'ADDRESS_DESC', 'BONUS_LTR_ASC', 'BONUS_LTR_DESC', 'CITY_ASC', 'CITY_DESC', 'COMMODITY_ASC', 'COMMODITY_DESC', 'CONFIG_ASC', 'CONFIG_DESC', 'COST_CENTER_ASC', 'COST_CENTER_DESC', 'COUNTRY_ASC', 'COUNTRY_DESC', 'CREATED_AT_ASC', 'CREATED_AT_DESC', 'FACILITY_CONTACTS_ASC', 'FACILITY_CONTACTS_DESC', 'GEOMETRY_ASC', 'GEOMETRY_DESC', 'GO_LIVE_DATE_ASC', 'GO_LIVE_DATE_DESC', 'ID_ASC', 'ID_DESC', 'LATITUDE_ASC', 'LATITUDE_DESC', 'LINK_ACTIVE_ASC', 'LINK_ACTIVE_DESC', 'LONGITUDE_ASC', 'LONGITUDE_DESC', 'METRICS_ONE_ACTIVE_ASC', 'METRICS_ONE_ACTIVE_DESC', 'NAME_ASC', 'NAME_DESC', 'NATURAL', 'N_SIGHT_2_ACTIVE_ASC', 'N_SIGHT_2_ACTIVE_DESC', 'N_SIGHT_ACTIVE_ASC', 'N_SIGHT_ACTIVE_DESC', 'PRE_BONUS_EBITDA_ASC', 'PRE_BONUS_EBITDA_DESC', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'REAL_TIME_ENABLED_ASC', 'REAL_TIME_ENABLED_DESC', 'RETIRED_AT_ASC', 'RETIRED_AT_DESC', 'SLUG_ASC', 'SLUG_DESC', 'STATE_ASC', 'STATE_DESC', 'SUPPRESSE_FINANCIALS_ASC', 'SUPPRESSE_FINANCIALS_DESC', 'TIMEZONE_NAME_ASC', 'TIMEZONE_NAME_DESC', 'TYPE_ASC', 'TYPE_DESC', 'UNIT_GROUP_ASC', 'UNIT_GROUP_DESC', 'UPDATED_AT_ASC', 'UPDATED_AT_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_END_DATE_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_END_DATE_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_EXCLUDE_USAGE_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_EXCLUDE_USAGE_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_METER_LABEL_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_METER_LABEL_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_PROVIDER_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_PROVIDER_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_START_DATE_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_START_DATE_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENTS_COUNT_ASC', 'UTILITY_METER_STATEMENTS_COUNT_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_END_DATE_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_END_DATE_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_EXCLUDE_USAGE_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_EXCLUDE_USAGE_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_METER_LABEL_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_METER_LABEL_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_PROVIDER_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_PROVIDER_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_START_DATE_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_START_DATE_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_END_DATE_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_END_DATE_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_EXCLUDE_USAGE_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_EXCLUDE_USAGE_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_METER_LABEL_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_METER_LABEL_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_PROVIDER_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_PROVIDER_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_START_DATE_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_START_DATE_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENTS_MAX_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENTS_MAX_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENTS_MAX_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_MAX_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_MAX_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENTS_MAX_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENTS_MAX_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENTS_MAX_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENTS_MAX_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENTS_MAX_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENTS_MAX_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENTS_MAX_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENTS_MAX_END_DATE_ASC', 'UTILITY_METER_STATEMENTS_MAX_END_DATE_DESC', 'UTILITY_METER_STATEMENTS_MAX_EXCLUDE_USAGE_ASC', 'UTILITY_METER_STATEMENTS_MAX_EXCLUDE_USAGE_DESC', 'UTILITY_METER_STATEMENTS_MAX_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENTS_MAX_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENTS_MAX_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENTS_MAX_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENTS_MAX_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENTS_MAX_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENTS_MAX_METER_LABEL_ASC', 'UTILITY_METER_STATEMENTS_MAX_METER_LABEL_DESC', 'UTILITY_METER_STATEMENTS_MAX_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_MAX_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_MAX_PROVIDER_ASC', 'UTILITY_METER_STATEMENTS_MAX_PROVIDER_DESC', 'UTILITY_METER_STATEMENTS_MAX_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENTS_MAX_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENTS_MAX_START_DATE_ASC', 'UTILITY_METER_STATEMENTS_MAX_START_DATE_DESC', 'UTILITY_METER_STATEMENTS_MAX_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENTS_MAX_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENTS_MAX_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENTS_MAX_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENTS_MAX_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENTS_MAX_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENTS_MAX_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENTS_MAX_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENTS_MAX_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENTS_MAX_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENTS_MIN_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENTS_MIN_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENTS_MIN_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_MIN_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_MIN_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENTS_MIN_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENTS_MIN_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENTS_MIN_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENTS_MIN_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENTS_MIN_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENTS_MIN_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENTS_MIN_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENTS_MIN_END_DATE_ASC', 'UTILITY_METER_STATEMENTS_MIN_END_DATE_DESC', 'UTILITY_METER_STATEMENTS_MIN_EXCLUDE_USAGE_ASC', 'UTILITY_METER_STATEMENTS_MIN_EXCLUDE_USAGE_DESC', 'UTILITY_METER_STATEMENTS_MIN_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENTS_MIN_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENTS_MIN_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENTS_MIN_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENTS_MIN_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENTS_MIN_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENTS_MIN_METER_LABEL_ASC', 'UTILITY_METER_STATEMENTS_MIN_METER_LABEL_DESC', 'UTILITY_METER_STATEMENTS_MIN_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_MIN_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_MIN_PROVIDER_ASC', 'UTILITY_METER_STATEMENTS_MIN_PROVIDER_DESC', 'UTILITY_METER_STATEMENTS_MIN_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENTS_MIN_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENTS_MIN_START_DATE_ASC', 'UTILITY_METER_STATEMENTS_MIN_START_DATE_DESC', 'UTILITY_METER_STATEMENTS_MIN_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENTS_MIN_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENTS_MIN_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENTS_MIN_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENTS_MIN_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENTS_MIN_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENTS_MIN_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENTS_MIN_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENTS_MIN_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENTS_MIN_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_END_DATE_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_END_DATE_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_EXCLUDE_USAGE_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_EXCLUDE_USAGE_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_METER_LABEL_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_METER_LABEL_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_PROVIDER_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_PROVIDER_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_START_DATE_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_START_DATE_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_END_DATE_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_END_DATE_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_EXCLUDE_USAGE_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_EXCLUDE_USAGE_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_METER_LABEL_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_METER_LABEL_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_PROVIDER_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_PROVIDER_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_START_DATE_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_START_DATE_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENTS_SUM_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENTS_SUM_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENTS_SUM_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_SUM_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_SUM_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENTS_SUM_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENTS_SUM_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENTS_SUM_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENTS_SUM_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENTS_SUM_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENTS_SUM_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENTS_SUM_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENTS_SUM_END_DATE_ASC', 'UTILITY_METER_STATEMENTS_SUM_END_DATE_DESC', 'UTILITY_METER_STATEMENTS_SUM_EXCLUDE_USAGE_ASC', 'UTILITY_METER_STATEMENTS_SUM_EXCLUDE_USAGE_DESC', 'UTILITY_METER_STATEMENTS_SUM_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENTS_SUM_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENTS_SUM_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENTS_SUM_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENTS_SUM_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENTS_SUM_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENTS_SUM_METER_LABEL_ASC', 'UTILITY_METER_STATEMENTS_SUM_METER_LABEL_DESC', 'UTILITY_METER_STATEMENTS_SUM_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_SUM_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_SUM_PROVIDER_ASC', 'UTILITY_METER_STATEMENTS_SUM_PROVIDER_DESC', 'UTILITY_METER_STATEMENTS_SUM_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENTS_SUM_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENTS_SUM_START_DATE_ASC', 'UTILITY_METER_STATEMENTS_SUM_START_DATE_DESC', 'UTILITY_METER_STATEMENTS_SUM_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENTS_SUM_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENTS_SUM_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENTS_SUM_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENTS_SUM_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENTS_SUM_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENTS_SUM_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENTS_SUM_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENTS_SUM_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENTS_SUM_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_END_DATE_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_END_DATE_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_EXCLUDE_USAGE_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_EXCLUDE_USAGE_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_METER_LABEL_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_METER_LABEL_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_PROVIDER_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_PROVIDER_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_START_DATE_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_START_DATE_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_END_DATE_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_END_DATE_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_EXCLUDE_USAGE_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_EXCLUDE_USAGE_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_METER_LABEL_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_METER_LABEL_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_PROVIDER_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_PROVIDER_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_START_DATE_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_START_DATE_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_DEMAND_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_DEMAND_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_DEMAND_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_DEMAND_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_USAGE_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_USAGE_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BLENDED_RATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BLENDED_RATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_CREDITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_CREDITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_END_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_END_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_FEES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_FEES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_LOAD_FACTOR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_LOAD_FACTOR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_METER_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_METER_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_NET_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_NET_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_PERCENT_CHANGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_PERCENT_CHANGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_PROVIDER_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_PROVIDER_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_START_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_START_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_TAXES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_TAXES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_COUNT_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_COUNT_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_DEMAND_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_DEMAND_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_DEMAND_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_DEMAND_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_USAGE_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_USAGE_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BLENDED_RATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BLENDED_RATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_DEMAND_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_DEMAND_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_DEMAND_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_DEMAND_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_USAGE_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_USAGE_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BLENDED_RATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BLENDED_RATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_CREDITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_CREDITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_END_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_END_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_FEES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_FEES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_LOAD_FACTOR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_LOAD_FACTOR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_METER_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_METER_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_NET_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_NET_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_PERCENT_CHANGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_PERCENT_CHANGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_PROVIDER_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_PROVIDER_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_START_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_START_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_TAXES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_TAXES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_CREDITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_CREDITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_END_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_END_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_FEES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_FEES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_LOAD_FACTOR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_LOAD_FACTOR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_METER_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_METER_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_NET_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_NET_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_PERCENT_CHANGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_PERCENT_CHANGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_PROVIDER_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_PROVIDER_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_START_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_START_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_TAXES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_TAXES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_DEMAND_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_DEMAND_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_DEMAND_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_DEMAND_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_USAGE_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_USAGE_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_BLENDED_RATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_BLENDED_RATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_CREDITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_CREDITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_END_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_END_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_FEES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_FEES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_LOAD_FACTOR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_LOAD_FACTOR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_METER_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_METER_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_NET_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_NET_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_PERCENT_CHANGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_PERCENT_CHANGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_PROVIDER_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_PROVIDER_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_START_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_START_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_TAXES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_TAXES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_DEMAND_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_DEMAND_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_DEMAND_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_DEMAND_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_USAGE_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_USAGE_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_BLENDED_RATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_BLENDED_RATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_CREDITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_CREDITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_END_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_END_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_FEES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_FEES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_LOAD_FACTOR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_LOAD_FACTOR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_METER_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_METER_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_NET_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_NET_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_PERCENT_CHANGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_PERCENT_CHANGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_PROVIDER_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_PROVIDER_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_START_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_START_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_TAXES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_TAXES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_DEMAND_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_DEMAND_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_DEMAND_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_DEMAND_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_USAGE_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_USAGE_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BLENDED_RATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BLENDED_RATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_CREDITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_CREDITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_END_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_END_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_FEES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_FEES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_LOAD_FACTOR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_LOAD_FACTOR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_METER_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_METER_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_NET_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_NET_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_PERCENT_CHANGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_PERCENT_CHANGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_PROVIDER_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_PROVIDER_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_START_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_START_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_TAXES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_TAXES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_DEMAND_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_DEMAND_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_DEMAND_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_DEMAND_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_USAGE_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_USAGE_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BLENDED_RATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BLENDED_RATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_CREDITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_CREDITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_END_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_END_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_FEES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_FEES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_LOAD_FACTOR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_LOAD_FACTOR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_METER_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_METER_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_NET_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_NET_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_PERCENT_CHANGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_PERCENT_CHANGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_PROVIDER_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_PROVIDER_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_START_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_START_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_TAXES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_TAXES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_DEMAND_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_DEMAND_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_DEMAND_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_DEMAND_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_USAGE_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_USAGE_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_BLENDED_RATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_BLENDED_RATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_CREDITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_CREDITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_END_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_END_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_FEES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_FEES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_LOAD_FACTOR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_LOAD_FACTOR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_METER_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_METER_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_NET_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_NET_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_PERCENT_CHANGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_PERCENT_CHANGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_PROVIDER_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_PROVIDER_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_START_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_START_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_TAXES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_TAXES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_DEMAND_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_DEMAND_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_DEMAND_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_DEMAND_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_USAGE_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_USAGE_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BLENDED_RATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BLENDED_RATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_CREDITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_CREDITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_END_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_END_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_FEES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_FEES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_LOAD_FACTOR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_LOAD_FACTOR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_METER_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_METER_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_NET_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_NET_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_PERCENT_CHANGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_PERCENT_CHANGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_PROVIDER_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_PROVIDER_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_START_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_START_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_TAXES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_TAXES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_DEMAND_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_DEMAND_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_DEMAND_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_DEMAND_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_USAGE_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_USAGE_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BLENDED_RATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BLENDED_RATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_CREDITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_CREDITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_END_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_END_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_FEES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_FEES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_LOAD_FACTOR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_LOAD_FACTOR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_METER_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_METER_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_NET_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_NET_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_PERCENT_CHANGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_PERCENT_CHANGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_PROVIDER_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_PROVIDER_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_START_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_START_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_TAXES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_TAXES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_UTILITY_METER_ID_DESC', 'WMS_ASC', 'WMS_DESC', 'ZIP_ASC', 'ZIP_DESC') + + +class FacilityCommunicationsOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('CLEARED_AT_ASC', 'CLEARED_AT_DESC', 'CREATED_AT_ASC', 'CREATED_AT_DESC', 'FACILITY_ID_ASC', 'FACILITY_ID_DESC', 'ID_ASC', 'ID_DESC', 'MESSAGE_ASC', 'MESSAGE_DESC', 'NATURAL', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'UPDATED_AT_ASC', 'UPDATED_AT_DESC') + + +class FacilityDataSourcesOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('DATA_SOURCE_NAME_ASC', 'DATA_SOURCE_NAME_DESC', 'FACILITY_ID_ASC', 'FACILITY_ID_DESC', 'NATURAL', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC') + + +class FacilityGroupsLinkersOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('FACILITY_GROUPING_ID_ASC', 'FACILITY_GROUPING_ID_DESC', 'FACILITY_ID_ASC', 'FACILITY_ID_DESC', 'NATURAL', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC') + + +class FacilityGroupsOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('ID_ASC', 'ID_DESC', 'NAME_ASC', 'NAME_DESC', 'NATURAL', 'PARENT_ID_ASC', 'PARENT_ID_DESC', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC') + + +class FieldGroupsOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('CREATED_AT_ASC', 'CREATED_AT_DESC', 'DESCRIPTION_ASC', 'DESCRIPTION_DESC', 'ID_ASC', 'ID_DESC', 'LABEL_ASC', 'LABEL_DESC', 'NATURAL', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'UPDATED_AT_ASC', 'UPDATED_AT_DESC') + + +Float = sgqlc.types.Float + +class GeoJSON(sgqlc.types.Scalar): + __schema__ = nionic_schema + + +class Geometry(sgqlc.types.Scalar): + __schema__ = nionic_schema + + +ID = sgqlc.types.ID + +Int = sgqlc.types.Int + +class JSON(sgqlc.types.Scalar): + __schema__ = nionic_schema + + +class MachineUsersOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('CREATED_AT_ASC', 'CREATED_AT_DESC', 'CREATED_BY_ASC', 'CREATED_BY_DESC', 'DESCRIPTION_ASC', 'DESCRIPTION_DESC', 'ID_ASC', 'ID_DESC', 'NATURAL', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'UPDATED_AT_ASC', 'UPDATED_AT_DESC') + + +class MainServicesOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('CREATED_AT_ASC', 'CREATED_AT_DESC', 'DEMAND_ASC', 'DEMAND_DESC', 'FACILITY_ID_ASC', 'FACILITY_ID_DESC', 'ID_ASC', 'ID_DESC', 'NAME_ASC', 'NAME_DESC', 'NATURAL', 'ORIGINAL_ID_ASC', 'ORIGINAL_ID_DESC', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'TYPE_ASC', 'TYPE_DESC', 'UPDATED_AT_ASC', 'UPDATED_AT_DESC', 'USAGE_ASC', 'USAGE_DESC') + + +class MeterChargesOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('CATEGORY_ASC', 'CATEGORY_DESC', 'CREATED_AT_ASC', 'CREATED_AT_DESC', 'DELETED_AT_ASC', 'DELETED_AT_DESC', 'ID_ASC', 'ID_DESC', 'LABEL_ASC', 'LABEL_DESC', 'LINE_NUMBER_ASC', 'LINE_NUMBER_DESC', 'METER_STATEMENT_ID_ASC', 'METER_STATEMENT_ID_DESC', 'NATURAL', 'NORMALIZED_VALUE_ASC', 'NORMALIZED_VALUE_DESC', 'OVERRIDE_AT_ASC', 'OVERRIDE_AT_DESC', 'OVERRIDE_LABEL_ASC', 'OVERRIDE_LABEL_DESC', 'OVERRIDE_VALUE_ASC', 'OVERRIDE_VALUE_DESC', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'UPDATED_AT_ASC', 'UPDATED_AT_DESC', 'VALUE_ASC', 'VALUE_DESC') + + +class MeterStatementHistoriesOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('CREATED_AT_ASC', 'CREATED_AT_DESC', 'DESCRIPTION_ASC', 'DESCRIPTION_DESC', 'METER_STATEMENT_ID_ASC', 'METER_STATEMENT_ID_DESC', 'NATURAL') + + +class MeterStatementsOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('ACCOUNT_STATEMENT_ID_ASC', 'ACCOUNT_STATEMENT_ID_DESC', 'CREATED_AT_ASC', 'CREATED_AT_DESC', 'CURRENCY_CODE_ASC', 'CURRENCY_CODE_DESC', 'DELETED_AT_ASC', 'DELETED_AT_DESC', 'ID_ASC', 'ID_DESC', 'INTEGRATION_KEY_ASC', 'INTEGRATION_KEY_DESC', 'INTERVAL_END_ASC', 'INTERVAL_END_DESC', 'INTERVAL_START_ASC', 'INTERVAL_START_DESC', 'IS_ADJUSTMENT_ASC', 'IS_ADJUSTMENT_DESC', 'IS_VALIDATED_ASC', 'IS_VALIDATED_DESC', 'MANUAL_UPLOAD_ASC', 'MANUAL_UPLOAD_DESC', 'METADATA_ASC', 'METADATA_DESC', 'NATURAL', 'NORMALIZED_CURRENCY_CODE_ASC', 'NORMALIZED_CURRENCY_CODE_DESC', 'OVERRIDE_AT_ASC', 'OVERRIDE_AT_DESC', 'OVERRIDE_CURRENCY_CODE_ASC', 'OVERRIDE_CURRENCY_CODE_DESC', 'OVERRIDE_PRIMARY_DEMAND_UNITS_ASC', 'OVERRIDE_PRIMARY_DEMAND_UNITS_DESC', 'OVERRIDE_PRIMARY_USAGE_UNITS_ASC', 'OVERRIDE_PRIMARY_USAGE_UNITS_DESC', 'OVERRIDE_STATEMENT_MONTH_ASC', 'OVERRIDE_STATEMENT_MONTH_DESC', 'OVERRIDE_STATEMENT_YEAR_ASC', 'OVERRIDE_STATEMENT_YEAR_DESC', 'PDF_LINK_ASC', 'PDF_LINK_DESC', 'PRIMARY_DEMAND_UNITS_ASC', 'PRIMARY_DEMAND_UNITS_DESC', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'PRIMARY_USAGE_UNITS_ASC', 'PRIMARY_USAGE_UNITS_DESC', 'STATEMENT_DATE_ASC', 'STATEMENT_DATE_DESC', 'UPDATED_AT_ASC', 'UPDATED_AT_DESC', 'UTILITY_METER_ID_ASC', 'UTILITY_METER_ID_DESC') + + +class MeterUsagesOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('CATEGORY_ASC', 'CATEGORY_DESC', 'CREATED_AT_ASC', 'CREATED_AT_DESC', 'DELETED_AT_ASC', 'DELETED_AT_DESC', 'ID_ASC', 'ID_DESC', 'LABEL_ASC', 'LABEL_DESC', 'LINE_NUMBER_ASC', 'LINE_NUMBER_DESC', 'METER_STATEMENT_ID_ASC', 'METER_STATEMENT_ID_DESC', 'NATURAL', 'OVERRIDE_AT_ASC', 'OVERRIDE_AT_DESC', 'OVERRIDE_LABEL_ASC', 'OVERRIDE_LABEL_DESC', 'OVERRIDE_UNITS_ASC', 'OVERRIDE_UNITS_DESC', 'OVERRIDE_VALUE_ASC', 'OVERRIDE_VALUE_DESC', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'UNITS_ASC', 'UNITS_DESC', 'UPDATED_AT_ASC', 'UPDATED_AT_DESC', 'VALUE_ASC', 'VALUE_DESC') + + +class MetricDataAggregationMethod(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('AVG', 'COUNT', 'FIRST', 'LAST', 'MAX', 'MEDIAN', 'MIN', 'SUM') + + +class MetricDataOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('TIME_ASC', 'TIME_DESC') + + +class MetricDatatype(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('BOOLEAN', 'FLOAT', 'INT', 'LONG', 'NUMERIC', 'TEXT') + + +class MetricMetadataOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('CREATED_AT_ASC', 'CREATED_AT_DESC', 'DATA_TYPE_ASC', 'DATA_TYPE_DESC', 'EXPRESSION_ASC', 'EXPRESSION_DESC', 'HUMAN_LABEL_ASC', 'HUMAN_LABEL_DESC', 'IS_COMPOSITE_ASC', 'IS_COMPOSITE_DESC', 'IS_INTERNAL_ASC', 'IS_INTERNAL_DESC', 'IS_SPARSE_ASC', 'IS_SPARSE_DESC', 'LABEL_ASC', 'LABEL_DESC', 'NATURAL', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'TABLE_ASC', 'TABLE_DESC', 'UNIT_ASC', 'UNIT_DESC', 'UNIT_DIMENSION_ASC', 'UNIT_DIMENSION_DESC', 'UPDATED_AT_ASC', 'UPDATED_AT_DESC') + + +class PlatformAccessTokensOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('CREATED_AT_ASC', 'CREATED_AT_DESC', 'DESCRIPTION_ASC', 'DESCRIPTION_DESC', 'EXPIRES_AT_ASC', 'EXPIRES_AT_DESC', 'ID_ASC', 'ID_DESC', 'NATURAL', 'OWNER_ID_ASC', 'OWNER_ID_DESC', 'TYPE_ASC', 'TYPE_DESC') + + +class PlatformCapability(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('BASE', 'IOT', 'METRIC', 'SUGGESTION', 'UTILITY', 'WMS') + + +class PlatformError(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('BAD_DATA_ERROR', 'DUPLICATE_ENTRY_ERROR', 'INVALID_INPUT_ERROR', 'INVALID_REPORT_PARAMETERS', 'NOT_FOUND_ERROR', 'SMS_VALIDATION_ERROR', 'UNAUTHORIZED_ERROR', 'UNKNOWN_ERROR') + + +class ProgramsOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('CREATED_AT_ASC', 'CREATED_AT_DESC', 'DESCRIPTION_ASC', 'DESCRIPTION_DESC', 'ID_ASC', 'ID_DESC', 'NAME_ASC', 'NAME_DESC', 'NATURAL', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'PROJECT_TYPE_ID_ASC', 'PROJECT_TYPE_ID_DESC', 'UPDATED_AT_ASC', 'UPDATED_AT_DESC') + + +class ProjectComponentsOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('COMPONENT_ID_ASC', 'COMPONENT_ID_DESC', 'NATURAL', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'PROJECT_ID_ASC', 'PROJECT_ID_DESC', 'STARTUP_OFFSET_ASC', 'STARTUP_OFFSET_DESC') + + +class ProjectFieldsOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('ALIAS_ASC', 'ALIAS_DESC', 'CREATED_AT_ASC', 'CREATED_AT_DESC', 'DATA_POINT_ID_ASC', 'DATA_POINT_ID_DESC', 'FIELD_ID_ASC', 'FIELD_ID_DESC', 'GROUP_ID_ASC', 'GROUP_ID_DESC', 'ID_ASC', 'ID_DESC', 'NATURAL', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'PROJECT_ID_ASC', 'PROJECT_ID_DESC', 'RATE_ASC', 'RATE_DESC', 'TARGET_ASC', 'TARGET_DESC', 'UPDATED_AT_ASC', 'UPDATED_AT_DESC') + + +class ProjectTypesOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('DESCRIPTION_ASC', 'DESCRIPTION_DESC', 'ID_ASC', 'ID_DESC', 'NAME_ASC', 'NAME_DESC', 'NATURAL', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC') + + +class ProjectWatchersOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('NATURAL', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'PROJECT_ID_ASC', 'PROJECT_ID_DESC', 'USER_ID_ASC', 'USER_ID_DESC') + + +class ProjectsOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('ACKNOWLEDGEMENT_WINDOW_THRESHOLD_ASC', 'ACKNOWLEDGEMENT_WINDOW_THRESHOLD_DESC', 'AUTO_ACKNOWLEDGE_ASC', 'AUTO_ACKNOWLEDGE_DESC', 'CONFIG_ASC', 'CONFIG_DESC', 'CONTROL_TYPE_ASC', 'CONTROL_TYPE_DESC', 'CREATED_AT_ASC', 'CREATED_AT_DESC', 'DESCRIPTION_ASC', 'DESCRIPTION_DESC', 'END_DATE_ASC', 'END_DATE_DESC', 'END_TIMEOUT_ASC', 'END_TIMEOUT_DESC', 'FACILITY_ID_ASC', 'FACILITY_ID_DESC', 'FACILITY_NAME_ASC', 'FACILITY_NAME_DESC', 'ID_ASC', 'ID_DESC', 'IS_WATCHING_ASC', 'IS_WATCHING_DESC', 'NAME_ASC', 'NAME_DESC', 'NATURAL', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'PROGRAM_ID_ASC', 'PROGRAM_ID_DESC', 'PROGRAM_NAME_ASC', 'PROGRAM_NAME_DESC', 'PROJECT_TYPE_ID_ASC', 'PROJECT_TYPE_ID_DESC', 'PROJECT_TYPE_NAME_ASC', 'PROJECT_TYPE_NAME_DESC', 'START_DATE_ASC', 'START_DATE_DESC', 'START_TIMEOUT_ASC', 'START_TIMEOUT_DESC', 'UPDATED_AT_ASC', 'UPDATED_AT_DESC') + + +class ReportExecutionsOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('ACTOR_ASC', 'ACTOR_DESC', 'CREATED_AT_ASC', 'CREATED_AT_DESC', 'ERRORS_ASC', 'ERRORS_DESC', 'FILE_PATH_ASC', 'FILE_PATH_DESC', 'ID_ASC', 'ID_DESC', 'NATURAL', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'REPORT_ID_ASC', 'REPORT_ID_DESC', 'STATUS_ASC', 'STATUS_DESC', 'UPDATED_AT_ASC', 'UPDATED_AT_DESC') + + +class ReportQueriesOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('CREATED_AT_ASC', 'CREATED_AT_DESC', 'DB_TYPE_ASC', 'DB_TYPE_DESC', 'DESCRIPTION_ASC', 'DESCRIPTION_DESC', 'ID_ASC', 'ID_DESC', 'LABEL_ASC', 'LABEL_DESC', 'NATURAL', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'QUERY_ASC', 'QUERY_DESC', 'REPORT_ID_ASC', 'REPORT_ID_DESC', 'UPDATED_AT_ASC', 'UPDATED_AT_DESC') + + +class ReportsOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('CREATED_AT_ASC', 'CREATED_AT_DESC', 'DESCRIPTION_ASC', 'DESCRIPTION_DESC', 'ID_ASC', 'ID_DESC', 'JSON_SCHEMA_ASC', 'JSON_SCHEMA_DESC', 'LABEL_ASC', 'LABEL_DESC', 'NATURAL', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'UPDATED_AT_ASC', 'UPDATED_AT_DESC') + + +class SavingsEventsOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('CREATED_AT_ASC', 'CREATED_AT_DESC', 'END_TIME_ASC', 'END_TIME_DESC', 'ID_ASC', 'ID_DESC', 'METADATA_ASC', 'METADATA_DESC', 'NATURAL', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'PROJECT_ID_ASC', 'PROJECT_ID_DESC', 'START_TIME_ASC', 'START_TIME_DESC', 'UPDATED_AT_ASC', 'UPDATED_AT_DESC') + + +String = sgqlc.types.String + +class SuggestionActivityLogsOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('ACTOR_ASC', 'ACTOR_DESC', 'CREATED_AT_ASC', 'CREATED_AT_DESC', 'METADATA_ASC', 'METADATA_DESC', 'NATURAL', 'SUGGESTION_ID_ASC', 'SUGGESTION_ID_DESC', 'TYPE_ASC', 'TYPE_DESC') + + +class SuggestionActivityType(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('ACKNOWLEDGED', 'REJECTED', 'UPDATED', 'WITHDRAWN') + + +class SuggestionState(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('ACTIVE', 'PAST', 'UPCOMING', 'WITHDRAWN') + + +class SuggestionsOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('ACKNOWLEDGEMENT_STATUS_ASC', 'ACKNOWLEDGEMENT_STATUS_DESC', 'CONTROL_TYPE_ASC', 'CONTROL_TYPE_DESC', 'CREATED_AT_ASC', 'CREATED_AT_DESC', 'DESCRIPTION_ASC', 'DESCRIPTION_DESC', 'END_TIME_ASC', 'END_TIME_DESC', 'FACILITY_ID_ASC', 'FACILITY_ID_DESC', 'FACILITY_NAME_ASC', 'FACILITY_NAME_DESC', 'ID_ASC', 'ID_DESC', 'IS_WATCHING_ASC', 'IS_WATCHING_DESC', 'METADATA_ASC', 'METADATA_DESC', 'NATURAL', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'PROJECT_ID_ASC', 'PROJECT_ID_DESC', 'PROJECT_NAME_ASC', 'PROJECT_NAME_DESC', 'PROJECT_TYPE_ASC', 'PROJECT_TYPE_DESC', 'RELEVANCY_ASC', 'RELEVANCY_DESC', 'SAVINGS_EVENT_ID_ASC', 'SAVINGS_EVENT_ID_DESC', 'START_TIME_ASC', 'START_TIME_DESC', 'STATE_ASC', 'STATE_DESC', 'UPDATED_AT_ASC', 'UPDATED_AT_DESC', 'WITHDRAWN_AT_ASC', 'WITHDRAWN_AT_DESC') + + +class TimezonesOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('ABBREVIATION_ASC', 'ABBREVIATION_DESC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_ADDRESS_ASC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_ADDRESS_DESC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_BONUS_LTR_ASC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_BONUS_LTR_DESC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_CITY_ASC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_CITY_DESC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_COMMODITY_ASC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_COMMODITY_DESC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_CONFIG_ASC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_CONFIG_DESC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_COST_CENTER_ASC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_COST_CENTER_DESC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_COUNTRY_ASC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_COUNTRY_DESC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_CREATED_AT_ASC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_CREATED_AT_DESC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_FACILITY_CONTACTS_ASC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_FACILITY_CONTACTS_DESC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_GEOMETRY_ASC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_GEOMETRY_DESC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_GO_LIVE_DATE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_GO_LIVE_DATE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_ID_ASC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_ID_DESC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_LATITUDE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_LATITUDE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_LINK_ACTIVE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_LINK_ACTIVE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_LONGITUDE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_LONGITUDE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_METRICS_ONE_ACTIVE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_METRICS_ONE_ACTIVE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_NAME_ASC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_NAME_DESC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_N_SIGHT_2_ACTIVE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_N_SIGHT_2_ACTIVE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_N_SIGHT_ACTIVE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_N_SIGHT_ACTIVE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_PRE_BONUS_EBITDA_ASC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_PRE_BONUS_EBITDA_DESC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_REAL_TIME_ENABLED_ASC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_REAL_TIME_ENABLED_DESC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_RETIRED_AT_ASC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_RETIRED_AT_DESC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_SLUG_ASC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_SLUG_DESC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_STATE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_STATE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_SUPPRESSE_FINANCIALS_ASC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_SUPPRESSE_FINANCIALS_DESC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_TIMEZONE_NAME_ASC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_TIMEZONE_NAME_DESC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_TYPE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_TYPE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_UNIT_GROUP_ASC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_UNIT_GROUP_DESC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_UPDATED_AT_ASC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_UPDATED_AT_DESC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_WMS_ASC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_WMS_DESC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_ZIP_ASC', 'FACILITIES_BY_TIMEZONE_NAME_AVERAGE_ZIP_DESC', 'FACILITIES_BY_TIMEZONE_NAME_COUNT_ASC', 'FACILITIES_BY_TIMEZONE_NAME_COUNT_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_ADDRESS_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_ADDRESS_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_BONUS_LTR_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_BONUS_LTR_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_CITY_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_CITY_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COMMODITY_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COMMODITY_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_CONFIG_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_CONFIG_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COST_CENTER_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COST_CENTER_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNTRY_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNTRY_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_ADDRESS_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_ADDRESS_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_BONUS_LTR_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_BONUS_LTR_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_CITY_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_CITY_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_COMMODITY_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_COMMODITY_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_CONFIG_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_CONFIG_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_COST_CENTER_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_COST_CENTER_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_COUNTRY_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_COUNTRY_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_CREATED_AT_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_CREATED_AT_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_FACILITY_CONTACTS_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_FACILITY_CONTACTS_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_GEOMETRY_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_GEOMETRY_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_GO_LIVE_DATE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_GO_LIVE_DATE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_ID_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_ID_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_LATITUDE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_LATITUDE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_LINK_ACTIVE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_LINK_ACTIVE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_LONGITUDE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_LONGITUDE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_METRICS_ONE_ACTIVE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_METRICS_ONE_ACTIVE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_NAME_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_NAME_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_N_SIGHT_2_ACTIVE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_N_SIGHT_2_ACTIVE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_N_SIGHT_ACTIVE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_N_SIGHT_ACTIVE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_PRE_BONUS_EBITDA_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_PRE_BONUS_EBITDA_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_REAL_TIME_ENABLED_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_REAL_TIME_ENABLED_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_RETIRED_AT_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_RETIRED_AT_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_SLUG_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_SLUG_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_STATE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_STATE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_SUPPRESSE_FINANCIALS_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_SUPPRESSE_FINANCIALS_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_TIMEZONE_NAME_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_TIMEZONE_NAME_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_TYPE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_TYPE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_UNIT_GROUP_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_UNIT_GROUP_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_UPDATED_AT_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_UPDATED_AT_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_WMS_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_WMS_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_ZIP_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_ZIP_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_CREATED_AT_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_CREATED_AT_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_FACILITY_CONTACTS_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_FACILITY_CONTACTS_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_GEOMETRY_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_GEOMETRY_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_GO_LIVE_DATE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_GO_LIVE_DATE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_ID_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_ID_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_LATITUDE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_LATITUDE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_LINK_ACTIVE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_LINK_ACTIVE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_LONGITUDE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_LONGITUDE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_METRICS_ONE_ACTIVE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_METRICS_ONE_ACTIVE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_NAME_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_NAME_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_N_SIGHT_2_ACTIVE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_N_SIGHT_2_ACTIVE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_N_SIGHT_ACTIVE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_N_SIGHT_ACTIVE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_PRE_BONUS_EBITDA_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_PRE_BONUS_EBITDA_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_REAL_TIME_ENABLED_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_REAL_TIME_ENABLED_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_RETIRED_AT_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_RETIRED_AT_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_SLUG_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_SLUG_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_STATE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_STATE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_SUPPRESSE_FINANCIALS_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_SUPPRESSE_FINANCIALS_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_TIMEZONE_NAME_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_TIMEZONE_NAME_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_TYPE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_TYPE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_UNIT_GROUP_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_UNIT_GROUP_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_UPDATED_AT_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_UPDATED_AT_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_WMS_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_WMS_DESC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_ZIP_ASC', 'FACILITIES_BY_TIMEZONE_NAME_DISTINCT_ZIP_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_ADDRESS_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_ADDRESS_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_BONUS_LTR_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_BONUS_LTR_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_CITY_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_CITY_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_COMMODITY_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_COMMODITY_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_CONFIG_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_CONFIG_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_COST_CENTER_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_COST_CENTER_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_COUNTRY_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_COUNTRY_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_CREATED_AT_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_CREATED_AT_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_FACILITY_CONTACTS_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_FACILITY_CONTACTS_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_GEOMETRY_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_GEOMETRY_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_GO_LIVE_DATE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_GO_LIVE_DATE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_ID_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_ID_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_LATITUDE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_LATITUDE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_LINK_ACTIVE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_LINK_ACTIVE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_LONGITUDE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_LONGITUDE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_METRICS_ONE_ACTIVE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_METRICS_ONE_ACTIVE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_NAME_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_NAME_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_N_SIGHT_2_ACTIVE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_N_SIGHT_2_ACTIVE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_N_SIGHT_ACTIVE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_N_SIGHT_ACTIVE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_PRE_BONUS_EBITDA_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_PRE_BONUS_EBITDA_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_REAL_TIME_ENABLED_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_REAL_TIME_ENABLED_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_RETIRED_AT_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_RETIRED_AT_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_SLUG_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_SLUG_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_STATE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_STATE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_SUPPRESSE_FINANCIALS_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_SUPPRESSE_FINANCIALS_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_TIMEZONE_NAME_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_TIMEZONE_NAME_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_TYPE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_TYPE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_UNIT_GROUP_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_UNIT_GROUP_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_UPDATED_AT_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_UPDATED_AT_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_WMS_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_WMS_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_ZIP_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MAX_ZIP_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_ADDRESS_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_ADDRESS_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_BONUS_LTR_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_BONUS_LTR_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_CITY_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_CITY_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_COMMODITY_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_COMMODITY_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_CONFIG_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_CONFIG_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_COST_CENTER_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_COST_CENTER_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_COUNTRY_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_COUNTRY_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_CREATED_AT_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_CREATED_AT_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_FACILITY_CONTACTS_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_FACILITY_CONTACTS_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_GEOMETRY_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_GEOMETRY_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_GO_LIVE_DATE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_GO_LIVE_DATE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_ID_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_ID_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_LATITUDE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_LATITUDE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_LINK_ACTIVE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_LINK_ACTIVE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_LONGITUDE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_LONGITUDE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_METRICS_ONE_ACTIVE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_METRICS_ONE_ACTIVE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_NAME_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_NAME_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_N_SIGHT_2_ACTIVE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_N_SIGHT_2_ACTIVE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_N_SIGHT_ACTIVE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_N_SIGHT_ACTIVE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_PRE_BONUS_EBITDA_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_PRE_BONUS_EBITDA_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_REAL_TIME_ENABLED_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_REAL_TIME_ENABLED_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_RETIRED_AT_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_RETIRED_AT_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_SLUG_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_SLUG_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_STATE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_STATE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_SUPPRESSE_FINANCIALS_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_SUPPRESSE_FINANCIALS_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_TIMEZONE_NAME_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_TIMEZONE_NAME_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_TYPE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_TYPE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_UNIT_GROUP_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_UNIT_GROUP_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_UPDATED_AT_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_UPDATED_AT_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_WMS_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_WMS_DESC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_ZIP_ASC', 'FACILITIES_BY_TIMEZONE_NAME_MIN_ZIP_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_ADDRESS_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_ADDRESS_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_BONUS_LTR_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_BONUS_LTR_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_CITY_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_CITY_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_COMMODITY_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_COMMODITY_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_CONFIG_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_CONFIG_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_COST_CENTER_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_COST_CENTER_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_COUNTRY_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_COUNTRY_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_CREATED_AT_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_CREATED_AT_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_FACILITY_CONTACTS_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_FACILITY_CONTACTS_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_GEOMETRY_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_GEOMETRY_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_GO_LIVE_DATE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_GO_LIVE_DATE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_ID_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_ID_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_LATITUDE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_LATITUDE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_LINK_ACTIVE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_LINK_ACTIVE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_LONGITUDE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_LONGITUDE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_METRICS_ONE_ACTIVE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_METRICS_ONE_ACTIVE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_NAME_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_NAME_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_N_SIGHT_2_ACTIVE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_N_SIGHT_2_ACTIVE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_N_SIGHT_ACTIVE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_N_SIGHT_ACTIVE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_PRE_BONUS_EBITDA_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_PRE_BONUS_EBITDA_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_REAL_TIME_ENABLED_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_REAL_TIME_ENABLED_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_RETIRED_AT_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_RETIRED_AT_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_SLUG_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_SLUG_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_STATE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_STATE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_SUPPRESSE_FINANCIALS_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_SUPPRESSE_FINANCIALS_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_TIMEZONE_NAME_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_TIMEZONE_NAME_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_TYPE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_TYPE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_UNIT_GROUP_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_UNIT_GROUP_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_UPDATED_AT_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_UPDATED_AT_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_WMS_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_WMS_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_ZIP_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_ZIP_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_ADDRESS_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_ADDRESS_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_BONUS_LTR_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_BONUS_LTR_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_CITY_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_CITY_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_COMMODITY_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_COMMODITY_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_CONFIG_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_CONFIG_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_COST_CENTER_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_COST_CENTER_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_COUNTRY_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_COUNTRY_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_CREATED_AT_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_CREATED_AT_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_FACILITY_CONTACTS_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_FACILITY_CONTACTS_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_GEOMETRY_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_GEOMETRY_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_GO_LIVE_DATE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_GO_LIVE_DATE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_ID_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_ID_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_LATITUDE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_LATITUDE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_LINK_ACTIVE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_LINK_ACTIVE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_LONGITUDE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_LONGITUDE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_METRICS_ONE_ACTIVE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_METRICS_ONE_ACTIVE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_NAME_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_NAME_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_N_SIGHT_2_ACTIVE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_N_SIGHT_2_ACTIVE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_N_SIGHT_ACTIVE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_N_SIGHT_ACTIVE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_PRE_BONUS_EBITDA_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_PRE_BONUS_EBITDA_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_REAL_TIME_ENABLED_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_REAL_TIME_ENABLED_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_RETIRED_AT_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_RETIRED_AT_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_SLUG_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_SLUG_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_STATE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_STATE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_SUPPRESSE_FINANCIALS_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_SUPPRESSE_FINANCIALS_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_TIMEZONE_NAME_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_TIMEZONE_NAME_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_TYPE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_TYPE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_UNIT_GROUP_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_UNIT_GROUP_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_UPDATED_AT_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_UPDATED_AT_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_WMS_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_WMS_DESC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_ZIP_ASC', 'FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_ZIP_DESC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_ADDRESS_ASC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_ADDRESS_DESC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_BONUS_LTR_ASC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_BONUS_LTR_DESC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_CITY_ASC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_CITY_DESC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_COMMODITY_ASC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_COMMODITY_DESC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_CONFIG_ASC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_CONFIG_DESC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_COST_CENTER_ASC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_COST_CENTER_DESC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_COUNTRY_ASC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_COUNTRY_DESC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_CREATED_AT_ASC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_CREATED_AT_DESC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_FACILITY_CONTACTS_ASC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_FACILITY_CONTACTS_DESC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_GEOMETRY_ASC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_GEOMETRY_DESC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_GO_LIVE_DATE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_GO_LIVE_DATE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_ID_ASC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_ID_DESC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_LATITUDE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_LATITUDE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_LINK_ACTIVE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_LINK_ACTIVE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_LONGITUDE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_LONGITUDE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_METRICS_ONE_ACTIVE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_METRICS_ONE_ACTIVE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_NAME_ASC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_NAME_DESC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_N_SIGHT_2_ACTIVE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_N_SIGHT_2_ACTIVE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_N_SIGHT_ACTIVE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_N_SIGHT_ACTIVE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_PRE_BONUS_EBITDA_ASC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_PRE_BONUS_EBITDA_DESC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_REAL_TIME_ENABLED_ASC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_REAL_TIME_ENABLED_DESC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_RETIRED_AT_ASC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_RETIRED_AT_DESC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_SLUG_ASC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_SLUG_DESC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_STATE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_STATE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_SUPPRESSE_FINANCIALS_ASC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_SUPPRESSE_FINANCIALS_DESC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_TIMEZONE_NAME_ASC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_TIMEZONE_NAME_DESC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_TYPE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_TYPE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_UNIT_GROUP_ASC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_UNIT_GROUP_DESC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_UPDATED_AT_ASC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_UPDATED_AT_DESC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_WMS_ASC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_WMS_DESC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_ZIP_ASC', 'FACILITIES_BY_TIMEZONE_NAME_SUM_ZIP_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_ADDRESS_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_ADDRESS_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_BONUS_LTR_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_BONUS_LTR_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_CITY_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_CITY_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_COMMODITY_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_COMMODITY_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_CONFIG_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_CONFIG_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_COST_CENTER_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_COST_CENTER_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_COUNTRY_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_COUNTRY_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_CREATED_AT_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_CREATED_AT_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_FACILITY_CONTACTS_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_FACILITY_CONTACTS_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_GEOMETRY_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_GEOMETRY_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_GO_LIVE_DATE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_GO_LIVE_DATE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_ID_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_ID_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_LATITUDE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_LATITUDE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_LINK_ACTIVE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_LINK_ACTIVE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_LONGITUDE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_LONGITUDE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_METRICS_ONE_ACTIVE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_METRICS_ONE_ACTIVE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_NAME_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_NAME_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_N_SIGHT_2_ACTIVE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_N_SIGHT_2_ACTIVE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_N_SIGHT_ACTIVE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_N_SIGHT_ACTIVE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_PRE_BONUS_EBITDA_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_PRE_BONUS_EBITDA_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_REAL_TIME_ENABLED_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_REAL_TIME_ENABLED_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_RETIRED_AT_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_RETIRED_AT_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_SLUG_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_SLUG_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_STATE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_STATE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_SUPPRESSE_FINANCIALS_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_SUPPRESSE_FINANCIALS_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_TIMEZONE_NAME_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_TIMEZONE_NAME_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_TYPE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_TYPE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_UNIT_GROUP_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_UNIT_GROUP_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_UPDATED_AT_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_UPDATED_AT_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_WMS_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_WMS_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_ZIP_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_ZIP_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_ADDRESS_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_ADDRESS_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_BONUS_LTR_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_BONUS_LTR_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_CITY_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_CITY_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_COMMODITY_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_COMMODITY_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_CONFIG_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_CONFIG_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_COST_CENTER_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_COST_CENTER_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_COUNTRY_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_COUNTRY_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_CREATED_AT_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_CREATED_AT_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_FACILITY_CONTACTS_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_FACILITY_CONTACTS_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_GEOMETRY_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_GEOMETRY_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_GO_LIVE_DATE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_GO_LIVE_DATE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_ID_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_ID_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_LATITUDE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_LATITUDE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_LINK_ACTIVE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_LINK_ACTIVE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_LONGITUDE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_LONGITUDE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_METRICS_ONE_ACTIVE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_METRICS_ONE_ACTIVE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_NAME_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_NAME_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_N_SIGHT_2_ACTIVE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_N_SIGHT_2_ACTIVE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_N_SIGHT_ACTIVE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_N_SIGHT_ACTIVE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_PRE_BONUS_EBITDA_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_PRE_BONUS_EBITDA_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_REAL_TIME_ENABLED_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_REAL_TIME_ENABLED_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_RETIRED_AT_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_RETIRED_AT_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_SLUG_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_SLUG_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_STATE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_STATE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_SUPPRESSE_FINANCIALS_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_SUPPRESSE_FINANCIALS_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_TIMEZONE_NAME_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_TIMEZONE_NAME_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_TYPE_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_TYPE_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_UNIT_GROUP_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_UNIT_GROUP_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_UPDATED_AT_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_UPDATED_AT_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_WMS_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_WMS_DESC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_ZIP_ASC', 'FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_ZIP_DESC', 'IS_DST_ASC', 'IS_DST_DESC', 'NAME_ASC', 'NAME_DESC', 'NATURAL', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'UTC_OFFSET_ASC', 'UTC_OFFSET_DESC') + + +class UUID(sgqlc.types.Scalar): + __schema__ = nionic_schema + + +class UnitDimensionsOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('NAME_ASC', 'NAME_DESC', 'NATURAL', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC') + + +class UnitGroupDimensionsOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('CREATED_AT_ASC', 'CREATED_AT_DESC', 'NATURAL', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'UNIT_ASC', 'UNIT_DESC', 'UNIT_DIMENSION_ASC', 'UNIT_DIMENSION_DESC', 'UNIT_GROUP_ASC', 'UNIT_GROUP_DESC', 'UPDATED_AT_ASC', 'UPDATED_AT_DESC') + + +class UnitGroupsOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('FACILITIES_BY_UNIT_GROUP_AVERAGE_ADDRESS_ASC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_ADDRESS_DESC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_BONUS_LTR_ASC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_BONUS_LTR_DESC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_CITY_ASC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_CITY_DESC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_COMMODITY_ASC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_COMMODITY_DESC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_CONFIG_ASC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_CONFIG_DESC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_COST_CENTER_ASC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_COST_CENTER_DESC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_COUNTRY_ASC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_COUNTRY_DESC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_CREATED_AT_ASC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_CREATED_AT_DESC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_FACILITY_CONTACTS_ASC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_FACILITY_CONTACTS_DESC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_GEOMETRY_ASC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_GEOMETRY_DESC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_GO_LIVE_DATE_ASC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_GO_LIVE_DATE_DESC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_ID_ASC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_ID_DESC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_LATITUDE_ASC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_LATITUDE_DESC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_LINK_ACTIVE_ASC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_LINK_ACTIVE_DESC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_LONGITUDE_ASC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_LONGITUDE_DESC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_METRICS_ONE_ACTIVE_ASC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_METRICS_ONE_ACTIVE_DESC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_NAME_ASC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_NAME_DESC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_N_SIGHT_2_ACTIVE_ASC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_N_SIGHT_2_ACTIVE_DESC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_N_SIGHT_ACTIVE_ASC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_N_SIGHT_ACTIVE_DESC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_PRE_BONUS_EBITDA_ASC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_PRE_BONUS_EBITDA_DESC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_REAL_TIME_ENABLED_ASC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_REAL_TIME_ENABLED_DESC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_RETIRED_AT_ASC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_RETIRED_AT_DESC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_SLUG_ASC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_SLUG_DESC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_STATE_ASC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_STATE_DESC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_SUPPRESSE_FINANCIALS_ASC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_SUPPRESSE_FINANCIALS_DESC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_TIMEZONE_NAME_ASC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_TIMEZONE_NAME_DESC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_TYPE_ASC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_TYPE_DESC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_UNIT_GROUP_ASC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_UNIT_GROUP_DESC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_UPDATED_AT_ASC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_UPDATED_AT_DESC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_WMS_ASC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_WMS_DESC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_ZIP_ASC', 'FACILITIES_BY_UNIT_GROUP_AVERAGE_ZIP_DESC', 'FACILITIES_BY_UNIT_GROUP_COUNT_ASC', 'FACILITIES_BY_UNIT_GROUP_COUNT_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_ADDRESS_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_ADDRESS_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_BONUS_LTR_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_BONUS_LTR_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_CITY_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_CITY_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COMMODITY_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COMMODITY_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_CONFIG_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_CONFIG_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COST_CENTER_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COST_CENTER_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNTRY_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNTRY_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_ADDRESS_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_ADDRESS_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_BONUS_LTR_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_BONUS_LTR_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_CITY_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_CITY_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_COMMODITY_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_COMMODITY_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_CONFIG_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_CONFIG_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_COST_CENTER_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_COST_CENTER_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_COUNTRY_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_COUNTRY_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_CREATED_AT_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_CREATED_AT_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_FACILITY_CONTACTS_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_FACILITY_CONTACTS_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_GEOMETRY_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_GEOMETRY_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_GO_LIVE_DATE_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_GO_LIVE_DATE_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_ID_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_ID_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_LATITUDE_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_LATITUDE_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_LINK_ACTIVE_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_LINK_ACTIVE_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_LONGITUDE_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_LONGITUDE_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_METRICS_ONE_ACTIVE_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_METRICS_ONE_ACTIVE_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_NAME_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_NAME_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_N_SIGHT_2_ACTIVE_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_N_SIGHT_2_ACTIVE_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_N_SIGHT_ACTIVE_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_N_SIGHT_ACTIVE_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_PRE_BONUS_EBITDA_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_PRE_BONUS_EBITDA_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_REAL_TIME_ENABLED_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_REAL_TIME_ENABLED_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_RETIRED_AT_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_RETIRED_AT_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_SLUG_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_SLUG_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_STATE_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_STATE_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_SUPPRESSE_FINANCIALS_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_SUPPRESSE_FINANCIALS_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_TIMEZONE_NAME_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_TIMEZONE_NAME_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_TYPE_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_TYPE_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_UNIT_GROUP_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_UNIT_GROUP_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_UPDATED_AT_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_UPDATED_AT_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_WMS_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_WMS_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_ZIP_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_ZIP_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_CREATED_AT_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_CREATED_AT_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_FACILITY_CONTACTS_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_FACILITY_CONTACTS_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_GEOMETRY_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_GEOMETRY_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_GO_LIVE_DATE_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_GO_LIVE_DATE_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_ID_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_ID_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_LATITUDE_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_LATITUDE_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_LINK_ACTIVE_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_LINK_ACTIVE_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_LONGITUDE_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_LONGITUDE_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_METRICS_ONE_ACTIVE_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_METRICS_ONE_ACTIVE_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_NAME_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_NAME_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_N_SIGHT_2_ACTIVE_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_N_SIGHT_2_ACTIVE_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_N_SIGHT_ACTIVE_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_N_SIGHT_ACTIVE_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_PRE_BONUS_EBITDA_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_PRE_BONUS_EBITDA_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_REAL_TIME_ENABLED_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_REAL_TIME_ENABLED_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_RETIRED_AT_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_RETIRED_AT_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_SLUG_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_SLUG_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_STATE_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_STATE_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_SUPPRESSE_FINANCIALS_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_SUPPRESSE_FINANCIALS_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_TIMEZONE_NAME_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_TIMEZONE_NAME_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_TYPE_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_TYPE_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_UNIT_GROUP_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_UNIT_GROUP_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_UPDATED_AT_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_UPDATED_AT_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_WMS_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_WMS_DESC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_ZIP_ASC', 'FACILITIES_BY_UNIT_GROUP_DISTINCT_ZIP_DESC', 'FACILITIES_BY_UNIT_GROUP_MAX_ADDRESS_ASC', 'FACILITIES_BY_UNIT_GROUP_MAX_ADDRESS_DESC', 'FACILITIES_BY_UNIT_GROUP_MAX_BONUS_LTR_ASC', 'FACILITIES_BY_UNIT_GROUP_MAX_BONUS_LTR_DESC', 'FACILITIES_BY_UNIT_GROUP_MAX_CITY_ASC', 'FACILITIES_BY_UNIT_GROUP_MAX_CITY_DESC', 'FACILITIES_BY_UNIT_GROUP_MAX_COMMODITY_ASC', 'FACILITIES_BY_UNIT_GROUP_MAX_COMMODITY_DESC', 'FACILITIES_BY_UNIT_GROUP_MAX_CONFIG_ASC', 'FACILITIES_BY_UNIT_GROUP_MAX_CONFIG_DESC', 'FACILITIES_BY_UNIT_GROUP_MAX_COST_CENTER_ASC', 'FACILITIES_BY_UNIT_GROUP_MAX_COST_CENTER_DESC', 'FACILITIES_BY_UNIT_GROUP_MAX_COUNTRY_ASC', 'FACILITIES_BY_UNIT_GROUP_MAX_COUNTRY_DESC', 'FACILITIES_BY_UNIT_GROUP_MAX_CREATED_AT_ASC', 'FACILITIES_BY_UNIT_GROUP_MAX_CREATED_AT_DESC', 'FACILITIES_BY_UNIT_GROUP_MAX_FACILITY_CONTACTS_ASC', 'FACILITIES_BY_UNIT_GROUP_MAX_FACILITY_CONTACTS_DESC', 'FACILITIES_BY_UNIT_GROUP_MAX_GEOMETRY_ASC', 'FACILITIES_BY_UNIT_GROUP_MAX_GEOMETRY_DESC', 'FACILITIES_BY_UNIT_GROUP_MAX_GO_LIVE_DATE_ASC', 'FACILITIES_BY_UNIT_GROUP_MAX_GO_LIVE_DATE_DESC', 'FACILITIES_BY_UNIT_GROUP_MAX_ID_ASC', 'FACILITIES_BY_UNIT_GROUP_MAX_ID_DESC', 'FACILITIES_BY_UNIT_GROUP_MAX_LATITUDE_ASC', 'FACILITIES_BY_UNIT_GROUP_MAX_LATITUDE_DESC', 'FACILITIES_BY_UNIT_GROUP_MAX_LINK_ACTIVE_ASC', 'FACILITIES_BY_UNIT_GROUP_MAX_LINK_ACTIVE_DESC', 'FACILITIES_BY_UNIT_GROUP_MAX_LONGITUDE_ASC', 'FACILITIES_BY_UNIT_GROUP_MAX_LONGITUDE_DESC', 'FACILITIES_BY_UNIT_GROUP_MAX_METRICS_ONE_ACTIVE_ASC', 'FACILITIES_BY_UNIT_GROUP_MAX_METRICS_ONE_ACTIVE_DESC', 'FACILITIES_BY_UNIT_GROUP_MAX_NAME_ASC', 'FACILITIES_BY_UNIT_GROUP_MAX_NAME_DESC', 'FACILITIES_BY_UNIT_GROUP_MAX_N_SIGHT_2_ACTIVE_ASC', 'FACILITIES_BY_UNIT_GROUP_MAX_N_SIGHT_2_ACTIVE_DESC', 'FACILITIES_BY_UNIT_GROUP_MAX_N_SIGHT_ACTIVE_ASC', 'FACILITIES_BY_UNIT_GROUP_MAX_N_SIGHT_ACTIVE_DESC', 'FACILITIES_BY_UNIT_GROUP_MAX_PRE_BONUS_EBITDA_ASC', 'FACILITIES_BY_UNIT_GROUP_MAX_PRE_BONUS_EBITDA_DESC', 'FACILITIES_BY_UNIT_GROUP_MAX_REAL_TIME_ENABLED_ASC', 'FACILITIES_BY_UNIT_GROUP_MAX_REAL_TIME_ENABLED_DESC', 'FACILITIES_BY_UNIT_GROUP_MAX_RETIRED_AT_ASC', 'FACILITIES_BY_UNIT_GROUP_MAX_RETIRED_AT_DESC', 'FACILITIES_BY_UNIT_GROUP_MAX_SLUG_ASC', 'FACILITIES_BY_UNIT_GROUP_MAX_SLUG_DESC', 'FACILITIES_BY_UNIT_GROUP_MAX_STATE_ASC', 'FACILITIES_BY_UNIT_GROUP_MAX_STATE_DESC', 'FACILITIES_BY_UNIT_GROUP_MAX_SUPPRESSE_FINANCIALS_ASC', 'FACILITIES_BY_UNIT_GROUP_MAX_SUPPRESSE_FINANCIALS_DESC', 'FACILITIES_BY_UNIT_GROUP_MAX_TIMEZONE_NAME_ASC', 'FACILITIES_BY_UNIT_GROUP_MAX_TIMEZONE_NAME_DESC', 'FACILITIES_BY_UNIT_GROUP_MAX_TYPE_ASC', 'FACILITIES_BY_UNIT_GROUP_MAX_TYPE_DESC', 'FACILITIES_BY_UNIT_GROUP_MAX_UNIT_GROUP_ASC', 'FACILITIES_BY_UNIT_GROUP_MAX_UNIT_GROUP_DESC', 'FACILITIES_BY_UNIT_GROUP_MAX_UPDATED_AT_ASC', 'FACILITIES_BY_UNIT_GROUP_MAX_UPDATED_AT_DESC', 'FACILITIES_BY_UNIT_GROUP_MAX_WMS_ASC', 'FACILITIES_BY_UNIT_GROUP_MAX_WMS_DESC', 'FACILITIES_BY_UNIT_GROUP_MAX_ZIP_ASC', 'FACILITIES_BY_UNIT_GROUP_MAX_ZIP_DESC', 'FACILITIES_BY_UNIT_GROUP_MIN_ADDRESS_ASC', 'FACILITIES_BY_UNIT_GROUP_MIN_ADDRESS_DESC', 'FACILITIES_BY_UNIT_GROUP_MIN_BONUS_LTR_ASC', 'FACILITIES_BY_UNIT_GROUP_MIN_BONUS_LTR_DESC', 'FACILITIES_BY_UNIT_GROUP_MIN_CITY_ASC', 'FACILITIES_BY_UNIT_GROUP_MIN_CITY_DESC', 'FACILITIES_BY_UNIT_GROUP_MIN_COMMODITY_ASC', 'FACILITIES_BY_UNIT_GROUP_MIN_COMMODITY_DESC', 'FACILITIES_BY_UNIT_GROUP_MIN_CONFIG_ASC', 'FACILITIES_BY_UNIT_GROUP_MIN_CONFIG_DESC', 'FACILITIES_BY_UNIT_GROUP_MIN_COST_CENTER_ASC', 'FACILITIES_BY_UNIT_GROUP_MIN_COST_CENTER_DESC', 'FACILITIES_BY_UNIT_GROUP_MIN_COUNTRY_ASC', 'FACILITIES_BY_UNIT_GROUP_MIN_COUNTRY_DESC', 'FACILITIES_BY_UNIT_GROUP_MIN_CREATED_AT_ASC', 'FACILITIES_BY_UNIT_GROUP_MIN_CREATED_AT_DESC', 'FACILITIES_BY_UNIT_GROUP_MIN_FACILITY_CONTACTS_ASC', 'FACILITIES_BY_UNIT_GROUP_MIN_FACILITY_CONTACTS_DESC', 'FACILITIES_BY_UNIT_GROUP_MIN_GEOMETRY_ASC', 'FACILITIES_BY_UNIT_GROUP_MIN_GEOMETRY_DESC', 'FACILITIES_BY_UNIT_GROUP_MIN_GO_LIVE_DATE_ASC', 'FACILITIES_BY_UNIT_GROUP_MIN_GO_LIVE_DATE_DESC', 'FACILITIES_BY_UNIT_GROUP_MIN_ID_ASC', 'FACILITIES_BY_UNIT_GROUP_MIN_ID_DESC', 'FACILITIES_BY_UNIT_GROUP_MIN_LATITUDE_ASC', 'FACILITIES_BY_UNIT_GROUP_MIN_LATITUDE_DESC', 'FACILITIES_BY_UNIT_GROUP_MIN_LINK_ACTIVE_ASC', 'FACILITIES_BY_UNIT_GROUP_MIN_LINK_ACTIVE_DESC', 'FACILITIES_BY_UNIT_GROUP_MIN_LONGITUDE_ASC', 'FACILITIES_BY_UNIT_GROUP_MIN_LONGITUDE_DESC', 'FACILITIES_BY_UNIT_GROUP_MIN_METRICS_ONE_ACTIVE_ASC', 'FACILITIES_BY_UNIT_GROUP_MIN_METRICS_ONE_ACTIVE_DESC', 'FACILITIES_BY_UNIT_GROUP_MIN_NAME_ASC', 'FACILITIES_BY_UNIT_GROUP_MIN_NAME_DESC', 'FACILITIES_BY_UNIT_GROUP_MIN_N_SIGHT_2_ACTIVE_ASC', 'FACILITIES_BY_UNIT_GROUP_MIN_N_SIGHT_2_ACTIVE_DESC', 'FACILITIES_BY_UNIT_GROUP_MIN_N_SIGHT_ACTIVE_ASC', 'FACILITIES_BY_UNIT_GROUP_MIN_N_SIGHT_ACTIVE_DESC', 'FACILITIES_BY_UNIT_GROUP_MIN_PRE_BONUS_EBITDA_ASC', 'FACILITIES_BY_UNIT_GROUP_MIN_PRE_BONUS_EBITDA_DESC', 'FACILITIES_BY_UNIT_GROUP_MIN_REAL_TIME_ENABLED_ASC', 'FACILITIES_BY_UNIT_GROUP_MIN_REAL_TIME_ENABLED_DESC', 'FACILITIES_BY_UNIT_GROUP_MIN_RETIRED_AT_ASC', 'FACILITIES_BY_UNIT_GROUP_MIN_RETIRED_AT_DESC', 'FACILITIES_BY_UNIT_GROUP_MIN_SLUG_ASC', 'FACILITIES_BY_UNIT_GROUP_MIN_SLUG_DESC', 'FACILITIES_BY_UNIT_GROUP_MIN_STATE_ASC', 'FACILITIES_BY_UNIT_GROUP_MIN_STATE_DESC', 'FACILITIES_BY_UNIT_GROUP_MIN_SUPPRESSE_FINANCIALS_ASC', 'FACILITIES_BY_UNIT_GROUP_MIN_SUPPRESSE_FINANCIALS_DESC', 'FACILITIES_BY_UNIT_GROUP_MIN_TIMEZONE_NAME_ASC', 'FACILITIES_BY_UNIT_GROUP_MIN_TIMEZONE_NAME_DESC', 'FACILITIES_BY_UNIT_GROUP_MIN_TYPE_ASC', 'FACILITIES_BY_UNIT_GROUP_MIN_TYPE_DESC', 'FACILITIES_BY_UNIT_GROUP_MIN_UNIT_GROUP_ASC', 'FACILITIES_BY_UNIT_GROUP_MIN_UNIT_GROUP_DESC', 'FACILITIES_BY_UNIT_GROUP_MIN_UPDATED_AT_ASC', 'FACILITIES_BY_UNIT_GROUP_MIN_UPDATED_AT_DESC', 'FACILITIES_BY_UNIT_GROUP_MIN_WMS_ASC', 'FACILITIES_BY_UNIT_GROUP_MIN_WMS_DESC', 'FACILITIES_BY_UNIT_GROUP_MIN_ZIP_ASC', 'FACILITIES_BY_UNIT_GROUP_MIN_ZIP_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_ADDRESS_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_ADDRESS_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_BONUS_LTR_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_BONUS_LTR_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_CITY_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_CITY_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_COMMODITY_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_COMMODITY_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_CONFIG_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_CONFIG_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_COST_CENTER_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_COST_CENTER_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_COUNTRY_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_COUNTRY_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_CREATED_AT_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_CREATED_AT_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_FACILITY_CONTACTS_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_FACILITY_CONTACTS_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_GEOMETRY_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_GEOMETRY_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_GO_LIVE_DATE_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_GO_LIVE_DATE_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_ID_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_ID_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_LATITUDE_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_LATITUDE_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_LINK_ACTIVE_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_LINK_ACTIVE_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_LONGITUDE_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_LONGITUDE_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_METRICS_ONE_ACTIVE_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_METRICS_ONE_ACTIVE_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_NAME_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_NAME_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_N_SIGHT_2_ACTIVE_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_N_SIGHT_2_ACTIVE_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_N_SIGHT_ACTIVE_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_N_SIGHT_ACTIVE_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_PRE_BONUS_EBITDA_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_PRE_BONUS_EBITDA_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_REAL_TIME_ENABLED_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_REAL_TIME_ENABLED_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_RETIRED_AT_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_RETIRED_AT_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_SLUG_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_SLUG_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_STATE_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_STATE_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_SUPPRESSE_FINANCIALS_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_SUPPRESSE_FINANCIALS_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_TIMEZONE_NAME_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_TIMEZONE_NAME_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_TYPE_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_TYPE_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_UNIT_GROUP_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_UNIT_GROUP_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_UPDATED_AT_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_UPDATED_AT_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_WMS_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_WMS_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_ZIP_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_ZIP_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_ADDRESS_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_ADDRESS_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_BONUS_LTR_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_BONUS_LTR_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_CITY_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_CITY_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_COMMODITY_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_COMMODITY_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_CONFIG_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_CONFIG_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_COST_CENTER_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_COST_CENTER_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_COUNTRY_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_COUNTRY_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_CREATED_AT_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_CREATED_AT_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_FACILITY_CONTACTS_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_FACILITY_CONTACTS_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_GEOMETRY_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_GEOMETRY_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_GO_LIVE_DATE_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_GO_LIVE_DATE_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_ID_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_ID_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_LATITUDE_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_LATITUDE_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_LINK_ACTIVE_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_LINK_ACTIVE_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_LONGITUDE_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_LONGITUDE_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_METRICS_ONE_ACTIVE_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_METRICS_ONE_ACTIVE_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_NAME_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_NAME_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_N_SIGHT_2_ACTIVE_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_N_SIGHT_2_ACTIVE_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_N_SIGHT_ACTIVE_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_N_SIGHT_ACTIVE_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_PRE_BONUS_EBITDA_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_PRE_BONUS_EBITDA_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_REAL_TIME_ENABLED_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_REAL_TIME_ENABLED_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_RETIRED_AT_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_RETIRED_AT_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_SLUG_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_SLUG_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_STATE_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_STATE_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_SUPPRESSE_FINANCIALS_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_SUPPRESSE_FINANCIALS_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_TIMEZONE_NAME_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_TIMEZONE_NAME_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_TYPE_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_TYPE_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_UNIT_GROUP_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_UNIT_GROUP_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_UPDATED_AT_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_UPDATED_AT_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_WMS_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_WMS_DESC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_ZIP_ASC', 'FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_ZIP_DESC', 'FACILITIES_BY_UNIT_GROUP_SUM_ADDRESS_ASC', 'FACILITIES_BY_UNIT_GROUP_SUM_ADDRESS_DESC', 'FACILITIES_BY_UNIT_GROUP_SUM_BONUS_LTR_ASC', 'FACILITIES_BY_UNIT_GROUP_SUM_BONUS_LTR_DESC', 'FACILITIES_BY_UNIT_GROUP_SUM_CITY_ASC', 'FACILITIES_BY_UNIT_GROUP_SUM_CITY_DESC', 'FACILITIES_BY_UNIT_GROUP_SUM_COMMODITY_ASC', 'FACILITIES_BY_UNIT_GROUP_SUM_COMMODITY_DESC', 'FACILITIES_BY_UNIT_GROUP_SUM_CONFIG_ASC', 'FACILITIES_BY_UNIT_GROUP_SUM_CONFIG_DESC', 'FACILITIES_BY_UNIT_GROUP_SUM_COST_CENTER_ASC', 'FACILITIES_BY_UNIT_GROUP_SUM_COST_CENTER_DESC', 'FACILITIES_BY_UNIT_GROUP_SUM_COUNTRY_ASC', 'FACILITIES_BY_UNIT_GROUP_SUM_COUNTRY_DESC', 'FACILITIES_BY_UNIT_GROUP_SUM_CREATED_AT_ASC', 'FACILITIES_BY_UNIT_GROUP_SUM_CREATED_AT_DESC', 'FACILITIES_BY_UNIT_GROUP_SUM_FACILITY_CONTACTS_ASC', 'FACILITIES_BY_UNIT_GROUP_SUM_FACILITY_CONTACTS_DESC', 'FACILITIES_BY_UNIT_GROUP_SUM_GEOMETRY_ASC', 'FACILITIES_BY_UNIT_GROUP_SUM_GEOMETRY_DESC', 'FACILITIES_BY_UNIT_GROUP_SUM_GO_LIVE_DATE_ASC', 'FACILITIES_BY_UNIT_GROUP_SUM_GO_LIVE_DATE_DESC', 'FACILITIES_BY_UNIT_GROUP_SUM_ID_ASC', 'FACILITIES_BY_UNIT_GROUP_SUM_ID_DESC', 'FACILITIES_BY_UNIT_GROUP_SUM_LATITUDE_ASC', 'FACILITIES_BY_UNIT_GROUP_SUM_LATITUDE_DESC', 'FACILITIES_BY_UNIT_GROUP_SUM_LINK_ACTIVE_ASC', 'FACILITIES_BY_UNIT_GROUP_SUM_LINK_ACTIVE_DESC', 'FACILITIES_BY_UNIT_GROUP_SUM_LONGITUDE_ASC', 'FACILITIES_BY_UNIT_GROUP_SUM_LONGITUDE_DESC', 'FACILITIES_BY_UNIT_GROUP_SUM_METRICS_ONE_ACTIVE_ASC', 'FACILITIES_BY_UNIT_GROUP_SUM_METRICS_ONE_ACTIVE_DESC', 'FACILITIES_BY_UNIT_GROUP_SUM_NAME_ASC', 'FACILITIES_BY_UNIT_GROUP_SUM_NAME_DESC', 'FACILITIES_BY_UNIT_GROUP_SUM_N_SIGHT_2_ACTIVE_ASC', 'FACILITIES_BY_UNIT_GROUP_SUM_N_SIGHT_2_ACTIVE_DESC', 'FACILITIES_BY_UNIT_GROUP_SUM_N_SIGHT_ACTIVE_ASC', 'FACILITIES_BY_UNIT_GROUP_SUM_N_SIGHT_ACTIVE_DESC', 'FACILITIES_BY_UNIT_GROUP_SUM_PRE_BONUS_EBITDA_ASC', 'FACILITIES_BY_UNIT_GROUP_SUM_PRE_BONUS_EBITDA_DESC', 'FACILITIES_BY_UNIT_GROUP_SUM_REAL_TIME_ENABLED_ASC', 'FACILITIES_BY_UNIT_GROUP_SUM_REAL_TIME_ENABLED_DESC', 'FACILITIES_BY_UNIT_GROUP_SUM_RETIRED_AT_ASC', 'FACILITIES_BY_UNIT_GROUP_SUM_RETIRED_AT_DESC', 'FACILITIES_BY_UNIT_GROUP_SUM_SLUG_ASC', 'FACILITIES_BY_UNIT_GROUP_SUM_SLUG_DESC', 'FACILITIES_BY_UNIT_GROUP_SUM_STATE_ASC', 'FACILITIES_BY_UNIT_GROUP_SUM_STATE_DESC', 'FACILITIES_BY_UNIT_GROUP_SUM_SUPPRESSE_FINANCIALS_ASC', 'FACILITIES_BY_UNIT_GROUP_SUM_SUPPRESSE_FINANCIALS_DESC', 'FACILITIES_BY_UNIT_GROUP_SUM_TIMEZONE_NAME_ASC', 'FACILITIES_BY_UNIT_GROUP_SUM_TIMEZONE_NAME_DESC', 'FACILITIES_BY_UNIT_GROUP_SUM_TYPE_ASC', 'FACILITIES_BY_UNIT_GROUP_SUM_TYPE_DESC', 'FACILITIES_BY_UNIT_GROUP_SUM_UNIT_GROUP_ASC', 'FACILITIES_BY_UNIT_GROUP_SUM_UNIT_GROUP_DESC', 'FACILITIES_BY_UNIT_GROUP_SUM_UPDATED_AT_ASC', 'FACILITIES_BY_UNIT_GROUP_SUM_UPDATED_AT_DESC', 'FACILITIES_BY_UNIT_GROUP_SUM_WMS_ASC', 'FACILITIES_BY_UNIT_GROUP_SUM_WMS_DESC', 'FACILITIES_BY_UNIT_GROUP_SUM_ZIP_ASC', 'FACILITIES_BY_UNIT_GROUP_SUM_ZIP_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_ADDRESS_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_ADDRESS_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_BONUS_LTR_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_BONUS_LTR_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_CITY_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_CITY_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_COMMODITY_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_COMMODITY_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_CONFIG_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_CONFIG_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_COST_CENTER_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_COST_CENTER_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_COUNTRY_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_COUNTRY_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_CREATED_AT_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_CREATED_AT_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_FACILITY_CONTACTS_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_FACILITY_CONTACTS_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_GEOMETRY_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_GEOMETRY_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_GO_LIVE_DATE_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_GO_LIVE_DATE_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_ID_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_ID_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_LATITUDE_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_LATITUDE_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_LINK_ACTIVE_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_LINK_ACTIVE_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_LONGITUDE_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_LONGITUDE_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_METRICS_ONE_ACTIVE_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_METRICS_ONE_ACTIVE_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_NAME_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_NAME_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_N_SIGHT_2_ACTIVE_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_N_SIGHT_2_ACTIVE_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_N_SIGHT_ACTIVE_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_N_SIGHT_ACTIVE_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_PRE_BONUS_EBITDA_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_PRE_BONUS_EBITDA_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_REAL_TIME_ENABLED_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_REAL_TIME_ENABLED_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_RETIRED_AT_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_RETIRED_AT_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_SLUG_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_SLUG_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_STATE_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_STATE_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_SUPPRESSE_FINANCIALS_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_SUPPRESSE_FINANCIALS_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_TIMEZONE_NAME_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_TIMEZONE_NAME_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_TYPE_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_TYPE_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_UNIT_GROUP_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_UNIT_GROUP_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_UPDATED_AT_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_UPDATED_AT_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_WMS_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_WMS_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_ZIP_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_ZIP_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_ADDRESS_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_ADDRESS_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_BONUS_LTR_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_BONUS_LTR_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_CITY_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_CITY_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_COMMODITY_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_COMMODITY_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_CONFIG_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_CONFIG_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_COST_CENTER_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_COST_CENTER_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_COUNTRY_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_COUNTRY_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_CREATED_AT_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_CREATED_AT_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_FACILITY_CONTACTS_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_FACILITY_CONTACTS_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_GEOMETRY_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_GEOMETRY_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_GO_LIVE_DATE_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_GO_LIVE_DATE_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_ID_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_ID_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_LATITUDE_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_LATITUDE_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_LINK_ACTIVE_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_LINK_ACTIVE_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_LONGITUDE_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_LONGITUDE_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_METRICS_ONE_ACTIVE_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_METRICS_ONE_ACTIVE_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_NAME_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_NAME_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_N_SIGHT_2_ACTIVE_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_N_SIGHT_2_ACTIVE_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_N_SIGHT_ACTIVE_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_N_SIGHT_ACTIVE_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_PRE_BONUS_EBITDA_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_PRE_BONUS_EBITDA_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_REAL_TIME_ENABLED_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_REAL_TIME_ENABLED_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_RETIRED_AT_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_RETIRED_AT_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_SLUG_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_SLUG_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_STATE_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_STATE_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_SUPPRESSE_FINANCIALS_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_SUPPRESSE_FINANCIALS_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_TIMEZONE_NAME_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_TIMEZONE_NAME_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_TYPE_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_TYPE_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_UNIT_GROUP_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_UNIT_GROUP_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_UPDATED_AT_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_UPDATED_AT_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_WMS_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_WMS_DESC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_ZIP_ASC', 'FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_ZIP_DESC', 'NAME_ASC', 'NAME_DESC', 'NATURAL', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC') + + +class Upload(sgqlc.types.Scalar): + __schema__ = nionic_schema + + +class UserSubscriptionChannel(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('SMS',) + + +class UsersOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('CREATED_AT_ASC', 'CREATED_AT_DESC', 'EMAIL_ASC', 'EMAIL_DESC', 'FIRST_NAME_ASC', 'FIRST_NAME_DESC', 'ID_ASC', 'ID_DESC', 'LAST_NAME_ASC', 'LAST_NAME_DESC', 'NATURAL', 'PHONE_NUMBER_ASC', 'PHONE_NUMBER_DESC', 'PHONE_NUMBER_VALIDATED_ASC', 'PHONE_NUMBER_VALIDATED_DESC', 'PREFERRED_LOCALE_ASC', 'PREFERRED_LOCALE_DESC', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'UPDATED_AT_ASC', 'UPDATED_AT_DESC') + + +class UtilityAccountChargeCategory(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('CREDITS', 'DEMAND', 'FEES', 'TAXES', 'USAGE') + + +class UtilityAccountStatementRollupsGroupBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('ACCOUNT_LABEL', 'ACCOUNT_LABEL_DISTINCT', 'ACCOUNT_STATEMENT_ID', 'ACCOUNT_STATEMENT_ID_DISTINCT', 'BILL_ARRIVAL_DATE', 'BILL_ARRIVAL_DATE_DISTINCT', 'BILL_ARRIVAL_DATE_TRUNCATED_TO_DAY', 'BILL_ARRIVAL_DATE_TRUNCATED_TO_HOUR', 'BILL_COST', 'BILL_COST_DISTINCT', 'BILL_DEMAND_COST', 'BILL_DEMAND_COST_DISTINCT', 'BILL_USAGE_COST', 'BILL_USAGE_COST_DISTINCT', 'CREDITS', 'CREDITS_DISTINCT', 'CURRENCY_CODE', 'CURRENCY_CODE_DISTINCT', 'FEES', 'FEES_DISTINCT', 'INTERVAL_END', 'INTERVAL_END_DISTINCT', 'INTERVAL_START', 'INTERVAL_START_DISTINCT', 'PERCENT_CHANGE', 'PERCENT_CHANGE_DISTINCT', 'PROVIDER', 'PROVIDER_DISTINCT', 'STATEMENT_MONTH', 'STATEMENT_MONTH_DISTINCT', 'STATEMENT_YEAR', 'STATEMENT_YEAR_DISTINCT', 'TAXES', 'TAXES_DISTINCT', 'UTILITY_ACCOUNT_ID', 'UTILITY_ACCOUNT_ID_DISTINCT') + + +class UtilityAccountStatementRollupsOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('ACCOUNT_LABEL_ASC', 'ACCOUNT_LABEL_DESC', 'ACCOUNT_STATEMENT_ID_ASC', 'ACCOUNT_STATEMENT_ID_DESC', 'BILL_ARRIVAL_DATE_ASC', 'BILL_ARRIVAL_DATE_DESC', 'BILL_COST_ASC', 'BILL_COST_DESC', 'BILL_DEMAND_COST_ASC', 'BILL_DEMAND_COST_DESC', 'BILL_USAGE_COST_ASC', 'BILL_USAGE_COST_DESC', 'CREDITS_ASC', 'CREDITS_DESC', 'CURRENCY_CODE_ASC', 'CURRENCY_CODE_DESC', 'FEES_ASC', 'FEES_DESC', 'INTERVAL_END_ASC', 'INTERVAL_END_DESC', 'INTERVAL_START_ASC', 'INTERVAL_START_DESC', 'NATURAL', 'PERCENT_CHANGE_ASC', 'PERCENT_CHANGE_DESC', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'PROVIDER_ASC', 'PROVIDER_DESC', 'STATEMENT_MONTH_ASC', 'STATEMENT_MONTH_DESC', 'STATEMENT_YEAR_ASC', 'STATEMENT_YEAR_DESC', 'TAXES_ASC', 'TAXES_DESC', 'UTILITY_ACCOUNT_ID_ASC', 'UTILITY_ACCOUNT_ID_DESC') + + +class UtilityAccountStatementsOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('ACCOUNT_LABEL_ASC', 'ACCOUNT_LABEL_DESC', 'ACCOUNT_STATEMENT_ID_ASC', 'ACCOUNT_STATEMENT_ID_DESC', 'BILL_ARRIVAL_DATE_ASC', 'BILL_ARRIVAL_DATE_DESC', 'CURRENCY_CODE_ASC', 'CURRENCY_CODE_DESC', 'INTERVAL_END_ASC', 'INTERVAL_END_DESC', 'INTERVAL_START_ASC', 'INTERVAL_START_DESC', 'NATURAL', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'PROVIDER_ASC', 'PROVIDER_DESC', 'STATEMENT_MONTH_ASC', 'STATEMENT_MONTH_DESC', 'STATEMENT_YEAR_ASC', 'STATEMENT_YEAR_DESC', 'UTILITY_ACCOUNT_ID_ASC', 'UTILITY_ACCOUNT_ID_DESC') + + +class UtilityAccountsOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('ACCOUNT_NUMBER_ASC', 'ACCOUNT_NUMBER_DESC', 'CREATED_AT_ASC', 'CREATED_AT_DESC', 'DELETED_AT_ASC', 'DELETED_AT_DESC', 'ID_ASC', 'ID_DESC', 'INTEGRATION_ACCOUNT_KEY_ASC', 'INTEGRATION_ACCOUNT_KEY_DESC', 'INTEGRATION_ASC', 'INTEGRATION_DESC', 'METADATA_ASC', 'METADATA_DESC', 'NAME_ASC', 'NAME_DESC', 'NATURAL', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'UPDATED_AT_ASC', 'UPDATED_AT_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_ACCOUNT_LABEL_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_ACCOUNT_LABEL_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_BILL_ARRIVAL_DATE_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_BILL_ARRIVAL_DATE_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_BILL_COST_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_BILL_COST_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_BILL_DEMAND_COST_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_BILL_DEMAND_COST_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_BILL_USAGE_COST_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_BILL_USAGE_COST_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_CREDITS_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_CREDITS_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_CURRENCY_CODE_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_CURRENCY_CODE_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_FEES_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_FEES_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_INTERVAL_END_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_INTERVAL_END_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_INTERVAL_START_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_INTERVAL_START_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_PERCENT_CHANGE_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_PERCENT_CHANGE_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_PROVIDER_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_PROVIDER_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_STATEMENT_MONTH_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_STATEMENT_MONTH_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_STATEMENT_YEAR_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_STATEMENT_YEAR_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_TAXES_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_TAXES_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_COUNT_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_COUNT_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_ACCOUNT_LABEL_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_ACCOUNT_LABEL_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_BILL_ARRIVAL_DATE_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_BILL_ARRIVAL_DATE_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_BILL_COST_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_BILL_COST_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_BILL_DEMAND_COST_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_BILL_DEMAND_COST_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_BILL_USAGE_COST_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_BILL_USAGE_COST_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_ACCOUNT_LABEL_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_ACCOUNT_LABEL_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_ARRIVAL_DATE_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_ARRIVAL_DATE_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_COST_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_COST_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_DEMAND_COST_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_DEMAND_COST_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_USAGE_COST_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_USAGE_COST_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_CREDITS_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_CREDITS_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_CURRENCY_CODE_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_CURRENCY_CODE_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_FEES_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_FEES_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_INTERVAL_END_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_INTERVAL_END_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_INTERVAL_START_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_INTERVAL_START_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_PERCENT_CHANGE_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_PERCENT_CHANGE_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_PROVIDER_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_PROVIDER_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_STATEMENT_MONTH_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_STATEMENT_MONTH_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_STATEMENT_YEAR_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_STATEMENT_YEAR_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_TAXES_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_TAXES_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_CREDITS_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_CREDITS_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_CURRENCY_CODE_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_CURRENCY_CODE_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_FEES_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_FEES_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_INTERVAL_END_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_INTERVAL_END_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_INTERVAL_START_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_INTERVAL_START_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_PERCENT_CHANGE_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_PERCENT_CHANGE_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_PROVIDER_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_PROVIDER_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_STATEMENT_MONTH_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_STATEMENT_MONTH_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_STATEMENT_YEAR_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_STATEMENT_YEAR_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_TAXES_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_TAXES_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_ACCOUNT_LABEL_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_ACCOUNT_LABEL_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_BILL_ARRIVAL_DATE_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_BILL_ARRIVAL_DATE_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_BILL_COST_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_BILL_COST_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_BILL_DEMAND_COST_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_BILL_DEMAND_COST_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_BILL_USAGE_COST_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_BILL_USAGE_COST_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_CREDITS_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_CREDITS_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_CURRENCY_CODE_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_CURRENCY_CODE_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_FEES_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_FEES_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_INTERVAL_END_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_INTERVAL_END_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_INTERVAL_START_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_INTERVAL_START_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_PERCENT_CHANGE_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_PERCENT_CHANGE_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_PROVIDER_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_PROVIDER_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_STATEMENT_MONTH_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_STATEMENT_MONTH_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_STATEMENT_YEAR_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_STATEMENT_YEAR_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_TAXES_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_TAXES_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_ACCOUNT_LABEL_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_ACCOUNT_LABEL_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_BILL_ARRIVAL_DATE_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_BILL_ARRIVAL_DATE_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_BILL_COST_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_BILL_COST_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_BILL_DEMAND_COST_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_BILL_DEMAND_COST_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_BILL_USAGE_COST_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_BILL_USAGE_COST_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_CREDITS_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_CREDITS_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_CURRENCY_CODE_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_CURRENCY_CODE_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_FEES_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_FEES_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_INTERVAL_END_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_INTERVAL_END_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_INTERVAL_START_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_INTERVAL_START_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_PERCENT_CHANGE_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_PERCENT_CHANGE_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_PROVIDER_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_PROVIDER_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_STATEMENT_MONTH_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_STATEMENT_MONTH_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_STATEMENT_YEAR_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_STATEMENT_YEAR_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_TAXES_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_TAXES_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_ACCOUNT_LABEL_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_ACCOUNT_LABEL_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_ARRIVAL_DATE_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_ARRIVAL_DATE_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_COST_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_COST_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_DEMAND_COST_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_DEMAND_COST_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_USAGE_COST_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_USAGE_COST_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_CREDITS_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_CREDITS_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_CURRENCY_CODE_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_CURRENCY_CODE_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_FEES_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_FEES_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_INTERVAL_END_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_INTERVAL_END_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_INTERVAL_START_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_INTERVAL_START_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_PERCENT_CHANGE_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_PERCENT_CHANGE_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_PROVIDER_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_PROVIDER_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_STATEMENT_MONTH_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_STATEMENT_MONTH_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_STATEMENT_YEAR_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_STATEMENT_YEAR_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_TAXES_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_TAXES_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_ACCOUNT_LABEL_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_ACCOUNT_LABEL_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_ARRIVAL_DATE_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_ARRIVAL_DATE_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_COST_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_COST_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_DEMAND_COST_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_DEMAND_COST_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_USAGE_COST_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_USAGE_COST_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_CREDITS_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_CREDITS_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_CURRENCY_CODE_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_CURRENCY_CODE_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_FEES_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_FEES_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_INTERVAL_END_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_INTERVAL_END_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_INTERVAL_START_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_INTERVAL_START_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_PERCENT_CHANGE_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_PERCENT_CHANGE_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_PROVIDER_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_PROVIDER_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_STATEMENT_MONTH_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_STATEMENT_MONTH_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_STATEMENT_YEAR_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_STATEMENT_YEAR_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_TAXES_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_TAXES_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_ACCOUNT_LABEL_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_ACCOUNT_LABEL_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_BILL_ARRIVAL_DATE_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_BILL_ARRIVAL_DATE_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_BILL_COST_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_BILL_COST_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_BILL_DEMAND_COST_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_BILL_DEMAND_COST_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_BILL_USAGE_COST_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_BILL_USAGE_COST_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_CREDITS_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_CREDITS_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_CURRENCY_CODE_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_CURRENCY_CODE_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_FEES_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_FEES_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_INTERVAL_END_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_INTERVAL_END_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_INTERVAL_START_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_INTERVAL_START_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_PERCENT_CHANGE_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_PERCENT_CHANGE_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_PROVIDER_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_PROVIDER_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_STATEMENT_MONTH_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_STATEMENT_MONTH_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_STATEMENT_YEAR_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_STATEMENT_YEAR_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_TAXES_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_TAXES_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_ACCOUNT_LABEL_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_ACCOUNT_LABEL_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_ARRIVAL_DATE_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_ARRIVAL_DATE_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_COST_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_COST_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_DEMAND_COST_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_DEMAND_COST_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_USAGE_COST_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_USAGE_COST_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_CREDITS_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_CREDITS_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_CURRENCY_CODE_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_CURRENCY_CODE_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_FEES_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_FEES_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_INTERVAL_END_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_INTERVAL_END_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_INTERVAL_START_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_INTERVAL_START_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_PERCENT_CHANGE_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_PERCENT_CHANGE_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_PROVIDER_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_PROVIDER_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_STATEMENT_MONTH_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_STATEMENT_MONTH_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_STATEMENT_YEAR_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_STATEMENT_YEAR_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_TAXES_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_TAXES_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_ACCOUNT_LABEL_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_ACCOUNT_LABEL_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_ARRIVAL_DATE_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_ARRIVAL_DATE_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_COST_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_COST_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_DEMAND_COST_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_DEMAND_COST_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_USAGE_COST_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_USAGE_COST_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_CREDITS_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_CREDITS_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_CURRENCY_CODE_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_CURRENCY_CODE_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_FEES_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_FEES_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_INTERVAL_END_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_INTERVAL_END_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_INTERVAL_START_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_INTERVAL_START_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_PERCENT_CHANGE_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_PERCENT_CHANGE_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_PROVIDER_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_PROVIDER_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_STATEMENT_MONTH_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_STATEMENT_MONTH_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_STATEMENT_YEAR_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_STATEMENT_YEAR_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_TAXES_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_TAXES_DESC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_END_DATE_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_END_DATE_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_EXCLUDE_USAGE_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_EXCLUDE_USAGE_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_METER_LABEL_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_METER_LABEL_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_PROVIDER_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_PROVIDER_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_START_DATE_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_START_DATE_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENTS_COUNT_ASC', 'UTILITY_METER_STATEMENTS_COUNT_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_END_DATE_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_END_DATE_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_EXCLUDE_USAGE_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_EXCLUDE_USAGE_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_METER_LABEL_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_METER_LABEL_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_PROVIDER_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_PROVIDER_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_START_DATE_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_START_DATE_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_END_DATE_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_END_DATE_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_EXCLUDE_USAGE_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_EXCLUDE_USAGE_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_METER_LABEL_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_METER_LABEL_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_PROVIDER_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_PROVIDER_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_START_DATE_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_START_DATE_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENTS_MAX_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENTS_MAX_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENTS_MAX_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_MAX_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_MAX_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENTS_MAX_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENTS_MAX_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENTS_MAX_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENTS_MAX_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENTS_MAX_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENTS_MAX_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENTS_MAX_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENTS_MAX_END_DATE_ASC', 'UTILITY_METER_STATEMENTS_MAX_END_DATE_DESC', 'UTILITY_METER_STATEMENTS_MAX_EXCLUDE_USAGE_ASC', 'UTILITY_METER_STATEMENTS_MAX_EXCLUDE_USAGE_DESC', 'UTILITY_METER_STATEMENTS_MAX_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENTS_MAX_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENTS_MAX_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENTS_MAX_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENTS_MAX_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENTS_MAX_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENTS_MAX_METER_LABEL_ASC', 'UTILITY_METER_STATEMENTS_MAX_METER_LABEL_DESC', 'UTILITY_METER_STATEMENTS_MAX_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_MAX_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_MAX_PROVIDER_ASC', 'UTILITY_METER_STATEMENTS_MAX_PROVIDER_DESC', 'UTILITY_METER_STATEMENTS_MAX_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENTS_MAX_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENTS_MAX_START_DATE_ASC', 'UTILITY_METER_STATEMENTS_MAX_START_DATE_DESC', 'UTILITY_METER_STATEMENTS_MAX_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENTS_MAX_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENTS_MAX_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENTS_MAX_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENTS_MAX_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENTS_MAX_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENTS_MAX_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENTS_MAX_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENTS_MAX_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENTS_MAX_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENTS_MIN_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENTS_MIN_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENTS_MIN_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_MIN_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_MIN_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENTS_MIN_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENTS_MIN_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENTS_MIN_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENTS_MIN_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENTS_MIN_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENTS_MIN_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENTS_MIN_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENTS_MIN_END_DATE_ASC', 'UTILITY_METER_STATEMENTS_MIN_END_DATE_DESC', 'UTILITY_METER_STATEMENTS_MIN_EXCLUDE_USAGE_ASC', 'UTILITY_METER_STATEMENTS_MIN_EXCLUDE_USAGE_DESC', 'UTILITY_METER_STATEMENTS_MIN_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENTS_MIN_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENTS_MIN_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENTS_MIN_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENTS_MIN_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENTS_MIN_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENTS_MIN_METER_LABEL_ASC', 'UTILITY_METER_STATEMENTS_MIN_METER_LABEL_DESC', 'UTILITY_METER_STATEMENTS_MIN_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_MIN_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_MIN_PROVIDER_ASC', 'UTILITY_METER_STATEMENTS_MIN_PROVIDER_DESC', 'UTILITY_METER_STATEMENTS_MIN_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENTS_MIN_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENTS_MIN_START_DATE_ASC', 'UTILITY_METER_STATEMENTS_MIN_START_DATE_DESC', 'UTILITY_METER_STATEMENTS_MIN_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENTS_MIN_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENTS_MIN_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENTS_MIN_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENTS_MIN_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENTS_MIN_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENTS_MIN_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENTS_MIN_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENTS_MIN_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENTS_MIN_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_END_DATE_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_END_DATE_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_EXCLUDE_USAGE_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_EXCLUDE_USAGE_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_METER_LABEL_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_METER_LABEL_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_PROVIDER_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_PROVIDER_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_START_DATE_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_START_DATE_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_END_DATE_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_END_DATE_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_EXCLUDE_USAGE_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_EXCLUDE_USAGE_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_METER_LABEL_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_METER_LABEL_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_PROVIDER_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_PROVIDER_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_START_DATE_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_START_DATE_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENTS_SUM_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENTS_SUM_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENTS_SUM_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_SUM_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_SUM_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENTS_SUM_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENTS_SUM_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENTS_SUM_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENTS_SUM_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENTS_SUM_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENTS_SUM_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENTS_SUM_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENTS_SUM_END_DATE_ASC', 'UTILITY_METER_STATEMENTS_SUM_END_DATE_DESC', 'UTILITY_METER_STATEMENTS_SUM_EXCLUDE_USAGE_ASC', 'UTILITY_METER_STATEMENTS_SUM_EXCLUDE_USAGE_DESC', 'UTILITY_METER_STATEMENTS_SUM_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENTS_SUM_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENTS_SUM_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENTS_SUM_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENTS_SUM_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENTS_SUM_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENTS_SUM_METER_LABEL_ASC', 'UTILITY_METER_STATEMENTS_SUM_METER_LABEL_DESC', 'UTILITY_METER_STATEMENTS_SUM_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_SUM_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_SUM_PROVIDER_ASC', 'UTILITY_METER_STATEMENTS_SUM_PROVIDER_DESC', 'UTILITY_METER_STATEMENTS_SUM_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENTS_SUM_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENTS_SUM_START_DATE_ASC', 'UTILITY_METER_STATEMENTS_SUM_START_DATE_DESC', 'UTILITY_METER_STATEMENTS_SUM_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENTS_SUM_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENTS_SUM_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENTS_SUM_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENTS_SUM_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENTS_SUM_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENTS_SUM_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENTS_SUM_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENTS_SUM_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENTS_SUM_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_END_DATE_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_END_DATE_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_EXCLUDE_USAGE_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_EXCLUDE_USAGE_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_METER_LABEL_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_METER_LABEL_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_PROVIDER_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_PROVIDER_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_START_DATE_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_START_DATE_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_END_DATE_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_END_DATE_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_EXCLUDE_USAGE_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_EXCLUDE_USAGE_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_METER_LABEL_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_METER_LABEL_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_PROVIDER_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_PROVIDER_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_START_DATE_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_START_DATE_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_DEMAND_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_DEMAND_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_DEMAND_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_DEMAND_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_USAGE_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_USAGE_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BLENDED_RATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BLENDED_RATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_CREDITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_CREDITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_END_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_END_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_FEES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_FEES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_LOAD_FACTOR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_LOAD_FACTOR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_METER_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_METER_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_NET_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_NET_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_PERCENT_CHANGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_PERCENT_CHANGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_PROVIDER_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_PROVIDER_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_START_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_START_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_TAXES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_TAXES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_COUNT_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_COUNT_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_DEMAND_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_DEMAND_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_DEMAND_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_DEMAND_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_USAGE_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_USAGE_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BLENDED_RATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BLENDED_RATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_DEMAND_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_DEMAND_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_DEMAND_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_DEMAND_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_USAGE_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_USAGE_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BLENDED_RATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BLENDED_RATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_CREDITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_CREDITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_END_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_END_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_FEES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_FEES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_LOAD_FACTOR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_LOAD_FACTOR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_METER_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_METER_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_NET_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_NET_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_PERCENT_CHANGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_PERCENT_CHANGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_PROVIDER_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_PROVIDER_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_START_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_START_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_TAXES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_TAXES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_CREDITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_CREDITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_END_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_END_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_FEES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_FEES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_LOAD_FACTOR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_LOAD_FACTOR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_METER_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_METER_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_NET_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_NET_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_PERCENT_CHANGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_PERCENT_CHANGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_PROVIDER_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_PROVIDER_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_START_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_START_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_TAXES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_TAXES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_DEMAND_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_DEMAND_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_DEMAND_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_DEMAND_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_USAGE_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_USAGE_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_BLENDED_RATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_BLENDED_RATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_CREDITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_CREDITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_END_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_END_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_FEES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_FEES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_LOAD_FACTOR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_LOAD_FACTOR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_METER_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_METER_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_NET_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_NET_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_PERCENT_CHANGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_PERCENT_CHANGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_PROVIDER_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_PROVIDER_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_START_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_START_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_TAXES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_TAXES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_DEMAND_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_DEMAND_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_DEMAND_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_DEMAND_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_USAGE_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_USAGE_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_BLENDED_RATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_BLENDED_RATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_CREDITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_CREDITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_END_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_END_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_FEES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_FEES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_LOAD_FACTOR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_LOAD_FACTOR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_METER_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_METER_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_NET_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_NET_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_PERCENT_CHANGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_PERCENT_CHANGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_PROVIDER_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_PROVIDER_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_START_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_START_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_TAXES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_TAXES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_DEMAND_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_DEMAND_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_DEMAND_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_DEMAND_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_USAGE_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_USAGE_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BLENDED_RATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BLENDED_RATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_CREDITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_CREDITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_END_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_END_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_FEES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_FEES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_LOAD_FACTOR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_LOAD_FACTOR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_METER_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_METER_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_NET_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_NET_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_PERCENT_CHANGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_PERCENT_CHANGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_PROVIDER_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_PROVIDER_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_START_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_START_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_TAXES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_TAXES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_DEMAND_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_DEMAND_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_DEMAND_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_DEMAND_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_USAGE_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_USAGE_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BLENDED_RATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BLENDED_RATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_CREDITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_CREDITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_END_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_END_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_FEES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_FEES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_LOAD_FACTOR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_LOAD_FACTOR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_METER_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_METER_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_NET_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_NET_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_PERCENT_CHANGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_PERCENT_CHANGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_PROVIDER_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_PROVIDER_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_START_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_START_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_TAXES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_TAXES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_DEMAND_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_DEMAND_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_DEMAND_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_DEMAND_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_USAGE_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_USAGE_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_BLENDED_RATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_BLENDED_RATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_CREDITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_CREDITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_END_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_END_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_FEES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_FEES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_LOAD_FACTOR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_LOAD_FACTOR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_METER_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_METER_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_NET_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_NET_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_PERCENT_CHANGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_PERCENT_CHANGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_PROVIDER_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_PROVIDER_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_START_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_START_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_TAXES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_TAXES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_DEMAND_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_DEMAND_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_DEMAND_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_DEMAND_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_USAGE_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_USAGE_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BLENDED_RATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BLENDED_RATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_CREDITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_CREDITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_END_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_END_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_FEES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_FEES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_LOAD_FACTOR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_LOAD_FACTOR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_METER_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_METER_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_NET_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_NET_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_PERCENT_CHANGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_PERCENT_CHANGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_PROVIDER_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_PROVIDER_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_START_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_START_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_TAXES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_TAXES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_DEMAND_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_DEMAND_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_DEMAND_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_DEMAND_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_USAGE_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_USAGE_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BLENDED_RATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BLENDED_RATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_CREDITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_CREDITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_END_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_END_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_FEES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_FEES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_LOAD_FACTOR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_LOAD_FACTOR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_METER_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_METER_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_NET_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_NET_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_PERCENT_CHANGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_PERCENT_CHANGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_PROVIDER_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_PROVIDER_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_START_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_START_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_TAXES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_TAXES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_UTILITY_METER_ID_DESC', 'UTILITY_PROVIDER_ID_ASC', 'UTILITY_PROVIDER_ID_DESC') + + +class UtilityIntegration(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('MANUAL', 'URJANET') + + +class UtilityMeterChargeCategory(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('CREDITS', 'DEMAND', 'FEES', 'TAXES', 'USAGE') + + +class UtilityMeterServiceType(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('ELECTRIC', 'IRRIGATION', 'LIGHTING', 'NATURAL_GAS', 'OTHER', 'PROPANE', 'SANITATION', 'SEWER', 'SOLAR', 'WATER') + + +class UtilityMeterStatementRollupsGroupBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('ACCOUNT_LABEL', 'ACCOUNT_LABEL_DISTINCT', 'ACCOUNT_STATEMENT_ID', 'ACCOUNT_STATEMENT_ID_DISTINCT', 'BILL_ARRIVAL_DATE', 'BILL_ARRIVAL_DATE_DISTINCT', 'BILL_ARRIVAL_DATE_TRUNCATED_TO_DAY', 'BILL_ARRIVAL_DATE_TRUNCATED_TO_HOUR', 'BILL_COST', 'BILL_COST_DISTINCT', 'BILL_DEMAND', 'BILL_DEMAND_COST', 'BILL_DEMAND_COST_DISTINCT', 'BILL_DEMAND_DISTINCT', 'BILL_USAGE', 'BILL_USAGE_COST', 'BILL_USAGE_COST_DISTINCT', 'BILL_USAGE_DISTINCT', 'BLENDED_RATE', 'BLENDED_RATE_DISTINCT', 'CREDITS', 'CREDITS_DISTINCT', 'CURRENCY_CODE', 'CURRENCY_CODE_DISTINCT', 'DAYS_IN_BILL', 'DAYS_IN_BILL_DISTINCT', 'DEMAND_UNITS', 'DEMAND_UNITS_DISTINCT', 'END_DATE', 'END_DATE_DISTINCT', 'FACILITY_ID', 'FACILITY_ID_DISTINCT', 'FEES', 'FEES_DISTINCT', 'IS_VALIDATED', 'IS_VALIDATED_DISTINCT', 'LOAD_FACTOR', 'LOAD_FACTOR_DISTINCT', 'METER_END_DATE_SET', 'METER_END_DATE_SET_DISTINCT', 'METER_LABEL', 'METER_LABEL_DISTINCT', 'METER_STATEMENT_ID', 'METER_STATEMENT_ID_DISTINCT', 'NET_BILL_USAGE', 'NET_BILL_USAGE_DISTINCT', 'PERCENT_CHANGE', 'PERCENT_CHANGE_DISTINCT', 'PROVIDER', 'PROVIDER_DISTINCT', 'SERVICE_TYPE', 'SERVICE_TYPE_DISTINCT', 'START_DATE', 'START_DATE_DISTINCT', 'STATEMENT_MONTH', 'STATEMENT_MONTH_DISTINCT', 'STATEMENT_YEAR', 'STATEMENT_YEAR_DISTINCT', 'TAXES', 'TAXES_DISTINCT', 'USAGE_UNITS', 'USAGE_UNITS_DISTINCT', 'UTILITY_ACCOUNT_ID', 'UTILITY_ACCOUNT_ID_DISTINCT', 'UTILITY_METER_ID', 'UTILITY_METER_ID_DISTINCT') + + +class UtilityMeterStatementRollupsOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('ACCOUNT_LABEL_ASC', 'ACCOUNT_LABEL_DESC', 'ACCOUNT_STATEMENT_ID_ASC', 'ACCOUNT_STATEMENT_ID_DESC', 'BILL_ARRIVAL_DATE_ASC', 'BILL_ARRIVAL_DATE_DESC', 'BILL_COST_ASC', 'BILL_COST_DESC', 'BILL_DEMAND_ASC', 'BILL_DEMAND_COST_ASC', 'BILL_DEMAND_COST_DESC', 'BILL_DEMAND_DESC', 'BILL_USAGE_ASC', 'BILL_USAGE_COST_ASC', 'BILL_USAGE_COST_DESC', 'BILL_USAGE_DESC', 'BLENDED_RATE_ASC', 'BLENDED_RATE_DESC', 'CREDITS_ASC', 'CREDITS_DESC', 'CURRENCY_CODE_ASC', 'CURRENCY_CODE_DESC', 'DAYS_IN_BILL_ASC', 'DAYS_IN_BILL_DESC', 'DEMAND_UNITS_ASC', 'DEMAND_UNITS_DESC', 'END_DATE_ASC', 'END_DATE_DESC', 'FACILITY_ID_ASC', 'FACILITY_ID_DESC', 'FACILITY_NAME_ASC', 'FACILITY_NAME_DESC', 'FEES_ASC', 'FEES_DESC', 'IS_VALIDATED_ASC', 'IS_VALIDATED_DESC', 'LOAD_FACTOR_ASC', 'LOAD_FACTOR_DESC', 'METER_END_DATE_SET_ASC', 'METER_END_DATE_SET_DESC', 'METER_LABEL_ASC', 'METER_LABEL_DESC', 'METER_STATEMENT_ID_ASC', 'METER_STATEMENT_ID_DESC', 'NATURAL', 'NET_BILL_USAGE_ASC', 'NET_BILL_USAGE_DESC', 'N_SIGHT2_ACTIVE_ASC', 'N_SIGHT2_ACTIVE_DESC', 'PERCENT_CHANGE_ASC', 'PERCENT_CHANGE_DESC', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'PROVIDER_ASC', 'PROVIDER_DESC', 'SERVICE_TYPE_ASC', 'SERVICE_TYPE_DESC', 'START_DATE_ASC', 'START_DATE_DESC', 'STATEMENT_DATE_ASC', 'STATEMENT_DATE_DESC', 'STATEMENT_MONTH_ASC', 'STATEMENT_MONTH_DESC', 'STATEMENT_YEAR_ASC', 'STATEMENT_YEAR_DESC', 'TAXES_ASC', 'TAXES_DESC', 'USAGE_UNITS_ASC', 'USAGE_UNITS_DESC', 'UTILITY_ACCOUNT_ID_ASC', 'UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_ID_ASC', 'UTILITY_METER_ID_DESC') + + +class UtilityMeterStatementsGroupBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('ACCOUNT_LABEL', 'ACCOUNT_LABEL_DISTINCT', 'ACCOUNT_STATEMENT_ID', 'ACCOUNT_STATEMENT_ID_DISTINCT', 'BILL_ARRIVAL_DATE', 'BILL_ARRIVAL_DATE_DISTINCT', 'BILL_ARRIVAL_DATE_TRUNCATED_TO_DAY', 'BILL_ARRIVAL_DATE_TRUNCATED_TO_HOUR', 'CURRENCY_CODE', 'CURRENCY_CODE_DISTINCT', 'DAYS_IN_BILL', 'DAYS_IN_BILL_DISTINCT', 'DEMAND_UNITS', 'DEMAND_UNITS_DISTINCT', 'END_DATE', 'END_DATE_DISTINCT', 'EXCLUDE_USAGE', 'EXCLUDE_USAGE_DISTINCT', 'FACILITY_ID', 'FACILITY_ID_DISTINCT', 'IS_VALIDATED', 'IS_VALIDATED_DISTINCT', 'METER_END_DATE_SET', 'METER_END_DATE_SET_DISTINCT', 'METER_LABEL', 'METER_LABEL_DISTINCT', 'METER_STATEMENT_ID', 'METER_STATEMENT_ID_DISTINCT', 'PROVIDER', 'PROVIDER_DISTINCT', 'SERVICE_TYPE', 'SERVICE_TYPE_DISTINCT', 'START_DATE', 'START_DATE_DISTINCT', 'STATEMENT_MONTH', 'STATEMENT_MONTH_DISTINCT', 'STATEMENT_YEAR', 'STATEMENT_YEAR_DISTINCT', 'USAGE_UNITS', 'USAGE_UNITS_DISTINCT', 'UTILITY_ACCOUNT_ID', 'UTILITY_ACCOUNT_ID_DISTINCT', 'UTILITY_METER_ID', 'UTILITY_METER_ID_DISTINCT') + + +class UtilityMeterStatementsOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('ACCOUNT_LABEL_ASC', 'ACCOUNT_LABEL_DESC', 'ACCOUNT_STATEMENT_ID_ASC', 'ACCOUNT_STATEMENT_ID_DESC', 'BILL_ARRIVAL_DATE_ASC', 'BILL_ARRIVAL_DATE_DESC', 'CURRENCY_CODE_ASC', 'CURRENCY_CODE_DESC', 'DAYS_IN_BILL_ASC', 'DAYS_IN_BILL_DESC', 'DEMAND_UNITS_ASC', 'DEMAND_UNITS_DESC', 'END_DATE_ASC', 'END_DATE_DESC', 'EXCLUDE_USAGE_ASC', 'EXCLUDE_USAGE_DESC', 'FACILITY_ID_ASC', 'FACILITY_ID_DESC', 'IS_VALIDATED_ASC', 'IS_VALIDATED_DESC', 'METER_END_DATE_SET_ASC', 'METER_END_DATE_SET_DESC', 'METER_LABEL_ASC', 'METER_LABEL_DESC', 'METER_STATEMENT_ID_ASC', 'METER_STATEMENT_ID_DESC', 'NATURAL', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'PROVIDER_ASC', 'PROVIDER_DESC', 'SERVICE_TYPE_ASC', 'SERVICE_TYPE_DESC', 'START_DATE_ASC', 'START_DATE_DESC', 'STATEMENT_MONTH_ASC', 'STATEMENT_MONTH_DESC', 'STATEMENT_YEAR_ASC', 'STATEMENT_YEAR_DESC', 'USAGE_UNITS_ASC', 'USAGE_UNITS_DESC', 'UTILITY_ACCOUNT_ID_ASC', 'UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_ID_ASC', 'UTILITY_METER_ID_DESC') + + +class UtilityMeterUsageCategory(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('DEMAND', 'USAGE') + + +class UtilityMetersOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('ACTIVE_END_ASC', 'ACTIVE_END_DESC', 'ACTIVE_START_ASC', 'ACTIVE_START_DESC', 'CREATED_AT_ASC', 'CREATED_AT_DESC', 'DEFAULT_DEMAND_UNITS_ASC', 'DEFAULT_DEMAND_UNITS_DESC', 'DEFAULT_USAGE_UNITS_ASC', 'DEFAULT_USAGE_UNITS_DESC', 'DELETED_AT_ASC', 'DELETED_AT_DESC', 'EXCLUDE_USAGE_ASC', 'EXCLUDE_USAGE_DESC', 'FACILITY_ID_ASC', 'FACILITY_ID_DESC', 'ID_ASC', 'ID_DESC', 'INTEGRATION_METER_KEY_ASC', 'INTEGRATION_METER_KEY_DESC', 'METADATA_ASC', 'METADATA_DESC', 'METER_NUMBER_ASC', 'METER_NUMBER_DESC', 'NAME_ASC', 'NAME_DESC', 'NATURAL', 'OVERRIDE_AT_ASC', 'OVERRIDE_AT_DESC', 'OVERRIDE_METER_NUMBER_ASC', 'OVERRIDE_METER_NUMBER_DESC', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'SERVICE_TYPE_ASC', 'SERVICE_TYPE_DESC', 'UPDATED_AT_ASC', 'UPDATED_AT_DESC', 'UTILITY_ACCOUNT_ID_ASC', 'UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_END_DATE_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_END_DATE_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_EXCLUDE_USAGE_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_EXCLUDE_USAGE_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_METER_LABEL_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_METER_LABEL_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_PROVIDER_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_PROVIDER_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_START_DATE_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_START_DATE_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENTS_AVERAGE_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENTS_AVERAGE_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENTS_COUNT_ASC', 'UTILITY_METER_STATEMENTS_COUNT_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_END_DATE_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_END_DATE_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_EXCLUDE_USAGE_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_EXCLUDE_USAGE_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_METER_LABEL_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_METER_LABEL_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_PROVIDER_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_PROVIDER_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_START_DATE_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_START_DATE_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_COUNT_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_END_DATE_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_END_DATE_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_EXCLUDE_USAGE_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_EXCLUDE_USAGE_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_METER_LABEL_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_METER_LABEL_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_PROVIDER_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_PROVIDER_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_START_DATE_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_START_DATE_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENTS_DISTINCT_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENTS_DISTINCT_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENTS_MAX_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENTS_MAX_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENTS_MAX_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_MAX_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_MAX_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENTS_MAX_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENTS_MAX_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENTS_MAX_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENTS_MAX_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENTS_MAX_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENTS_MAX_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENTS_MAX_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENTS_MAX_END_DATE_ASC', 'UTILITY_METER_STATEMENTS_MAX_END_DATE_DESC', 'UTILITY_METER_STATEMENTS_MAX_EXCLUDE_USAGE_ASC', 'UTILITY_METER_STATEMENTS_MAX_EXCLUDE_USAGE_DESC', 'UTILITY_METER_STATEMENTS_MAX_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENTS_MAX_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENTS_MAX_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENTS_MAX_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENTS_MAX_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENTS_MAX_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENTS_MAX_METER_LABEL_ASC', 'UTILITY_METER_STATEMENTS_MAX_METER_LABEL_DESC', 'UTILITY_METER_STATEMENTS_MAX_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_MAX_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_MAX_PROVIDER_ASC', 'UTILITY_METER_STATEMENTS_MAX_PROVIDER_DESC', 'UTILITY_METER_STATEMENTS_MAX_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENTS_MAX_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENTS_MAX_START_DATE_ASC', 'UTILITY_METER_STATEMENTS_MAX_START_DATE_DESC', 'UTILITY_METER_STATEMENTS_MAX_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENTS_MAX_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENTS_MAX_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENTS_MAX_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENTS_MAX_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENTS_MAX_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENTS_MAX_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENTS_MAX_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENTS_MAX_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENTS_MAX_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENTS_MIN_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENTS_MIN_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENTS_MIN_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_MIN_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_MIN_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENTS_MIN_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENTS_MIN_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENTS_MIN_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENTS_MIN_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENTS_MIN_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENTS_MIN_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENTS_MIN_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENTS_MIN_END_DATE_ASC', 'UTILITY_METER_STATEMENTS_MIN_END_DATE_DESC', 'UTILITY_METER_STATEMENTS_MIN_EXCLUDE_USAGE_ASC', 'UTILITY_METER_STATEMENTS_MIN_EXCLUDE_USAGE_DESC', 'UTILITY_METER_STATEMENTS_MIN_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENTS_MIN_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENTS_MIN_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENTS_MIN_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENTS_MIN_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENTS_MIN_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENTS_MIN_METER_LABEL_ASC', 'UTILITY_METER_STATEMENTS_MIN_METER_LABEL_DESC', 'UTILITY_METER_STATEMENTS_MIN_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_MIN_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_MIN_PROVIDER_ASC', 'UTILITY_METER_STATEMENTS_MIN_PROVIDER_DESC', 'UTILITY_METER_STATEMENTS_MIN_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENTS_MIN_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENTS_MIN_START_DATE_ASC', 'UTILITY_METER_STATEMENTS_MIN_START_DATE_DESC', 'UTILITY_METER_STATEMENTS_MIN_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENTS_MIN_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENTS_MIN_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENTS_MIN_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENTS_MIN_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENTS_MIN_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENTS_MIN_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENTS_MIN_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENTS_MIN_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENTS_MIN_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_END_DATE_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_END_DATE_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_EXCLUDE_USAGE_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_EXCLUDE_USAGE_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_METER_LABEL_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_METER_LABEL_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_PROVIDER_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_PROVIDER_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_START_DATE_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_START_DATE_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_POPULATION_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_END_DATE_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_END_DATE_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_EXCLUDE_USAGE_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_EXCLUDE_USAGE_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_METER_LABEL_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_METER_LABEL_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_PROVIDER_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_PROVIDER_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_START_DATE_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_START_DATE_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENTS_SUM_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENTS_SUM_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENTS_SUM_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_SUM_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_SUM_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENTS_SUM_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENTS_SUM_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENTS_SUM_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENTS_SUM_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENTS_SUM_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENTS_SUM_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENTS_SUM_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENTS_SUM_END_DATE_ASC', 'UTILITY_METER_STATEMENTS_SUM_END_DATE_DESC', 'UTILITY_METER_STATEMENTS_SUM_EXCLUDE_USAGE_ASC', 'UTILITY_METER_STATEMENTS_SUM_EXCLUDE_USAGE_DESC', 'UTILITY_METER_STATEMENTS_SUM_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENTS_SUM_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENTS_SUM_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENTS_SUM_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENTS_SUM_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENTS_SUM_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENTS_SUM_METER_LABEL_ASC', 'UTILITY_METER_STATEMENTS_SUM_METER_LABEL_DESC', 'UTILITY_METER_STATEMENTS_SUM_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_SUM_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_SUM_PROVIDER_ASC', 'UTILITY_METER_STATEMENTS_SUM_PROVIDER_DESC', 'UTILITY_METER_STATEMENTS_SUM_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENTS_SUM_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENTS_SUM_START_DATE_ASC', 'UTILITY_METER_STATEMENTS_SUM_START_DATE_DESC', 'UTILITY_METER_STATEMENTS_SUM_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENTS_SUM_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENTS_SUM_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENTS_SUM_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENTS_SUM_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENTS_SUM_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENTS_SUM_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENTS_SUM_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENTS_SUM_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENTS_SUM_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_END_DATE_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_END_DATE_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_EXCLUDE_USAGE_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_EXCLUDE_USAGE_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_METER_LABEL_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_METER_LABEL_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_PROVIDER_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_PROVIDER_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_START_DATE_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_START_DATE_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_END_DATE_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_END_DATE_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_EXCLUDE_USAGE_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_EXCLUDE_USAGE_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_METER_LABEL_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_METER_LABEL_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_PROVIDER_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_PROVIDER_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_START_DATE_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_START_DATE_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_DEMAND_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_DEMAND_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_DEMAND_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_DEMAND_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_USAGE_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_USAGE_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BLENDED_RATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BLENDED_RATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_CREDITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_CREDITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_END_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_END_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_FEES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_FEES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_LOAD_FACTOR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_LOAD_FACTOR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_METER_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_METER_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_NET_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_NET_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_PERCENT_CHANGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_PERCENT_CHANGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_PROVIDER_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_PROVIDER_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_START_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_START_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_TAXES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_TAXES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_COUNT_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_COUNT_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_DEMAND_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_DEMAND_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_DEMAND_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_DEMAND_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_USAGE_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_USAGE_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BLENDED_RATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BLENDED_RATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_DEMAND_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_DEMAND_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_DEMAND_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_DEMAND_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_USAGE_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_USAGE_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BLENDED_RATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BLENDED_RATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_CREDITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_CREDITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_END_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_END_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_FEES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_FEES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_LOAD_FACTOR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_LOAD_FACTOR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_METER_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_METER_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_NET_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_NET_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_PERCENT_CHANGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_PERCENT_CHANGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_PROVIDER_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_PROVIDER_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_START_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_START_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_TAXES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_TAXES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_CREDITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_CREDITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_END_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_END_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_FEES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_FEES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_LOAD_FACTOR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_LOAD_FACTOR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_METER_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_METER_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_NET_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_NET_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_PERCENT_CHANGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_PERCENT_CHANGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_PROVIDER_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_PROVIDER_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_START_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_START_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_TAXES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_TAXES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_DEMAND_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_DEMAND_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_DEMAND_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_DEMAND_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_USAGE_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_USAGE_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_BLENDED_RATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_BLENDED_RATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_CREDITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_CREDITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_END_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_END_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_FEES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_FEES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_LOAD_FACTOR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_LOAD_FACTOR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_METER_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_METER_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_NET_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_NET_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_PERCENT_CHANGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_PERCENT_CHANGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_PROVIDER_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_PROVIDER_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_START_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_START_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_TAXES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_TAXES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MAX_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_DEMAND_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_DEMAND_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_DEMAND_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_DEMAND_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_USAGE_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_USAGE_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_BLENDED_RATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_BLENDED_RATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_CREDITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_CREDITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_END_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_END_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_FEES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_FEES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_LOAD_FACTOR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_LOAD_FACTOR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_METER_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_METER_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_NET_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_NET_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_PERCENT_CHANGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_PERCENT_CHANGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_PROVIDER_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_PROVIDER_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_START_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_START_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_TAXES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_TAXES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_MIN_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_DEMAND_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_DEMAND_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_DEMAND_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_DEMAND_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_USAGE_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_USAGE_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BLENDED_RATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BLENDED_RATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_CREDITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_CREDITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_END_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_END_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_FEES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_FEES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_LOAD_FACTOR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_LOAD_FACTOR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_METER_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_METER_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_NET_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_NET_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_PERCENT_CHANGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_PERCENT_CHANGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_PROVIDER_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_PROVIDER_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_START_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_START_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_TAXES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_TAXES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_DEMAND_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_DEMAND_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_DEMAND_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_DEMAND_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_USAGE_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_USAGE_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BLENDED_RATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BLENDED_RATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_CREDITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_CREDITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_END_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_END_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_FEES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_FEES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_LOAD_FACTOR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_LOAD_FACTOR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_METER_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_METER_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_NET_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_NET_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_PERCENT_CHANGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_PERCENT_CHANGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_PROVIDER_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_PROVIDER_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_START_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_START_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_TAXES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_TAXES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_DEMAND_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_DEMAND_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_DEMAND_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_DEMAND_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_USAGE_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_USAGE_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_BLENDED_RATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_BLENDED_RATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_CREDITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_CREDITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_END_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_END_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_FEES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_FEES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_LOAD_FACTOR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_LOAD_FACTOR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_METER_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_METER_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_NET_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_NET_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_PERCENT_CHANGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_PERCENT_CHANGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_PROVIDER_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_PROVIDER_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_START_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_START_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_TAXES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_TAXES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_SUM_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_DEMAND_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_DEMAND_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_DEMAND_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_DEMAND_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_USAGE_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_USAGE_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BLENDED_RATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BLENDED_RATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_CREDITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_CREDITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_END_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_END_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_FEES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_FEES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_LOAD_FACTOR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_LOAD_FACTOR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_METER_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_METER_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_NET_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_NET_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_PERCENT_CHANGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_PERCENT_CHANGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_PROVIDER_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_PROVIDER_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_START_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_START_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_TAXES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_TAXES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_UTILITY_METER_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_ACCOUNT_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_ACCOUNT_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_ACCOUNT_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_ACCOUNT_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_ARRIVAL_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_ARRIVAL_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_DEMAND_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_DEMAND_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_DEMAND_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_DEMAND_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_USAGE_COST_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_USAGE_COST_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BLENDED_RATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BLENDED_RATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_CREDITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_CREDITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_CURRENCY_CODE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_CURRENCY_CODE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_DAYS_IN_BILL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_DAYS_IN_BILL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_DEMAND_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_DEMAND_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_END_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_END_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_FACILITY_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_FACILITY_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_FEES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_FEES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_IS_VALIDATED_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_IS_VALIDATED_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_LOAD_FACTOR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_LOAD_FACTOR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_METER_END_DATE_SET_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_METER_END_DATE_SET_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_METER_LABEL_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_METER_LABEL_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_METER_STATEMENT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_METER_STATEMENT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_NET_BILL_USAGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_NET_BILL_USAGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_PERCENT_CHANGE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_PERCENT_CHANGE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_PROVIDER_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_PROVIDER_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_SERVICE_TYPE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_SERVICE_TYPE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_START_DATE_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_START_DATE_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_STATEMENT_MONTH_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_STATEMENT_MONTH_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_STATEMENT_YEAR_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_STATEMENT_YEAR_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_TAXES_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_TAXES_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_USAGE_UNITS_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_USAGE_UNITS_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_UTILITY_ACCOUNT_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_UTILITY_ACCOUNT_ID_DESC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_UTILITY_METER_ID_ASC', 'UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_UTILITY_METER_ID_DESC') + + +class UtilityProvidersOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('CREATED_AT_ASC', 'CREATED_AT_DESC', 'ID_ASC', 'ID_DESC', 'NAME_ASC', 'NAME_DESC', 'NATURAL', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'UPDATED_AT_ASC', 'UPDATED_AT_DESC') + + +class VendorUsersOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('COMPANY_ASC', 'COMPANY_DESC', 'CREATED_AT_ASC', 'CREATED_AT_DESC', 'EMAIL_ASC', 'EMAIL_DESC', 'FIRST_NAME_ASC', 'FIRST_NAME_DESC', 'ID_ASC', 'ID_DESC', 'LAST_NAME_ASC', 'LAST_NAME_DESC', 'NATURAL', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'UPDATED_AT_ASC', 'UPDATED_AT_DESC') + + +class VirtualPointIntervalsOrderBy(sgqlc.types.Enum): + __schema__ = nionic_schema + __choices__ = ('CHILD_ID_ASC', 'CHILD_ID_DESC', 'END_TIME_ASC', 'END_TIME_DESC', 'NATURAL', 'PARENT_ID_ASC', 'PARENT_ID_DESC', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'START_TIME_ASC', 'START_TIME_DESC') + + + +######################################################################## +# Input Objects +######################################################################## +class AccessTokenTypeFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('is_null', 'equal_to', 'not_equal_to', 'distinct_from', 'not_distinct_from', 'in_', 'not_in', 'less_than', 'less_than_or_equal_to', 'greater_than', 'greater_than_or_equal_to') + is_null = sgqlc.types.Field(Boolean, graphql_name='isNull') + equal_to = sgqlc.types.Field(AccessTokenType, graphql_name='equalTo') + not_equal_to = sgqlc.types.Field(AccessTokenType, graphql_name='notEqualTo') + distinct_from = sgqlc.types.Field(AccessTokenType, graphql_name='distinctFrom') + not_distinct_from = sgqlc.types.Field(AccessTokenType, graphql_name='notDistinctFrom') + in_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(AccessTokenType)), graphql_name='in') + not_in = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(AccessTokenType)), graphql_name='notIn') + less_than = sgqlc.types.Field(AccessTokenType, graphql_name='lessThan') + less_than_or_equal_to = sgqlc.types.Field(AccessTokenType, graphql_name='lessThanOrEqualTo') + greater_than = sgqlc.types.Field(AccessTokenType, graphql_name='greaterThan') + greater_than_or_equal_to = sgqlc.types.Field(AccessTokenType, graphql_name='greaterThanOrEqualTo') + + +class AccountChargeCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'account_statement_id', 'category', 'interval_start', 'interval_end', 'statement_date', 'normalized_value', 'override_at', 'line_number', 'created_at', 'updated_at', 'deleted_at', 'override_statement_year', 'override_statement_month') + id = sgqlc.types.Field(Int, graphql_name='id') + account_statement_id = sgqlc.types.Field(Int, graphql_name='accountStatementId') + category = sgqlc.types.Field(UtilityAccountChargeCategory, graphql_name='category') + interval_start = sgqlc.types.Field(Date, graphql_name='intervalStart') + interval_end = sgqlc.types.Field(Date, graphql_name='intervalEnd') + statement_date = sgqlc.types.Field(Date, graphql_name='statementDate') + normalized_value = sgqlc.types.Field(Float, graphql_name='normalizedValue') + override_at = sgqlc.types.Field(Datetime, graphql_name='overrideAt') + line_number = sgqlc.types.Field(Int, graphql_name='lineNumber') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') + deleted_at = sgqlc.types.Field(Datetime, graphql_name='deletedAt') + override_statement_year = sgqlc.types.Field(Int, graphql_name='overrideStatementYear') + override_statement_month = sgqlc.types.Field(Int, graphql_name='overrideStatementMonth') + + +class AccountChargeFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('label', 'value', 'id', 'account_statement_id', 'category', 'interval_start', 'interval_end', 'statement_date', 'normalized_value', 'override_at', 'line_number', 'created_at', 'updated_at', 'deleted_at', 'override_statement_year', 'override_statement_month', 'statement_month', 'statement_year', 'and_', 'or_', 'not_') + label = sgqlc.types.Field('StringFilter', graphql_name='label') + value = sgqlc.types.Field('FloatFilter', graphql_name='value') + id = sgqlc.types.Field('IntFilter', graphql_name='id') + account_statement_id = sgqlc.types.Field('IntFilter', graphql_name='accountStatementId') + category = sgqlc.types.Field('UtilityAccountChargeCategoryFilter', graphql_name='category') + interval_start = sgqlc.types.Field('DateFilter', graphql_name='intervalStart') + interval_end = sgqlc.types.Field('DateFilter', graphql_name='intervalEnd') + statement_date = sgqlc.types.Field('DateFilter', graphql_name='statementDate') + normalized_value = sgqlc.types.Field('FloatFilter', graphql_name='normalizedValue') + override_at = sgqlc.types.Field('DatetimeFilter', graphql_name='overrideAt') + line_number = sgqlc.types.Field('IntFilter', graphql_name='lineNumber') + created_at = sgqlc.types.Field('DatetimeFilter', graphql_name='createdAt') + updated_at = sgqlc.types.Field('DatetimeFilter', graphql_name='updatedAt') + deleted_at = sgqlc.types.Field('DatetimeFilter', graphql_name='deletedAt') + override_statement_year = sgqlc.types.Field('IntFilter', graphql_name='overrideStatementYear') + override_statement_month = sgqlc.types.Field('IntFilter', graphql_name='overrideStatementMonth') + statement_month = sgqlc.types.Field('IntFilter', graphql_name='statementMonth') + statement_year = sgqlc.types.Field('IntFilter', graphql_name='statementYear') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('AccountChargeFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('AccountChargeFilter')), graphql_name='or') + not_ = sgqlc.types.Field('AccountChargeFilter', graphql_name='not') + + +class AccountChargeInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'account_statement_id', 'category', 'interval_start', 'interval_end', 'statement_date', 'label', 'value', 'line_number', 'account_statement') + id = sgqlc.types.Field(Int, graphql_name='id') + account_statement_id = sgqlc.types.Field(Int, graphql_name='accountStatementId') + category = sgqlc.types.Field(sgqlc.types.non_null(UtilityAccountChargeCategory), graphql_name='category') + interval_start = sgqlc.types.Field(sgqlc.types.non_null(Date), graphql_name='intervalStart') + interval_end = sgqlc.types.Field(sgqlc.types.non_null(Date), graphql_name='intervalEnd') + statement_date = sgqlc.types.Field(sgqlc.types.non_null(Date), graphql_name='statementDate') + label = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='label') + value = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='value') + line_number = sgqlc.types.Field(Int, graphql_name='lineNumber') + account_statement = sgqlc.types.Field('AccountStatementInput', graphql_name='accountStatement') + + +class AccountChargePatch(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('statement_date', 'label', 'value', 'override_statement_year', 'override_statement_month') + statement_date = sgqlc.types.Field(Date, graphql_name='statementDate') + label = sgqlc.types.Field(String, graphql_name='label') + value = sgqlc.types.Field(Float, graphql_name='value') + override_statement_year = sgqlc.types.Field(Int, graphql_name='overrideStatementYear') + override_statement_month = sgqlc.types.Field(Int, graphql_name='overrideStatementMonth') + + +class AccountMissingStatementFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('utility_account_id', 'statement_date', 'statement_year', 'statement_month', 'metadata', 'and_', 'or_', 'not_') + utility_account_id = sgqlc.types.Field('IntFilter', graphql_name='utilityAccountId') + statement_date = sgqlc.types.Field('DateFilter', graphql_name='statementDate') + statement_year = sgqlc.types.Field('IntFilter', graphql_name='statementYear') + statement_month = sgqlc.types.Field('IntFilter', graphql_name='statementMonth') + metadata = sgqlc.types.Field('JSONListFilter', graphql_name='metadata') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('AccountMissingStatementFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('AccountMissingStatementFilter')), graphql_name='or') + not_ = sgqlc.types.Field('AccountMissingStatementFilter', graphql_name='not') + + +class AccountStatementCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'integration', 'integration_key', 'utility_account_id', 'statement_year', 'statement_month', 'normalized_currency_code', 'override_at', 'is_validated', 'metadata', 'created_at', 'updated_at', 'interval_start', 'interval_end') + id = sgqlc.types.Field(Int, graphql_name='id') + integration = sgqlc.types.Field(UtilityIntegration, graphql_name='integration') + integration_key = sgqlc.types.Field(String, graphql_name='integrationKey') + utility_account_id = sgqlc.types.Field(Int, graphql_name='utilityAccountId') + statement_year = sgqlc.types.Field(Int, graphql_name='statementYear') + statement_month = sgqlc.types.Field(Int, graphql_name='statementMonth') + normalized_currency_code = sgqlc.types.Field(String, graphql_name='normalizedCurrencyCode') + override_at = sgqlc.types.Field(Datetime, graphql_name='overrideAt') + is_validated = sgqlc.types.Field(Boolean, graphql_name='isValidated') + metadata = sgqlc.types.Field(JSON, graphql_name='metadata') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') + interval_start = sgqlc.types.Field(Date, graphql_name='intervalStart') + interval_end = sgqlc.types.Field(Date, graphql_name='intervalEnd') + + +class AccountStatementFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('currency_code', 'id', 'integration', 'integration_key', 'utility_account_id', 'statement_year', 'statement_month', 'normalized_currency_code', 'override_at', 'is_validated', 'metadata', 'created_at', 'updated_at', 'interval_start', 'interval_end', 'deleted_at', 'normalized_total_charges', 'total_charges', 'and_', 'or_', 'not_') + currency_code = sgqlc.types.Field('StringFilter', graphql_name='currencyCode') + id = sgqlc.types.Field('IntFilter', graphql_name='id') + integration = sgqlc.types.Field('UtilityIntegrationFilter', graphql_name='integration') + integration_key = sgqlc.types.Field('StringFilter', graphql_name='integrationKey') + utility_account_id = sgqlc.types.Field('IntFilter', graphql_name='utilityAccountId') + statement_year = sgqlc.types.Field('IntFilter', graphql_name='statementYear') + statement_month = sgqlc.types.Field('IntFilter', graphql_name='statementMonth') + normalized_currency_code = sgqlc.types.Field('StringFilter', graphql_name='normalizedCurrencyCode') + override_at = sgqlc.types.Field('DatetimeFilter', graphql_name='overrideAt') + is_validated = sgqlc.types.Field('BooleanFilter', graphql_name='isValidated') + metadata = sgqlc.types.Field('JSONFilter', graphql_name='metadata') + created_at = sgqlc.types.Field('DatetimeFilter', graphql_name='createdAt') + updated_at = sgqlc.types.Field('DatetimeFilter', graphql_name='updatedAt') + interval_start = sgqlc.types.Field('DateFilter', graphql_name='intervalStart') + interval_end = sgqlc.types.Field('DateFilter', graphql_name='intervalEnd') + deleted_at = sgqlc.types.Field('DatetimeFilter', graphql_name='deletedAt') + normalized_total_charges = sgqlc.types.Field('FloatFilter', graphql_name='normalizedTotalCharges') + total_charges = sgqlc.types.Field('FloatFilter', graphql_name='totalCharges') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('AccountStatementFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('AccountStatementFilter')), graphql_name='or') + not_ = sgqlc.types.Field('AccountStatementFilter', graphql_name='not') + + +class AccountStatementHistoryCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('account_statement_id', 'description', 'created_at') + account_statement_id = sgqlc.types.Field(Int, graphql_name='accountStatementId') + description = sgqlc.types.Field(String, graphql_name='description') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + + +class AccountStatementHistoryFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('account_statement_id', 'description', 'created_at', 'and_', 'or_', 'not_') + account_statement_id = sgqlc.types.Field('IntFilter', graphql_name='accountStatementId') + description = sgqlc.types.Field('StringFilter', graphql_name='description') + created_at = sgqlc.types.Field('DatetimeFilter', graphql_name='createdAt') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('AccountStatementHistoryFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('AccountStatementHistoryFilter')), graphql_name='or') + not_ = sgqlc.types.Field('AccountStatementHistoryFilter', graphql_name='not') + + +class AccountStatementHistoryInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('account_statement_id', 'description', 'account_statement') + account_statement_id = sgqlc.types.Field(Int, graphql_name='accountStatementId') + description = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='description') + account_statement = sgqlc.types.Field('AccountStatementInput', graphql_name='accountStatement') + + +class AccountStatementInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'integration', 'integration_key', 'utility_account_id', 'statement_year', 'statement_month', 'currency_code', 'is_validated', 'metadata', 'interval_start', 'interval_end', 'utility_account') + id = sgqlc.types.Field(Int, graphql_name='id') + integration = sgqlc.types.Field(sgqlc.types.non_null(UtilityIntegration), graphql_name='integration') + integration_key = sgqlc.types.Field(String, graphql_name='integrationKey') + utility_account_id = sgqlc.types.Field(Int, graphql_name='utilityAccountId') + statement_year = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='statementYear') + statement_month = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='statementMonth') + currency_code = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='currencyCode') + is_validated = sgqlc.types.Field(Boolean, graphql_name='isValidated') + metadata = sgqlc.types.Field(JSON, graphql_name='metadata') + interval_start = sgqlc.types.Field(sgqlc.types.non_null(Date), graphql_name='intervalStart') + interval_end = sgqlc.types.Field(sgqlc.types.non_null(Date), graphql_name='intervalEnd') + utility_account = sgqlc.types.Field('UtilityAccountInput', graphql_name='utilityAccount') + + +class AccountStatementPatch(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('statement_year', 'statement_month', 'currency_code', 'is_validated', 'metadata') + statement_year = sgqlc.types.Field(Int, graphql_name='statementYear') + statement_month = sgqlc.types.Field(Int, graphql_name='statementMonth') + currency_code = sgqlc.types.Field(String, graphql_name='currencyCode') + is_validated = sgqlc.types.Field(Boolean, graphql_name='isValidated') + metadata = sgqlc.types.Field(JSON, graphql_name='metadata') + + +class AcknowledgeControlEventInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'control_event_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + control_event_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='controlEventId') + + +class AcknowledgeSuggestionInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'acknowledge') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + acknowledge = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='acknowledge') + + +class AcknowledgementFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('is_null', 'equal_to', 'not_equal_to', 'distinct_from', 'not_distinct_from', 'in_', 'not_in', 'less_than', 'less_than_or_equal_to', 'greater_than', 'greater_than_or_equal_to') + is_null = sgqlc.types.Field(Boolean, graphql_name='isNull') + equal_to = sgqlc.types.Field(Acknowledgement, graphql_name='equalTo') + not_equal_to = sgqlc.types.Field(Acknowledgement, graphql_name='notEqualTo') + distinct_from = sgqlc.types.Field(Acknowledgement, graphql_name='distinctFrom') + not_distinct_from = sgqlc.types.Field(Acknowledgement, graphql_name='notDistinctFrom') + in_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(Acknowledgement)), graphql_name='in') + not_in = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(Acknowledgement)), graphql_name='notIn') + less_than = sgqlc.types.Field(Acknowledgement, graphql_name='lessThan') + less_than_or_equal_to = sgqlc.types.Field(Acknowledgement, graphql_name='lessThanOrEqualTo') + greater_than = sgqlc.types.Field(Acknowledgement, graphql_name='greaterThan') + greater_than_or_equal_to = sgqlc.types.Field(Acknowledgement, graphql_name='greaterThanOrEqualTo') + + +class ActorFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('type', 'display_name', 'id', 'and_', 'or_', 'not_') + type = sgqlc.types.Field(AccessTokenTypeFilter, graphql_name='type') + display_name = sgqlc.types.Field('StringFilter', graphql_name='displayName') + id = sgqlc.types.Field('StringFilter', graphql_name='id') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ActorFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ActorFilter')), graphql_name='or') + not_ = sgqlc.types.Field('ActorFilter', graphql_name='not') + + +class ActorInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('type',) + type = sgqlc.types.Field(AccessTokenType, graphql_name='type') + + +class AddFavoriteFacilityInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'facility_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + facility_id = sgqlc.types.Field(Int, graphql_name='facilityId') + + +class AddMetricMetadataDependencyInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'parent_metric', 'child_metric') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + parent_metric = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='parentMetric') + child_metric = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='childMetric') + + +class AddProjectControllerInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'project_id', 'user_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + project_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='projectId') + user_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='userId') + + +class BalancingAuthorityCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('slug', 'created_at', 'updated_at') + slug = sgqlc.types.Field(String, graphql_name='slug') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') + + +class BalancingAuthorityFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('slug', 'created_at', 'updated_at', 'and_', 'or_', 'not_') + slug = sgqlc.types.Field('StringFilter', graphql_name='slug') + created_at = sgqlc.types.Field('DatetimeFilter', graphql_name='createdAt') + updated_at = sgqlc.types.Field('DatetimeFilter', graphql_name='updatedAt') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('BalancingAuthorityFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('BalancingAuthorityFilter')), graphql_name='or') + not_ = sgqlc.types.Field('BalancingAuthorityFilter', graphql_name='not') + + +class BalancingAuthorityInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('slug', 'created_at', 'updated_at') + slug = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='slug') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') + + +class BigFloatFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('is_null', 'equal_to', 'not_equal_to', 'distinct_from', 'not_distinct_from', 'in_', 'not_in', 'less_than', 'less_than_or_equal_to', 'greater_than', 'greater_than_or_equal_to') + is_null = sgqlc.types.Field(Boolean, graphql_name='isNull') + equal_to = sgqlc.types.Field(BigFloat, graphql_name='equalTo') + not_equal_to = sgqlc.types.Field(BigFloat, graphql_name='notEqualTo') + distinct_from = sgqlc.types.Field(BigFloat, graphql_name='distinctFrom') + not_distinct_from = sgqlc.types.Field(BigFloat, graphql_name='notDistinctFrom') + in_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(BigFloat)), graphql_name='in') + not_in = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(BigFloat)), graphql_name='notIn') + less_than = sgqlc.types.Field(BigFloat, graphql_name='lessThan') + less_than_or_equal_to = sgqlc.types.Field(BigFloat, graphql_name='lessThanOrEqualTo') + greater_than = sgqlc.types.Field(BigFloat, graphql_name='greaterThan') + greater_than_or_equal_to = sgqlc.types.Field(BigFloat, graphql_name='greaterThanOrEqualTo') + + +class BigIntFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('is_null', 'equal_to', 'not_equal_to', 'distinct_from', 'not_distinct_from', 'in_', 'not_in', 'less_than', 'less_than_or_equal_to', 'greater_than', 'greater_than_or_equal_to') + is_null = sgqlc.types.Field(Boolean, graphql_name='isNull') + equal_to = sgqlc.types.Field(BigInt, graphql_name='equalTo') + not_equal_to = sgqlc.types.Field(BigInt, graphql_name='notEqualTo') + distinct_from = sgqlc.types.Field(BigInt, graphql_name='distinctFrom') + not_distinct_from = sgqlc.types.Field(BigInt, graphql_name='notDistinctFrom') + in_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(BigInt)), graphql_name='in') + not_in = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(BigInt)), graphql_name='notIn') + less_than = sgqlc.types.Field(BigInt, graphql_name='lessThan') + less_than_or_equal_to = sgqlc.types.Field(BigInt, graphql_name='lessThanOrEqualTo') + greater_than = sgqlc.types.Field(BigInt, graphql_name='greaterThan') + greater_than_or_equal_to = sgqlc.types.Field(BigInt, graphql_name='greaterThanOrEqualTo') + + +class BooleanFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('is_null', 'equal_to', 'not_equal_to', 'distinct_from', 'not_distinct_from', 'in_', 'not_in', 'less_than', 'less_than_or_equal_to', 'greater_than', 'greater_than_or_equal_to') + is_null = sgqlc.types.Field(Boolean, graphql_name='isNull') + equal_to = sgqlc.types.Field(Boolean, graphql_name='equalTo') + not_equal_to = sgqlc.types.Field(Boolean, graphql_name='notEqualTo') + distinct_from = sgqlc.types.Field(Boolean, graphql_name='distinctFrom') + not_distinct_from = sgqlc.types.Field(Boolean, graphql_name='notDistinctFrom') + in_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(Boolean)), graphql_name='in') + not_in = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(Boolean)), graphql_name='notIn') + less_than = sgqlc.types.Field(Boolean, graphql_name='lessThan') + less_than_or_equal_to = sgqlc.types.Field(Boolean, graphql_name='lessThanOrEqualTo') + greater_than = sgqlc.types.Field(Boolean, graphql_name='greaterThan') + greater_than_or_equal_to = sgqlc.types.Field(Boolean, graphql_name='greaterThanOrEqualTo') + + +class BuildingAreaCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'building_area_type_id', 'facility_id', 'geometry', 'label', 'description', 'created_at', 'updated_at') + id = sgqlc.types.Field(Int, graphql_name='id') + building_area_type_id = sgqlc.types.Field(String, graphql_name='buildingAreaTypeId') + facility_id = sgqlc.types.Field(Int, graphql_name='facilityId') + geometry = sgqlc.types.Field(GeoJSON, graphql_name='geometry') + label = sgqlc.types.Field(String, graphql_name='label') + description = sgqlc.types.Field(String, graphql_name='description') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') + + +class BuildingAreaFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'building_area_type_id', 'facility_id', 'label', 'description', 'created_at', 'updated_at', 'and_', 'or_', 'not_') + id = sgqlc.types.Field('IntFilter', graphql_name='id') + building_area_type_id = sgqlc.types.Field('StringFilter', graphql_name='buildingAreaTypeId') + facility_id = sgqlc.types.Field('IntFilter', graphql_name='facilityId') + label = sgqlc.types.Field('StringFilter', graphql_name='label') + description = sgqlc.types.Field('StringFilter', graphql_name='description') + created_at = sgqlc.types.Field('DatetimeFilter', graphql_name='createdAt') + updated_at = sgqlc.types.Field('DatetimeFilter', graphql_name='updatedAt') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('BuildingAreaFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('BuildingAreaFilter')), graphql_name='or') + not_ = sgqlc.types.Field('BuildingAreaFilter', graphql_name='not') + + +class BuildingAreaInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('building_area_type_id', 'facility_id', 'geometry', 'label', 'description', 'building_area_type') + building_area_type_id = sgqlc.types.Field(String, graphql_name='buildingAreaTypeId') + facility_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='facilityId') + geometry = sgqlc.types.Field(GeoJSON, graphql_name='geometry') + label = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='label') + description = sgqlc.types.Field(String, graphql_name='description') + building_area_type = sgqlc.types.Field('BuildingAreaTypeInput', graphql_name='buildingAreaType') + + +class BuildingAreaPatch(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('building_area_type_id', 'facility_id', 'geometry', 'label', 'description') + building_area_type_id = sgqlc.types.Field(String, graphql_name='buildingAreaTypeId') + facility_id = sgqlc.types.Field(Int, graphql_name='facilityId') + geometry = sgqlc.types.Field(GeoJSON, graphql_name='geometry') + label = sgqlc.types.Field(String, graphql_name='label') + description = sgqlc.types.Field(String, graphql_name='description') + + +class BuildingAreaTypeCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('type', 'description', 'metadata') + type = sgqlc.types.Field(String, graphql_name='type') + description = sgqlc.types.Field(String, graphql_name='description') + metadata = sgqlc.types.Field(JSON, graphql_name='metadata') + + +class BuildingAreaTypeFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('type', 'description', 'metadata', 'and_', 'or_', 'not_') + type = sgqlc.types.Field('StringFilter', graphql_name='type') + description = sgqlc.types.Field('StringFilter', graphql_name='description') + metadata = sgqlc.types.Field('JSONFilter', graphql_name='metadata') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('BuildingAreaTypeFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('BuildingAreaTypeFilter')), graphql_name='or') + not_ = sgqlc.types.Field('BuildingAreaTypeFilter', graphql_name='not') + + +class BuildingAreaTypeInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('type', 'description', 'metadata') + type = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='type') + description = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='description') + metadata = sgqlc.types.Field(JSON, graphql_name='metadata') + + +class BuildingAreaTypePatch(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('type', 'description', 'metadata') + type = sgqlc.types.Field(String, graphql_name='type') + description = sgqlc.types.Field(String, graphql_name='description') + metadata = sgqlc.types.Field(JSON, graphql_name='metadata') + + +class ClearFacilityCommunicationInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'facility_communication_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + facility_communication_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='facilityCommunicationId') + + +class ComponentCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'name', 'machine_user_id', 'facility_id', 'out_of_service', 'created_at', 'updated_at', 'alias') + id = sgqlc.types.Field(Int, graphql_name='id') + name = sgqlc.types.Field(String, graphql_name='name') + machine_user_id = sgqlc.types.Field(BigInt, graphql_name='machineUserId') + facility_id = sgqlc.types.Field(Int, graphql_name='facilityId') + out_of_service = sgqlc.types.Field(Boolean, graphql_name='outOfService') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') + alias = sgqlc.types.Field(String, graphql_name='alias') + + +class ComponentFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('can_write', 'id', 'name', 'machine_user_id', 'facility_id', 'out_of_service', 'created_at', 'updated_at', 'alias', 'and_', 'or_', 'not_') + can_write = sgqlc.types.Field('PermissionBooleanFilter', graphql_name='canWrite') + id = sgqlc.types.Field('IntFilter', graphql_name='id') + name = sgqlc.types.Field('StringFilter', graphql_name='name') + machine_user_id = sgqlc.types.Field(BigIntFilter, graphql_name='machineUserId') + facility_id = sgqlc.types.Field('IntFilter', graphql_name='facilityId') + out_of_service = sgqlc.types.Field(BooleanFilter, graphql_name='outOfService') + created_at = sgqlc.types.Field('DatetimeFilter', graphql_name='createdAt') + updated_at = sgqlc.types.Field('DatetimeFilter', graphql_name='updatedAt') + alias = sgqlc.types.Field('StringFilter', graphql_name='alias') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ComponentFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ComponentFilter')), graphql_name='or') + not_ = sgqlc.types.Field('ComponentFilter', graphql_name='not') + + +class ComponentInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'name', 'machine_user_id', 'facility_id', 'out_of_service', 'created_at', 'updated_at', 'alias', 'machine_user') + id = sgqlc.types.Field(Int, graphql_name='id') + name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') + machine_user_id = sgqlc.types.Field(BigInt, graphql_name='machineUserId') + facility_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='facilityId') + out_of_service = sgqlc.types.Field(Boolean, graphql_name='outOfService') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') + alias = sgqlc.types.Field(String, graphql_name='alias') + machine_user = sgqlc.types.Field('MachineUserInput', graphql_name='machineUser') + + +class ComponentPatch(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'name', 'machine_user_id', 'facility_id', 'out_of_service', 'created_at', 'updated_at', 'alias') + id = sgqlc.types.Field(Int, graphql_name='id') + name = sgqlc.types.Field(String, graphql_name='name') + machine_user_id = sgqlc.types.Field(BigInt, graphql_name='machineUserId') + facility_id = sgqlc.types.Field(Int, graphql_name='facilityId') + out_of_service = sgqlc.types.Field(Boolean, graphql_name='outOfService') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') + alias = sgqlc.types.Field(String, graphql_name='alias') + + +class ControlEventActivityLogCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('control_event_id', 'time', 'type', 'actor', 'metadata') + control_event_id = sgqlc.types.Field(Int, graphql_name='controlEventId') + time = sgqlc.types.Field(Datetime, graphql_name='time') + type = sgqlc.types.Field(String, graphql_name='type') + actor = sgqlc.types.Field(ActorInput, graphql_name='actor') + metadata = sgqlc.types.Field(JSON, graphql_name='metadata') + + +class ControlEventActivityLogFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('control_event_id', 'time', 'type', 'actor', 'and_', 'or_', 'not_') + control_event_id = sgqlc.types.Field('IntFilter', graphql_name='controlEventId') + time = sgqlc.types.Field('DatetimeFilter', graphql_name='time') + type = sgqlc.types.Field('StringFilter', graphql_name='type') + actor = sgqlc.types.Field(ActorFilter, graphql_name='actor') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ControlEventActivityLogFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ControlEventActivityLogFilter')), graphql_name='or') + not_ = sgqlc.types.Field('ControlEventActivityLogFilter', graphql_name='not') + + +class ControlEventCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'name', 'start_time', 'end_time', 'component_id', 'created_at', 'updated_at', 'acknowledged_at', 'remote_metadata') + id = sgqlc.types.Field(Int, graphql_name='id') + name = sgqlc.types.Field(String, graphql_name='name') + start_time = sgqlc.types.Field(Datetime, graphql_name='startTime') + end_time = sgqlc.types.Field(Datetime, graphql_name='endTime') + component_id = sgqlc.types.Field(Int, graphql_name='componentId') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') + acknowledged_at = sgqlc.types.Field(Datetime, graphql_name='acknowledgedAt') + remote_metadata = sgqlc.types.Field(JSON, graphql_name='remoteMetadata') + + +class ControlEventFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('can_write', 'id', 'name', 'start_time', 'end_time', 'component_id', 'created_at', 'updated_at', 'acknowledged_at', 'remote_metadata', 'current_state', 'is_acknowledged', 'and_', 'or_', 'not_') + can_write = sgqlc.types.Field('PermissionBooleanFilter', graphql_name='canWrite') + id = sgqlc.types.Field('IntFilter', graphql_name='id') + name = sgqlc.types.Field('StringFilter', graphql_name='name') + start_time = sgqlc.types.Field('DatetimeFilter', graphql_name='startTime') + end_time = sgqlc.types.Field('DatetimeFilter', graphql_name='endTime') + component_id = sgqlc.types.Field('IntFilter', graphql_name='componentId') + created_at = sgqlc.types.Field('DatetimeFilter', graphql_name='createdAt') + updated_at = sgqlc.types.Field('DatetimeFilter', graphql_name='updatedAt') + acknowledged_at = sgqlc.types.Field('DatetimeFilter', graphql_name='acknowledgedAt') + remote_metadata = sgqlc.types.Field('JSONFilter', graphql_name='remoteMetadata') + current_state = sgqlc.types.Field('StringFilter', graphql_name='currentState') + is_acknowledged = sgqlc.types.Field(BooleanFilter, graphql_name='isAcknowledged') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ControlEventFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ControlEventFilter')), graphql_name='or') + not_ = sgqlc.types.Field('ControlEventFilter', graphql_name='not') + + +class ControlEventInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'name', 'start_time', 'end_time', 'component_id', 'created_at', 'updated_at', 'remote_metadata') + id = sgqlc.types.Field(Int, graphql_name='id') + name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') + start_time = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='startTime') + end_time = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='endTime') + component_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='componentId') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') + remote_metadata = sgqlc.types.Field(JSON, graphql_name='remoteMetadata') + + +class ControlEventLogCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'control_event_id', 'message', 'created_at', 'actor') + id = sgqlc.types.Field(Int, graphql_name='id') + control_event_id = sgqlc.types.Field(Int, graphql_name='controlEventId') + message = sgqlc.types.Field(String, graphql_name='message') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + actor = sgqlc.types.Field(ActorInput, graphql_name='actor') + + +class ControlEventLogFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'control_event_id', 'message', 'created_at', 'actor', 'and_', 'or_', 'not_') + id = sgqlc.types.Field('IntFilter', graphql_name='id') + control_event_id = sgqlc.types.Field('IntFilter', graphql_name='controlEventId') + message = sgqlc.types.Field('StringFilter', graphql_name='message') + created_at = sgqlc.types.Field('DatetimeFilter', graphql_name='createdAt') + actor = sgqlc.types.Field(ActorFilter, graphql_name='actor') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ControlEventLogFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ControlEventLogFilter')), graphql_name='or') + not_ = sgqlc.types.Field('ControlEventLogFilter', graphql_name='not') + + +class ControlEventLogInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('control_event_id', 'message', 'control_event') + control_event_id = sgqlc.types.Field(Int, graphql_name='controlEventId') + message = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='message') + control_event = sgqlc.types.Field(ControlEventInput, graphql_name='controlEvent') + + +class ControlEventLogPatch(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('control_event_id', 'message') + control_event_id = sgqlc.types.Field(Int, graphql_name='controlEventId') + message = sgqlc.types.Field(String, graphql_name='message') + + +class ControlEventPatch(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'name', 'start_time', 'end_time', 'updated_at', 'remote_metadata') + id = sgqlc.types.Field(Int, graphql_name='id') + name = sgqlc.types.Field(String, graphql_name='name') + start_time = sgqlc.types.Field(Datetime, graphql_name='startTime') + end_time = sgqlc.types.Field(Datetime, graphql_name='endTime') + updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') + remote_metadata = sgqlc.types.Field(JSON, graphql_name='remoteMetadata') + + +class ControlEventStateCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('control_event_id', 'state', 'description', 'created_at', 'actor') + control_event_id = sgqlc.types.Field(Int, graphql_name='controlEventId') + state = sgqlc.types.Field(String, graphql_name='state') + description = sgqlc.types.Field(String, graphql_name='description') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + actor = sgqlc.types.Field(ActorInput, graphql_name='actor') + + +class ControlEventStateFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('control_event_id', 'state', 'description', 'created_at', 'actor', 'and_', 'or_', 'not_') + control_event_id = sgqlc.types.Field('IntFilter', graphql_name='controlEventId') + state = sgqlc.types.Field('StringFilter', graphql_name='state') + description = sgqlc.types.Field('StringFilter', graphql_name='description') + created_at = sgqlc.types.Field('DatetimeFilter', graphql_name='createdAt') + actor = sgqlc.types.Field(ActorFilter, graphql_name='actor') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ControlEventStateFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ControlEventStateFilter')), graphql_name='or') + not_ = sgqlc.types.Field('ControlEventStateFilter', graphql_name='not') + + +class ControlTypeFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('is_null', 'equal_to', 'not_equal_to', 'distinct_from', 'not_distinct_from', 'in_', 'not_in', 'less_than', 'less_than_or_equal_to', 'greater_than', 'greater_than_or_equal_to') + is_null = sgqlc.types.Field(Boolean, graphql_name='isNull') + equal_to = sgqlc.types.Field(ControlType, graphql_name='equalTo') + not_equal_to = sgqlc.types.Field(ControlType, graphql_name='notEqualTo') + distinct_from = sgqlc.types.Field(ControlType, graphql_name='distinctFrom') + not_distinct_from = sgqlc.types.Field(ControlType, graphql_name='notDistinctFrom') + in_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(ControlType)), graphql_name='in') + not_in = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(ControlType)), graphql_name='notIn') + less_than = sgqlc.types.Field(ControlType, graphql_name='lessThan') + less_than_or_equal_to = sgqlc.types.Field(ControlType, graphql_name='lessThanOrEqualTo') + greater_than = sgqlc.types.Field(ControlType, graphql_name='greaterThan') + greater_than_or_equal_to = sgqlc.types.Field(ControlType, graphql_name='greaterThanOrEqualTo') + + +class CountryFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('is_null', 'equal_to', 'not_equal_to', 'distinct_from', 'not_distinct_from', 'in_', 'not_in', 'less_than', 'less_than_or_equal_to', 'greater_than', 'greater_than_or_equal_to') + is_null = sgqlc.types.Field(Boolean, graphql_name='isNull') + equal_to = sgqlc.types.Field(Country, graphql_name='equalTo') + not_equal_to = sgqlc.types.Field(Country, graphql_name='notEqualTo') + distinct_from = sgqlc.types.Field(Country, graphql_name='distinctFrom') + not_distinct_from = sgqlc.types.Field(Country, graphql_name='notDistinctFrom') + in_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(Country)), graphql_name='in') + not_in = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(Country)), graphql_name='notIn') + less_than = sgqlc.types.Field(Country, graphql_name='lessThan') + less_than_or_equal_to = sgqlc.types.Field(Country, graphql_name='lessThanOrEqualTo') + greater_than = sgqlc.types.Field(Country, graphql_name='greaterThan') + greater_than_or_equal_to = sgqlc.types.Field(Country, graphql_name='greaterThanOrEqualTo') + + +class CreateAccountChargeInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'account_charge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + account_charge = sgqlc.types.Field(sgqlc.types.non_null(AccountChargeInput), graphql_name='accountCharge') + + +class CreateAccountStatementHistoryInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'account_statement_history') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + account_statement_history = sgqlc.types.Field(sgqlc.types.non_null(AccountStatementHistoryInput), graphql_name='accountStatementHistory') + + +class CreateAccountStatementInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'account_statement') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + account_statement = sgqlc.types.Field(sgqlc.types.non_null(AccountStatementInput), graphql_name='accountStatement') + + +class CreateBalancingAuthorityInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'balancing_authority') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + balancing_authority = sgqlc.types.Field(sgqlc.types.non_null(BalancingAuthorityInput), graphql_name='balancingAuthority') + + +class CreateBuildingAreaInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'building_area') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + building_area = sgqlc.types.Field(sgqlc.types.non_null(BuildingAreaInput), graphql_name='buildingArea') + + +class CreateBuildingAreaTypeInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'building_area_type') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + building_area_type = sgqlc.types.Field(sgqlc.types.non_null(BuildingAreaTypeInput), graphql_name='buildingAreaType') + + +class CreateComponentInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'component') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + component = sgqlc.types.Field(sgqlc.types.non_null(ComponentInput), graphql_name='component') + + +class CreateControlEventInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'control_event') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + control_event = sgqlc.types.Field(sgqlc.types.non_null(ControlEventInput), graphql_name='controlEvent') + + +class CreateControlEventLogInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'control_event_log') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + control_event_log = sgqlc.types.Field(sgqlc.types.non_null(ControlEventLogInput), graphql_name='controlEventLog') + + +class CreateDataPointInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'data_point') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + data_point = sgqlc.types.Field(sgqlc.types.non_null('DataPointInput'), graphql_name='dataPoint') + + +class CreateDataSourceInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'data_source') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + data_source = sgqlc.types.Field(sgqlc.types.non_null('DataSourceInput'), graphql_name='dataSource') + + +class CreateDependencyInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'dependency') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + dependency = sgqlc.types.Field(sgqlc.types.non_null('DependencyInput'), graphql_name='dependency') + + +class CreateFacilityCommunicationInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'facility_communication') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + facility_communication = sgqlc.types.Field(sgqlc.types.non_null('FacilityCommunicationInput'), graphql_name='facilityCommunication') + + +class CreateFacilityDataSourceInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'facility_data_source') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + facility_data_source = sgqlc.types.Field(sgqlc.types.non_null('FacilityDataSourceInput'), graphql_name='facilityDataSource') + + +class CreateFacilityGroupInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'facility_group') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + facility_group = sgqlc.types.Field(sgqlc.types.non_null('FacilityGroupInput'), graphql_name='facilityGroup') + + +class CreateFacilityGroupsLinkerInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'facility_groups_linker') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + facility_groups_linker = sgqlc.types.Field(sgqlc.types.non_null('FacilityGroupsLinkerInput'), graphql_name='facilityGroupsLinker') + + +class CreateFacilityInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'facility') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + facility = sgqlc.types.Field(sgqlc.types.non_null('FacilityInput'), graphql_name='facility') + + +class CreateFieldGroupInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'field_group') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + field_group = sgqlc.types.Field(sgqlc.types.non_null('FieldGroupInput'), graphql_name='fieldGroup') + + +class CreateMachineAccessTokenInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('description', 'expires_at', 'machine_user_id', 'client_mutation_id') + description = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='description') + expires_at = sgqlc.types.Field(Datetime, graphql_name='expiresAt') + machine_user_id = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='machineUserId') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + + +class CreateMachineUserInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'machine_user') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + machine_user = sgqlc.types.Field(sgqlc.types.non_null('MachineUserInput'), graphql_name='machineUser') + + +class CreateMeterChargeInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'meter_charge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + meter_charge = sgqlc.types.Field(sgqlc.types.non_null('MeterChargeInput'), graphql_name='meterCharge') + + +class CreateMeterStatementHistoryInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'meter_statement_history') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + meter_statement_history = sgqlc.types.Field(sgqlc.types.non_null('MeterStatementHistoryInput'), graphql_name='meterStatementHistory') + + +class CreateMeterStatementInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'meter_statement') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + meter_statement = sgqlc.types.Field(sgqlc.types.non_null('MeterStatementInput'), graphql_name='meterStatement') + + +class CreateMeterUsageInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'meter_usage') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + meter_usage = sgqlc.types.Field(sgqlc.types.non_null('MeterUsageInput'), graphql_name='meterUsage') + + +class CreateProgramInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'program') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + program = sgqlc.types.Field(sgqlc.types.non_null('ProgramInput'), graphql_name='program') + + +class CreateProjectComponentInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'project_component') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + project_component = sgqlc.types.Field(sgqlc.types.non_null('ProjectComponentInput'), graphql_name='projectComponent') + + +class CreateProjectFieldInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'project_field') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + project_field = sgqlc.types.Field(sgqlc.types.non_null('ProjectFieldInput'), graphql_name='projectField') + + +class CreateProjectInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'project') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + project = sgqlc.types.Field(sgqlc.types.non_null('ProjectInput'), graphql_name='project') + + +class CreateProjectWatcherInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'project_watcher') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + project_watcher = sgqlc.types.Field(sgqlc.types.non_null('ProjectWatcherInput'), graphql_name='projectWatcher') + + +class CreateReportExecutionInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'report_execution') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + report_execution = sgqlc.types.Field(sgqlc.types.non_null('ReportExecutionInput'), graphql_name='reportExecution') + + +class CreateSavingsEventInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'savings_event') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + savings_event = sgqlc.types.Field(sgqlc.types.non_null('SavingsEventInput'), graphql_name='savingsEvent') + + +class CreateSuggestionActivityLogInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'suggestion_activity_log') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + suggestion_activity_log = sgqlc.types.Field(sgqlc.types.non_null('SuggestionActivityLogInput'), graphql_name='suggestionActivityLog') + + +class CreateSuggestionControlEventInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'suggestion_control_event') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + suggestion_control_event = sgqlc.types.Field(sgqlc.types.non_null('SuggestionControlEventInput'), graphql_name='suggestionControlEvent') + + +class CreateSuggestionInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'suggestion') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + suggestion = sgqlc.types.Field(sgqlc.types.non_null('SuggestionInput'), graphql_name='suggestion') + + +class CreateUserAccessTokenInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('description', 'expires_at', 'client_mutation_id') + description = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='description') + expires_at = sgqlc.types.Field(Datetime, graphql_name='expiresAt') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + + +class CreateUtilityAccountInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'utility_account') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + utility_account = sgqlc.types.Field(sgqlc.types.non_null('UtilityAccountInput'), graphql_name='utilityAccount') + + +class CreateUtilityMeterInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'utility_meter') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + utility_meter = sgqlc.types.Field(sgqlc.types.non_null('UtilityMeterInput'), graphql_name='utilityMeter') + + +class CreateUtilityProviderInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'utility_provider') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + utility_provider = sgqlc.types.Field(sgqlc.types.non_null('UtilityProviderInput'), graphql_name='utilityProvider') + + +class CreateVendorUserInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'vendor_user') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + vendor_user = sgqlc.types.Field(sgqlc.types.non_null('VendorUserInput'), graphql_name='vendorUser') + + +class CreateVendorUserMachineUserInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'vendor_user_machine_user') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + vendor_user_machine_user = sgqlc.types.Field(sgqlc.types.non_null('VendorUserMachineUserInput'), graphql_name='vendorUserMachineUser') + + +class CreateVirtualPointIntervalInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'virtual_point_interval') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + virtual_point_interval = sgqlc.types.Field(sgqlc.types.non_null('VirtualPointIntervalInput'), graphql_name='virtualPointInterval') + + +class DataPointCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'data_source_name', 'name', 'alias', 'description', 'units', 'expression', 'data_type', 'created_at', 'updated_at', 'formatted_expression', 'type', 'frequency', 'location_type') + id = sgqlc.types.Field(BigInt, graphql_name='id') + data_source_name = sgqlc.types.Field(String, graphql_name='dataSourceName') + name = sgqlc.types.Field(String, graphql_name='name') + alias = sgqlc.types.Field(String, graphql_name='alias') + description = sgqlc.types.Field(String, graphql_name='description') + units = sgqlc.types.Field(String, graphql_name='units') + expression = sgqlc.types.Field(String, graphql_name='expression') + data_type = sgqlc.types.Field(String, graphql_name='dataType') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') + formatted_expression = sgqlc.types.Field(String, graphql_name='formattedExpression') + type = sgqlc.types.Field(DataPointType, graphql_name='type') + frequency = sgqlc.types.Field(Int, graphql_name='frequency') + location_type = sgqlc.types.Field(String, graphql_name='locationType') + + +class DataPointFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'data_source_name', 'name', 'alias', 'description', 'units', 'expression', 'data_type', 'created_at', 'updated_at', 'formatted_expression', 'type', 'frequency', 'location_type', 'is_composite', 'and_', 'or_', 'not_') + id = sgqlc.types.Field(BigIntFilter, graphql_name='id') + data_source_name = sgqlc.types.Field('StringFilter', graphql_name='dataSourceName') + name = sgqlc.types.Field('StringFilter', graphql_name='name') + alias = sgqlc.types.Field('StringFilter', graphql_name='alias') + description = sgqlc.types.Field('StringFilter', graphql_name='description') + units = sgqlc.types.Field('StringFilter', graphql_name='units') + expression = sgqlc.types.Field('StringFilter', graphql_name='expression') + data_type = sgqlc.types.Field('StringFilter', graphql_name='dataType') + created_at = sgqlc.types.Field('DatetimeFilter', graphql_name='createdAt') + updated_at = sgqlc.types.Field('DatetimeFilter', graphql_name='updatedAt') + formatted_expression = sgqlc.types.Field('StringFilter', graphql_name='formattedExpression') + type = sgqlc.types.Field('DataPointTypeFilter', graphql_name='type') + frequency = sgqlc.types.Field('IntFilter', graphql_name='frequency') + location_type = sgqlc.types.Field('StringFilter', graphql_name='locationType') + is_composite = sgqlc.types.Field(BooleanFilter, graphql_name='isComposite') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('DataPointFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('DataPointFilter')), graphql_name='or') + not_ = sgqlc.types.Field('DataPointFilter', graphql_name='not') + + +class DataPointInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('data_source_name', 'name', 'alias', 'description', 'units', 'expression', 'data_type', 'type', 'frequency', 'location_type', 'data_source') + data_source_name = sgqlc.types.Field(String, graphql_name='dataSourceName') + name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') + alias = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='alias') + description = sgqlc.types.Field(String, graphql_name='description') + units = sgqlc.types.Field(String, graphql_name='units') + expression = sgqlc.types.Field(String, graphql_name='expression') + data_type = sgqlc.types.Field(String, graphql_name='dataType') + type = sgqlc.types.Field(DataPointType, graphql_name='type') + frequency = sgqlc.types.Field(Int, graphql_name='frequency') + location_type = sgqlc.types.Field(String, graphql_name='locationType') + data_source = sgqlc.types.Field('DataSourceInput', graphql_name='dataSource') + + +class DataPointPatch(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('alias', 'description', 'units', 'expression', 'data_type', 'type', 'frequency', 'location_type') + alias = sgqlc.types.Field(String, graphql_name='alias') + description = sgqlc.types.Field(String, graphql_name='description') + units = sgqlc.types.Field(String, graphql_name='units') + expression = sgqlc.types.Field(String, graphql_name='expression') + data_type = sgqlc.types.Field(String, graphql_name='dataType') + type = sgqlc.types.Field(DataPointType, graphql_name='type') + frequency = sgqlc.types.Field(Int, graphql_name='frequency') + location_type = sgqlc.types.Field(String, graphql_name='locationType') + + +class DataPointTypeFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('is_null', 'equal_to', 'not_equal_to', 'distinct_from', 'not_distinct_from', 'in_', 'not_in', 'less_than', 'less_than_or_equal_to', 'greater_than', 'greater_than_or_equal_to') + is_null = sgqlc.types.Field(Boolean, graphql_name='isNull') + equal_to = sgqlc.types.Field(DataPointType, graphql_name='equalTo') + not_equal_to = sgqlc.types.Field(DataPointType, graphql_name='notEqualTo') + distinct_from = sgqlc.types.Field(DataPointType, graphql_name='distinctFrom') + not_distinct_from = sgqlc.types.Field(DataPointType, graphql_name='notDistinctFrom') + in_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(DataPointType)), graphql_name='in') + not_in = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(DataPointType)), graphql_name='notIn') + less_than = sgqlc.types.Field(DataPointType, graphql_name='lessThan') + less_than_or_equal_to = sgqlc.types.Field(DataPointType, graphql_name='lessThanOrEqualTo') + greater_than = sgqlc.types.Field(DataPointType, graphql_name='greaterThan') + greater_than_or_equal_to = sgqlc.types.Field(DataPointType, graphql_name='greaterThanOrEqualTo') + + +class DataSourceCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('name', 'description', 'created_at', 'updated_at') + name = sgqlc.types.Field(String, graphql_name='name') + description = sgqlc.types.Field(String, graphql_name='description') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') + + +class DataSourceFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('name', 'description', 'created_at', 'updated_at', 'and_', 'or_', 'not_') + name = sgqlc.types.Field('StringFilter', graphql_name='name') + description = sgqlc.types.Field('StringFilter', graphql_name='description') + created_at = sgqlc.types.Field('DatetimeFilter', graphql_name='createdAt') + updated_at = sgqlc.types.Field('DatetimeFilter', graphql_name='updatedAt') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('DataSourceFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('DataSourceFilter')), graphql_name='or') + not_ = sgqlc.types.Field('DataSourceFilter', graphql_name='not') + + +class DataSourceInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('name', 'description') + name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') + description = sgqlc.types.Field(String, graphql_name='description') + + +class DateFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('is_null', 'equal_to', 'not_equal_to', 'distinct_from', 'not_distinct_from', 'in_', 'not_in', 'less_than', 'less_than_or_equal_to', 'greater_than', 'greater_than_or_equal_to') + is_null = sgqlc.types.Field(Boolean, graphql_name='isNull') + equal_to = sgqlc.types.Field(Date, graphql_name='equalTo') + not_equal_to = sgqlc.types.Field(Date, graphql_name='notEqualTo') + distinct_from = sgqlc.types.Field(Date, graphql_name='distinctFrom') + not_distinct_from = sgqlc.types.Field(Date, graphql_name='notDistinctFrom') + in_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(Date)), graphql_name='in') + not_in = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(Date)), graphql_name='notIn') + less_than = sgqlc.types.Field(Date, graphql_name='lessThan') + less_than_or_equal_to = sgqlc.types.Field(Date, graphql_name='lessThanOrEqualTo') + greater_than = sgqlc.types.Field(Date, graphql_name='greaterThan') + greater_than_or_equal_to = sgqlc.types.Field(Date, graphql_name='greaterThanOrEqualTo') + + +class DatetimeFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('is_null', 'equal_to', 'not_equal_to', 'distinct_from', 'not_distinct_from', 'in_', 'not_in', 'less_than', 'less_than_or_equal_to', 'greater_than', 'greater_than_or_equal_to') + is_null = sgqlc.types.Field(Boolean, graphql_name='isNull') + equal_to = sgqlc.types.Field(Datetime, graphql_name='equalTo') + not_equal_to = sgqlc.types.Field(Datetime, graphql_name='notEqualTo') + distinct_from = sgqlc.types.Field(Datetime, graphql_name='distinctFrom') + not_distinct_from = sgqlc.types.Field(Datetime, graphql_name='notDistinctFrom') + in_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(Datetime)), graphql_name='in') + not_in = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(Datetime)), graphql_name='notIn') + less_than = sgqlc.types.Field(Datetime, graphql_name='lessThan') + less_than_or_equal_to = sgqlc.types.Field(Datetime, graphql_name='lessThanOrEqualTo') + greater_than = sgqlc.types.Field(Datetime, graphql_name='greaterThan') + greater_than_or_equal_to = sgqlc.types.Field(Datetime, graphql_name='greaterThanOrEqualTo') + + +class DeleteAccountChargeInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + + +class DeleteAccountStatementInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + + +class DeleteBuildingAreaByFacilityIdAndLabelInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'facility_id', 'label') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + facility_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='facilityId') + label = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='label') + + +class DeleteBuildingAreaByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + + +class DeleteBuildingAreaInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + + +class DeleteBuildingAreaTypeByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + + +class DeleteBuildingAreaTypeInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'type') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + type = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='type') + + +class DeleteComponentByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + + +class DeleteComponentInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + + +class DeleteControlEventByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + + +class DeleteControlEventInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + + +class DeleteControlEventLogByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + + +class DeleteControlEventLogInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + + +class DeleteDataPointByDataSourceNameAndNameInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'data_source_name', 'name') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + data_source_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='dataSourceName') + name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') + + +class DeleteDataPointByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + + +class DeleteDataPointInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + id = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='id') + + +class DeleteDataSourceByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + + +class DeleteDataSourceInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'name') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') + + +class DeleteDependencyByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + + +class DeleteDependencyByPathInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'path') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + path = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='path') + + +class DeleteDependencyInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + id = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='id') + + +class DeleteFacilityByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + + +class DeleteFacilityBySlugInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'slug') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + slug = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='slug') + + +class DeleteFacilityDataSourceByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + + +class DeleteFacilityDataSourceInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'facility_id', 'data_source_name') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + facility_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='facilityId') + data_source_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='dataSourceName') + + +class DeleteFacilityGroupByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + + +class DeleteFacilityGroupInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + id = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='id') + + +class DeleteFacilityGroupsLinkerByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + + +class DeleteFacilityGroupsLinkerInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'facility_id', 'facility_grouping_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + facility_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='facilityId') + facility_grouping_id = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='facilityGroupingId') + + +class DeleteFacilityInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + + +class DeleteFieldGroupByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + + +class DeleteFieldGroupInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + + +class DeleteMachineUserByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + + +class DeleteMachineUserInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + id = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='id') + + +class DeleteMeterChargeInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + + +class DeleteMeterStatementInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + + +class DeleteMeterUsageInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + + +class DeletePhoneNumberInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id',) + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + + +class DeleteProgramByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + + +class DeleteProgramByProjectTypeIdAndNameInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'project_type_id', 'name') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + project_type_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='projectTypeId') + name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') + + +class DeleteProgramInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + + +class DeleteProjectByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + + +class DeleteProjectComponentByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + + +class DeleteProjectComponentInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'project_id', 'component_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + project_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='projectId') + component_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='componentId') + + +class DeleteProjectFieldByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + + +class DeleteProjectFieldByProjectIdAndFieldIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'project_id', 'field_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + project_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='projectId') + field_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='fieldId') + + +class DeleteProjectFieldInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + + +class DeleteProjectInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + + +class DeleteProjectWatcherByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + + +class DeleteProjectWatcherInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'project_id', 'user_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + project_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='projectId') + user_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='userId') + + +class DeleteReportExecutionByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + + +class DeleteReportExecutionInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + + +class DeleteSavingsEventByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + + +class DeleteSavingsEventByProjectIdAndStartTimeAndEndTimeInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'project_id', 'start_time', 'end_time') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + project_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='projectId') + start_time = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='startTime') + end_time = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='endTime') + + +class DeleteSavingsEventInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + + +class DeleteSuggestionControlEventByControlEventIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'control_event_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + control_event_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='controlEventId') + + +class DeleteSuggestionControlEventByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + + +class DeleteSuggestionControlEventInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'suggestion_id', 'control_event_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + suggestion_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='suggestionId') + control_event_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='controlEventId') + + +class DeleteUserByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + + +class DeleteUserInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='id') + + +class DeleteUtilityAccountInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + + +class DeleteUtilityMeterInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + + +class DeleteUtilityProviderByNameInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'name') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') + + +class DeleteUtilityProviderByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + + +class DeleteUtilityProviderInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + + +class DeleteVendorUserByEmailInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'email') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + email = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='email') + + +class DeleteVendorUserByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + + +class DeleteVendorUserInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + + +class DeleteVendorUserMachineUserByMachineUserIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'machine_user_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + machine_user_id = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='machineUserId') + + +class DeleteVendorUserMachineUserByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + + +class DeleteVendorUserMachineUserInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'vendor_user_id', 'machine_user_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + vendor_user_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='vendorUserId') + machine_user_id = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='machineUserId') + + +class DeleteVirtualPointIntervalByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + + +class DeleteVirtualPointIntervalInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'parent_id', 'child_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + parent_id = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='parentId') + child_id = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='childId') + + +class DependencyCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'name', 'type', 'path') + id = sgqlc.types.Field(BigInt, graphql_name='id') + name = sgqlc.types.Field(String, graphql_name='name') + type = sgqlc.types.Field(String, graphql_name='type') + path = sgqlc.types.Field(String, graphql_name='path') + + +class DependencyFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'name', 'type', 'and_', 'or_', 'not_') + id = sgqlc.types.Field(BigIntFilter, graphql_name='id') + name = sgqlc.types.Field('StringFilter', graphql_name='name') + type = sgqlc.types.Field('StringFilter', graphql_name='type') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('DependencyFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('DependencyFilter')), graphql_name='or') + not_ = sgqlc.types.Field('DependencyFilter', graphql_name='not') + + +class DependencyInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('name', 'type', 'path') + name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') + type = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='type') + path = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='path') + + +class DependencyPatch(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('name', 'type', 'path') + name = sgqlc.types.Field(String, graphql_name='name') + type = sgqlc.types.Field(String, graphql_name='type') + path = sgqlc.types.Field(String, graphql_name='path') + + +class EnumMainServicesTypeFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('is_null', 'equal_to', 'not_equal_to', 'distinct_from', 'not_distinct_from', 'in_', 'not_in', 'less_than', 'less_than_or_equal_to', 'greater_than', 'greater_than_or_equal_to') + is_null = sgqlc.types.Field(Boolean, graphql_name='isNull') + equal_to = sgqlc.types.Field(EnumMainServicesType, graphql_name='equalTo') + not_equal_to = sgqlc.types.Field(EnumMainServicesType, graphql_name='notEqualTo') + distinct_from = sgqlc.types.Field(EnumMainServicesType, graphql_name='distinctFrom') + not_distinct_from = sgqlc.types.Field(EnumMainServicesType, graphql_name='notDistinctFrom') + in_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(EnumMainServicesType)), graphql_name='in') + not_in = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(EnumMainServicesType)), graphql_name='notIn') + less_than = sgqlc.types.Field(EnumMainServicesType, graphql_name='lessThan') + less_than_or_equal_to = sgqlc.types.Field(EnumMainServicesType, graphql_name='lessThanOrEqualTo') + greater_than = sgqlc.types.Field(EnumMainServicesType, graphql_name='greaterThan') + greater_than_or_equal_to = sgqlc.types.Field(EnumMainServicesType, graphql_name='greaterThanOrEqualTo') + + +class EventCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'type', 'action', 'facility_id', 'event', 'created_at', 'actor') + id = sgqlc.types.Field(BigInt, graphql_name='id') + type = sgqlc.types.Field(String, graphql_name='type') + action = sgqlc.types.Field(String, graphql_name='action') + facility_id = sgqlc.types.Field(Int, graphql_name='facilityId') + event = sgqlc.types.Field(JSON, graphql_name='event') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + actor = sgqlc.types.Field(ActorInput, graphql_name='actor') + + +class EventFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'type', 'action', 'facility_id', 'event', 'created_at', 'actor', 'and_', 'or_', 'not_') + id = sgqlc.types.Field(BigIntFilter, graphql_name='id') + type = sgqlc.types.Field('StringFilter', graphql_name='type') + action = sgqlc.types.Field('StringFilter', graphql_name='action') + facility_id = sgqlc.types.Field('IntFilter', graphql_name='facilityId') + event = sgqlc.types.Field('JSONFilter', graphql_name='event') + created_at = sgqlc.types.Field(DatetimeFilter, graphql_name='createdAt') + actor = sgqlc.types.Field(ActorFilter, graphql_name='actor') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('EventFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('EventFilter')), graphql_name='or') + not_ = sgqlc.types.Field('EventFilter', graphql_name='not') + + +class EventHandlerCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('handler',) + handler = sgqlc.types.Field(String, graphql_name='handler') + + +class EventHandlerFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('handler', 'and_', 'or_', 'not_') + handler = sgqlc.types.Field('StringFilter', graphql_name='handler') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('EventHandlerFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('EventHandlerFilter')), graphql_name='or') + not_ = sgqlc.types.Field('EventHandlerFilter', graphql_name='not') + + +class EventTypeCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('name',) + name = sgqlc.types.Field(String, graphql_name='name') + + +class EventTypeFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('name', 'and_', 'or_', 'not_') + name = sgqlc.types.Field('StringFilter', graphql_name='name') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('EventTypeFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('EventTypeFilter')), graphql_name='or') + not_ = sgqlc.types.Field('EventTypeFilter', graphql_name='not') + + +class FacilitiesHavingAverageInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'created_at', 'updated_at', 'retired_at', 'latitude', 'longitude', 'go_live_date') + id = sgqlc.types.Field('HavingIntFilter', graphql_name='id') + created_at = sgqlc.types.Field('HavingDatetimeFilter', graphql_name='createdAt') + updated_at = sgqlc.types.Field('HavingDatetimeFilter', graphql_name='updatedAt') + retired_at = sgqlc.types.Field('HavingDatetimeFilter', graphql_name='retiredAt') + latitude = sgqlc.types.Field('HavingFloatFilter', graphql_name='latitude') + longitude = sgqlc.types.Field('HavingFloatFilter', graphql_name='longitude') + go_live_date = sgqlc.types.Field('HavingDatetimeFilter', graphql_name='goLiveDate') + + +class FacilitiesHavingDistinctCountInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'created_at', 'updated_at', 'retired_at', 'latitude', 'longitude', 'go_live_date') + id = sgqlc.types.Field('HavingIntFilter', graphql_name='id') + created_at = sgqlc.types.Field('HavingDatetimeFilter', graphql_name='createdAt') + updated_at = sgqlc.types.Field('HavingDatetimeFilter', graphql_name='updatedAt') + retired_at = sgqlc.types.Field('HavingDatetimeFilter', graphql_name='retiredAt') + latitude = sgqlc.types.Field('HavingFloatFilter', graphql_name='latitude') + longitude = sgqlc.types.Field('HavingFloatFilter', graphql_name='longitude') + go_live_date = sgqlc.types.Field('HavingDatetimeFilter', graphql_name='goLiveDate') + + +class FacilitiesHavingDistinctInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'created_at', 'updated_at', 'retired_at', 'latitude', 'longitude', 'go_live_date') + id = sgqlc.types.Field('HavingIntFilter', graphql_name='id') + created_at = sgqlc.types.Field('HavingDatetimeFilter', graphql_name='createdAt') + updated_at = sgqlc.types.Field('HavingDatetimeFilter', graphql_name='updatedAt') + retired_at = sgqlc.types.Field('HavingDatetimeFilter', graphql_name='retiredAt') + latitude = sgqlc.types.Field('HavingFloatFilter', graphql_name='latitude') + longitude = sgqlc.types.Field('HavingFloatFilter', graphql_name='longitude') + go_live_date = sgqlc.types.Field('HavingDatetimeFilter', graphql_name='goLiveDate') + + +class FacilitiesHavingInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('and_', 'or_', 'sum', 'distinct_count', 'min', 'max', 'average', 'stddev_sample', 'stddev_population', 'variance_sample', 'variance_population', 'distinct') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('FacilitiesHavingInput')), graphql_name='AND') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('FacilitiesHavingInput')), graphql_name='OR') + sum = sgqlc.types.Field('FacilitiesHavingSumInput', graphql_name='sum') + distinct_count = sgqlc.types.Field(FacilitiesHavingDistinctCountInput, graphql_name='distinctCount') + min = sgqlc.types.Field('FacilitiesHavingMinInput', graphql_name='min') + max = sgqlc.types.Field('FacilitiesHavingMaxInput', graphql_name='max') + average = sgqlc.types.Field(FacilitiesHavingAverageInput, graphql_name='average') + stddev_sample = sgqlc.types.Field('FacilitiesHavingStddevSampleInput', graphql_name='stddevSample') + stddev_population = sgqlc.types.Field('FacilitiesHavingStddevPopulationInput', graphql_name='stddevPopulation') + variance_sample = sgqlc.types.Field('FacilitiesHavingVarianceSampleInput', graphql_name='varianceSample') + variance_population = sgqlc.types.Field('FacilitiesHavingVariancePopulationInput', graphql_name='variancePopulation') + distinct = sgqlc.types.Field(FacilitiesHavingDistinctInput, graphql_name='distinct') + + +class FacilitiesHavingMaxInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'created_at', 'updated_at', 'retired_at', 'latitude', 'longitude', 'go_live_date') + id = sgqlc.types.Field('HavingIntFilter', graphql_name='id') + created_at = sgqlc.types.Field('HavingDatetimeFilter', graphql_name='createdAt') + updated_at = sgqlc.types.Field('HavingDatetimeFilter', graphql_name='updatedAt') + retired_at = sgqlc.types.Field('HavingDatetimeFilter', graphql_name='retiredAt') + latitude = sgqlc.types.Field('HavingFloatFilter', graphql_name='latitude') + longitude = sgqlc.types.Field('HavingFloatFilter', graphql_name='longitude') + go_live_date = sgqlc.types.Field('HavingDatetimeFilter', graphql_name='goLiveDate') + + +class FacilitiesHavingMinInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'created_at', 'updated_at', 'retired_at', 'latitude', 'longitude', 'go_live_date') + id = sgqlc.types.Field('HavingIntFilter', graphql_name='id') + created_at = sgqlc.types.Field('HavingDatetimeFilter', graphql_name='createdAt') + updated_at = sgqlc.types.Field('HavingDatetimeFilter', graphql_name='updatedAt') + retired_at = sgqlc.types.Field('HavingDatetimeFilter', graphql_name='retiredAt') + latitude = sgqlc.types.Field('HavingFloatFilter', graphql_name='latitude') + longitude = sgqlc.types.Field('HavingFloatFilter', graphql_name='longitude') + go_live_date = sgqlc.types.Field('HavingDatetimeFilter', graphql_name='goLiveDate') + + +class FacilitiesHavingStddevPopulationInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'created_at', 'updated_at', 'retired_at', 'latitude', 'longitude', 'go_live_date') + id = sgqlc.types.Field('HavingIntFilter', graphql_name='id') + created_at = sgqlc.types.Field('HavingDatetimeFilter', graphql_name='createdAt') + updated_at = sgqlc.types.Field('HavingDatetimeFilter', graphql_name='updatedAt') + retired_at = sgqlc.types.Field('HavingDatetimeFilter', graphql_name='retiredAt') + latitude = sgqlc.types.Field('HavingFloatFilter', graphql_name='latitude') + longitude = sgqlc.types.Field('HavingFloatFilter', graphql_name='longitude') + go_live_date = sgqlc.types.Field('HavingDatetimeFilter', graphql_name='goLiveDate') + + +class FacilitiesHavingStddevSampleInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'created_at', 'updated_at', 'retired_at', 'latitude', 'longitude', 'go_live_date') + id = sgqlc.types.Field('HavingIntFilter', graphql_name='id') + created_at = sgqlc.types.Field('HavingDatetimeFilter', graphql_name='createdAt') + updated_at = sgqlc.types.Field('HavingDatetimeFilter', graphql_name='updatedAt') + retired_at = sgqlc.types.Field('HavingDatetimeFilter', graphql_name='retiredAt') + latitude = sgqlc.types.Field('HavingFloatFilter', graphql_name='latitude') + longitude = sgqlc.types.Field('HavingFloatFilter', graphql_name='longitude') + go_live_date = sgqlc.types.Field('HavingDatetimeFilter', graphql_name='goLiveDate') + + +class FacilitiesHavingSumInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'created_at', 'updated_at', 'retired_at', 'latitude', 'longitude', 'go_live_date') + id = sgqlc.types.Field('HavingIntFilter', graphql_name='id') + created_at = sgqlc.types.Field('HavingDatetimeFilter', graphql_name='createdAt') + updated_at = sgqlc.types.Field('HavingDatetimeFilter', graphql_name='updatedAt') + retired_at = sgqlc.types.Field('HavingDatetimeFilter', graphql_name='retiredAt') + latitude = sgqlc.types.Field('HavingFloatFilter', graphql_name='latitude') + longitude = sgqlc.types.Field('HavingFloatFilter', graphql_name='longitude') + go_live_date = sgqlc.types.Field('HavingDatetimeFilter', graphql_name='goLiveDate') + + +class FacilitiesHavingVariancePopulationInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'created_at', 'updated_at', 'retired_at', 'latitude', 'longitude', 'go_live_date') + id = sgqlc.types.Field('HavingIntFilter', graphql_name='id') + created_at = sgqlc.types.Field('HavingDatetimeFilter', graphql_name='createdAt') + updated_at = sgqlc.types.Field('HavingDatetimeFilter', graphql_name='updatedAt') + retired_at = sgqlc.types.Field('HavingDatetimeFilter', graphql_name='retiredAt') + latitude = sgqlc.types.Field('HavingFloatFilter', graphql_name='latitude') + longitude = sgqlc.types.Field('HavingFloatFilter', graphql_name='longitude') + go_live_date = sgqlc.types.Field('HavingDatetimeFilter', graphql_name='goLiveDate') + + +class FacilitiesHavingVarianceSampleInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'created_at', 'updated_at', 'retired_at', 'latitude', 'longitude', 'go_live_date') + id = sgqlc.types.Field('HavingIntFilter', graphql_name='id') + created_at = sgqlc.types.Field('HavingDatetimeFilter', graphql_name='createdAt') + updated_at = sgqlc.types.Field('HavingDatetimeFilter', graphql_name='updatedAt') + retired_at = sgqlc.types.Field('HavingDatetimeFilter', graphql_name='retiredAt') + latitude = sgqlc.types.Field('HavingFloatFilter', graphql_name='latitude') + longitude = sgqlc.types.Field('HavingFloatFilter', graphql_name='longitude') + go_live_date = sgqlc.types.Field('HavingDatetimeFilter', graphql_name='goLiveDate') + + +class FacilityCommunicationCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'facility_id', 'message', 'cleared_at', 'created_at', 'updated_at') + id = sgqlc.types.Field(Int, graphql_name='id') + facility_id = sgqlc.types.Field(Int, graphql_name='facilityId') + message = sgqlc.types.Field(String, graphql_name='message') + cleared_at = sgqlc.types.Field(Datetime, graphql_name='clearedAt') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') + + +class FacilityCommunicationFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'facility_id', 'message', 'cleared_at', 'created_at', 'updated_at', 'is_cleared', 'and_', 'or_', 'not_') + id = sgqlc.types.Field('IntFilter', graphql_name='id') + facility_id = sgqlc.types.Field('IntFilter', graphql_name='facilityId') + message = sgqlc.types.Field('StringFilter', graphql_name='message') + cleared_at = sgqlc.types.Field(DatetimeFilter, graphql_name='clearedAt') + created_at = sgqlc.types.Field(DatetimeFilter, graphql_name='createdAt') + updated_at = sgqlc.types.Field(DatetimeFilter, graphql_name='updatedAt') + is_cleared = sgqlc.types.Field(BooleanFilter, graphql_name='isCleared') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('FacilityCommunicationFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('FacilityCommunicationFilter')), graphql_name='or') + not_ = sgqlc.types.Field('FacilityCommunicationFilter', graphql_name='not') + + +class FacilityCommunicationInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'facility_id', 'message') + id = sgqlc.types.Field(Int, graphql_name='id') + facility_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='facilityId') + message = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='message') + + +class FacilityCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'name', 'slug', 'address', 'city', 'state', 'zip', 'created_at', 'updated_at', 'timezone_name', 'unit_group', 'country', 'config', 'geometry', 'retired_at', 'facility_contacts', 'latitude', 'longitude', 'n_sight2_active', 'n_sight_active', 'real_time_enabled', 'bonus_ltr', 'commodity', 'go_live_date', 'link_active', 'metrics_one_active', 'pre_bonus_ebitda', 'suppresse_financials', 'type', 'wms', 'cost_center') + id = sgqlc.types.Field(Int, graphql_name='id') + name = sgqlc.types.Field(String, graphql_name='name') + slug = sgqlc.types.Field(String, graphql_name='slug') + address = sgqlc.types.Field(String, graphql_name='address') + city = sgqlc.types.Field(String, graphql_name='city') + state = sgqlc.types.Field(String, graphql_name='state') + zip = sgqlc.types.Field(String, graphql_name='zip') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') + timezone_name = sgqlc.types.Field(String, graphql_name='timezoneName') + unit_group = sgqlc.types.Field(String, graphql_name='unitGroup') + country = sgqlc.types.Field(Country, graphql_name='country') + config = sgqlc.types.Field(JSON, graphql_name='config') + geometry = sgqlc.types.Field(GeoJSON, graphql_name='geometry') + retired_at = sgqlc.types.Field(Datetime, graphql_name='retiredAt') + facility_contacts = sgqlc.types.Field(String, graphql_name='facilityContacts') + latitude = sgqlc.types.Field(Float, graphql_name='latitude') + longitude = sgqlc.types.Field(Float, graphql_name='longitude') + n_sight2_active = sgqlc.types.Field(Boolean, graphql_name='nSight2Active') + n_sight_active = sgqlc.types.Field(Boolean, graphql_name='nSightActive') + real_time_enabled = sgqlc.types.Field(Boolean, graphql_name='realTimeEnabled') + bonus_ltr = sgqlc.types.Field(Boolean, graphql_name='bonusLtr') + commodity = sgqlc.types.Field(String, graphql_name='commodity') + go_live_date = sgqlc.types.Field(Datetime, graphql_name='goLiveDate') + link_active = sgqlc.types.Field(Boolean, graphql_name='linkActive') + metrics_one_active = sgqlc.types.Field(Boolean, graphql_name='metricsOneActive') + pre_bonus_ebitda = sgqlc.types.Field(Boolean, graphql_name='preBonusEbitda') + suppresse_financials = sgqlc.types.Field(Boolean, graphql_name='suppresseFinancials') + type = sgqlc.types.Field(String, graphql_name='type') + wms = sgqlc.types.Field(String, graphql_name='wms') + cost_center = sgqlc.types.Field(String, graphql_name='costCenter') + + +class FacilityDataSourceCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'data_source_name') + facility_id = sgqlc.types.Field(Int, graphql_name='facilityId') + data_source_name = sgqlc.types.Field(String, graphql_name='dataSourceName') + + +class FacilityDataSourceFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'data_source_name', 'and_', 'or_', 'not_') + facility_id = sgqlc.types.Field('IntFilter', graphql_name='facilityId') + data_source_name = sgqlc.types.Field('StringFilter', graphql_name='dataSourceName') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('FacilityDataSourceFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('FacilityDataSourceFilter')), graphql_name='or') + not_ = sgqlc.types.Field('FacilityDataSourceFilter', graphql_name='not') + + +class FacilityDataSourceInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'data_source_name', 'data_source') + facility_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='facilityId') + data_source_name = sgqlc.types.Field(String, graphql_name='dataSourceName') + data_source = sgqlc.types.Field(DataSourceInput, graphql_name='dataSource') + + +class FacilityFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'name', 'slug', 'address', 'city', 'state', 'zip', 'created_at', 'updated_at', 'timezone_name', 'unit_group', 'country', 'config', 'retired_at', 'facility_contacts', 'latitude', 'longitude', 'n_sight2_active', 'n_sight_active', 'real_time_enabled', 'bonus_ltr', 'commodity', 'go_live_date', 'link_active', 'metrics_one_active', 'pre_bonus_ebitda', 'suppresse_financials', 'type', 'wms', 'cost_center', 'and_', 'or_', 'not_') + id = sgqlc.types.Field('IntFilter', graphql_name='id') + name = sgqlc.types.Field('StringFilter', graphql_name='name') + slug = sgqlc.types.Field('StringFilter', graphql_name='slug') + address = sgqlc.types.Field('StringFilter', graphql_name='address') + city = sgqlc.types.Field('StringFilter', graphql_name='city') + state = sgqlc.types.Field('StringFilter', graphql_name='state') + zip = sgqlc.types.Field('StringFilter', graphql_name='zip') + created_at = sgqlc.types.Field(DatetimeFilter, graphql_name='createdAt') + updated_at = sgqlc.types.Field(DatetimeFilter, graphql_name='updatedAt') + timezone_name = sgqlc.types.Field('StringFilter', graphql_name='timezoneName') + unit_group = sgqlc.types.Field('StringFilter', graphql_name='unitGroup') + country = sgqlc.types.Field(CountryFilter, graphql_name='country') + config = sgqlc.types.Field('JSONFilter', graphql_name='config') + retired_at = sgqlc.types.Field(DatetimeFilter, graphql_name='retiredAt') + facility_contacts = sgqlc.types.Field('StringFilter', graphql_name='facilityContacts') + latitude = sgqlc.types.Field('FloatFilter', graphql_name='latitude') + longitude = sgqlc.types.Field('FloatFilter', graphql_name='longitude') + n_sight2_active = sgqlc.types.Field(BooleanFilter, graphql_name='nSight2Active') + n_sight_active = sgqlc.types.Field(BooleanFilter, graphql_name='nSightActive') + real_time_enabled = sgqlc.types.Field(BooleanFilter, graphql_name='realTimeEnabled') + bonus_ltr = sgqlc.types.Field(BooleanFilter, graphql_name='bonusLtr') + commodity = sgqlc.types.Field('StringFilter', graphql_name='commodity') + go_live_date = sgqlc.types.Field(DatetimeFilter, graphql_name='goLiveDate') + link_active = sgqlc.types.Field(BooleanFilter, graphql_name='linkActive') + metrics_one_active = sgqlc.types.Field(BooleanFilter, graphql_name='metricsOneActive') + pre_bonus_ebitda = sgqlc.types.Field(BooleanFilter, graphql_name='preBonusEbitda') + suppresse_financials = sgqlc.types.Field(BooleanFilter, graphql_name='suppresseFinancials') + type = sgqlc.types.Field('StringFilter', graphql_name='type') + wms = sgqlc.types.Field('StringFilter', graphql_name='wms') + cost_center = sgqlc.types.Field('StringFilter', graphql_name='costCenter') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('FacilityFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('FacilityFilter')), graphql_name='or') + not_ = sgqlc.types.Field('FacilityFilter', graphql_name='not') + + +class FacilityGroupCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'name', 'parent_id') + id = sgqlc.types.Field(BigInt, graphql_name='id') + name = sgqlc.types.Field(String, graphql_name='name') + parent_id = sgqlc.types.Field(BigInt, graphql_name='parentId') + + +class FacilityGroupFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'name', 'parent_id', 'and_', 'or_', 'not_') + id = sgqlc.types.Field(BigIntFilter, graphql_name='id') + name = sgqlc.types.Field('StringFilter', graphql_name='name') + parent_id = sgqlc.types.Field(BigIntFilter, graphql_name='parentId') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('FacilityGroupFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('FacilityGroupFilter')), graphql_name='or') + not_ = sgqlc.types.Field('FacilityGroupFilter', graphql_name='not') + + +class FacilityGroupInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('name', 'parent_id') + name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') + parent_id = sgqlc.types.Field(BigInt, graphql_name='parentId') + + +class FacilityGroupPatch(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('name', 'parent_id') + name = sgqlc.types.Field(String, graphql_name='name') + parent_id = sgqlc.types.Field(BigInt, graphql_name='parentId') + + +class FacilityGroupsLinkerCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'facility_grouping_id') + facility_id = sgqlc.types.Field(Int, graphql_name='facilityId') + facility_grouping_id = sgqlc.types.Field(BigInt, graphql_name='facilityGroupingId') + + +class FacilityGroupsLinkerFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'facility_grouping_id', 'and_', 'or_', 'not_') + facility_id = sgqlc.types.Field('IntFilter', graphql_name='facilityId') + facility_grouping_id = sgqlc.types.Field(BigIntFilter, graphql_name='facilityGroupingId') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('FacilityGroupsLinkerFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('FacilityGroupsLinkerFilter')), graphql_name='or') + not_ = sgqlc.types.Field('FacilityGroupsLinkerFilter', graphql_name='not') + + +class FacilityGroupsLinkerInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'facility_grouping_id', 'facility_group') + facility_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='facilityId') + facility_grouping_id = sgqlc.types.Field(BigInt, graphql_name='facilityGroupingId') + facility_group = sgqlc.types.Field(FacilityGroupInput, graphql_name='facilityGroup') + + +class FacilityGroupsLinkerPatch(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'facility_grouping_id') + facility_id = sgqlc.types.Field(Int, graphql_name='facilityId') + facility_grouping_id = sgqlc.types.Field(BigInt, graphql_name='facilityGroupingId') + + +class FacilityInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'name', 'slug', 'address', 'city', 'state', 'zip', 'created_at', 'updated_at', 'timezone_name', 'unit_group', 'country', 'config', 'geometry', 'retired_at', 'facility_contacts', 'latitude', 'longitude', 'n_sight2_active', 'n_sight_active', 'real_time_enabled', 'bonus_ltr', 'commodity', 'go_live_date', 'link_active', 'metrics_one_active', 'pre_bonus_ebitda', 'suppresse_financials', 'type', 'wms', 'cost_center') + id = sgqlc.types.Field(Int, graphql_name='id') + name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') + slug = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='slug') + address = sgqlc.types.Field(String, graphql_name='address') + city = sgqlc.types.Field(String, graphql_name='city') + state = sgqlc.types.Field(String, graphql_name='state') + zip = sgqlc.types.Field(String, graphql_name='zip') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') + timezone_name = sgqlc.types.Field(String, graphql_name='timezoneName') + unit_group = sgqlc.types.Field(String, graphql_name='unitGroup') + country = sgqlc.types.Field(sgqlc.types.non_null(Country), graphql_name='country') + config = sgqlc.types.Field(JSON, graphql_name='config') + geometry = sgqlc.types.Field(GeoJSON, graphql_name='geometry') + retired_at = sgqlc.types.Field(Datetime, graphql_name='retiredAt') + facility_contacts = sgqlc.types.Field(String, graphql_name='facilityContacts') + latitude = sgqlc.types.Field(Float, graphql_name='latitude') + longitude = sgqlc.types.Field(Float, graphql_name='longitude') + n_sight2_active = sgqlc.types.Field(Boolean, graphql_name='nSight2Active') + n_sight_active = sgqlc.types.Field(Boolean, graphql_name='nSightActive') + real_time_enabled = sgqlc.types.Field(Boolean, graphql_name='realTimeEnabled') + bonus_ltr = sgqlc.types.Field(Boolean, graphql_name='bonusLtr') + commodity = sgqlc.types.Field(String, graphql_name='commodity') + go_live_date = sgqlc.types.Field(Datetime, graphql_name='goLiveDate') + link_active = sgqlc.types.Field(Boolean, graphql_name='linkActive') + metrics_one_active = sgqlc.types.Field(Boolean, graphql_name='metricsOneActive') + pre_bonus_ebitda = sgqlc.types.Field(Boolean, graphql_name='preBonusEbitda') + suppresse_financials = sgqlc.types.Field(Boolean, graphql_name='suppresseFinancials') + type = sgqlc.types.Field(String, graphql_name='type') + wms = sgqlc.types.Field(String, graphql_name='wms') + cost_center = sgqlc.types.Field(String, graphql_name='costCenter') + + +class FacilityPatch(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'name', 'slug', 'address', 'city', 'state', 'zip', 'created_at', 'updated_at', 'timezone_name', 'unit_group', 'country', 'config', 'geometry', 'retired_at', 'facility_contacts', 'latitude', 'longitude', 'n_sight2_active', 'n_sight_active', 'real_time_enabled', 'bonus_ltr', 'commodity', 'go_live_date', 'link_active', 'metrics_one_active', 'pre_bonus_ebitda', 'suppresse_financials', 'type', 'wms', 'cost_center') + id = sgqlc.types.Field(Int, graphql_name='id') + name = sgqlc.types.Field(String, graphql_name='name') + slug = sgqlc.types.Field(String, graphql_name='slug') + address = sgqlc.types.Field(String, graphql_name='address') + city = sgqlc.types.Field(String, graphql_name='city') + state = sgqlc.types.Field(String, graphql_name='state') + zip = sgqlc.types.Field(String, graphql_name='zip') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') + timezone_name = sgqlc.types.Field(String, graphql_name='timezoneName') + unit_group = sgqlc.types.Field(String, graphql_name='unitGroup') + country = sgqlc.types.Field(Country, graphql_name='country') + config = sgqlc.types.Field(JSON, graphql_name='config') + geometry = sgqlc.types.Field(GeoJSON, graphql_name='geometry') + retired_at = sgqlc.types.Field(Datetime, graphql_name='retiredAt') + facility_contacts = sgqlc.types.Field(String, graphql_name='facilityContacts') + latitude = sgqlc.types.Field(Float, graphql_name='latitude') + longitude = sgqlc.types.Field(Float, graphql_name='longitude') + n_sight2_active = sgqlc.types.Field(Boolean, graphql_name='nSight2Active') + n_sight_active = sgqlc.types.Field(Boolean, graphql_name='nSightActive') + real_time_enabled = sgqlc.types.Field(Boolean, graphql_name='realTimeEnabled') + bonus_ltr = sgqlc.types.Field(Boolean, graphql_name='bonusLtr') + commodity = sgqlc.types.Field(String, graphql_name='commodity') + go_live_date = sgqlc.types.Field(Datetime, graphql_name='goLiveDate') + link_active = sgqlc.types.Field(Boolean, graphql_name='linkActive') + metrics_one_active = sgqlc.types.Field(Boolean, graphql_name='metricsOneActive') + pre_bonus_ebitda = sgqlc.types.Field(Boolean, graphql_name='preBonusEbitda') + suppresse_financials = sgqlc.types.Field(Boolean, graphql_name='suppresseFinancials') + type = sgqlc.types.Field(String, graphql_name='type') + wms = sgqlc.types.Field(String, graphql_name='wms') + cost_center = sgqlc.types.Field(String, graphql_name='costCenter') + + +class FieldGroupCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'label', 'description', 'created_at', 'updated_at') + id = sgqlc.types.Field(Int, graphql_name='id') + label = sgqlc.types.Field(String, graphql_name='label') + description = sgqlc.types.Field(String, graphql_name='description') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') + + +class FieldGroupFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'label', 'description', 'created_at', 'updated_at', 'and_', 'or_', 'not_') + id = sgqlc.types.Field('IntFilter', graphql_name='id') + label = sgqlc.types.Field('StringFilter', graphql_name='label') + description = sgqlc.types.Field('StringFilter', graphql_name='description') + created_at = sgqlc.types.Field(DatetimeFilter, graphql_name='createdAt') + updated_at = sgqlc.types.Field(DatetimeFilter, graphql_name='updatedAt') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('FieldGroupFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('FieldGroupFilter')), graphql_name='or') + not_ = sgqlc.types.Field('FieldGroupFilter', graphql_name='not') + + +class FieldGroupInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('label', 'description') + label = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='label') + description = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='description') + + +class FieldGroupPatch(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('label', 'description') + label = sgqlc.types.Field(String, graphql_name='label') + description = sgqlc.types.Field(String, graphql_name='description') + + +class FloatFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('is_null', 'equal_to', 'not_equal_to', 'distinct_from', 'not_distinct_from', 'in_', 'not_in', 'less_than', 'less_than_or_equal_to', 'greater_than', 'greater_than_or_equal_to') + is_null = sgqlc.types.Field(Boolean, graphql_name='isNull') + equal_to = sgqlc.types.Field(Float, graphql_name='equalTo') + not_equal_to = sgqlc.types.Field(Float, graphql_name='notEqualTo') + distinct_from = sgqlc.types.Field(Float, graphql_name='distinctFrom') + not_distinct_from = sgqlc.types.Field(Float, graphql_name='notDistinctFrom') + in_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(Float)), graphql_name='in') + not_in = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(Float)), graphql_name='notIn') + less_than = sgqlc.types.Field(Float, graphql_name='lessThan') + less_than_or_equal_to = sgqlc.types.Field(Float, graphql_name='lessThanOrEqualTo') + greater_than = sgqlc.types.Field(Float, graphql_name='greaterThan') + greater_than_or_equal_to = sgqlc.types.Field(Float, graphql_name='greaterThanOrEqualTo') + + +class HavingDatetimeFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('equal_to', 'not_equal_to', 'greater_than', 'greater_than_or_equal_to', 'less_than', 'less_than_or_equal_to') + equal_to = sgqlc.types.Field(Datetime, graphql_name='equalTo') + not_equal_to = sgqlc.types.Field(Datetime, graphql_name='notEqualTo') + greater_than = sgqlc.types.Field(Datetime, graphql_name='greaterThan') + greater_than_or_equal_to = sgqlc.types.Field(Datetime, graphql_name='greaterThanOrEqualTo') + less_than = sgqlc.types.Field(Datetime, graphql_name='lessThan') + less_than_or_equal_to = sgqlc.types.Field(Datetime, graphql_name='lessThanOrEqualTo') + + +class HavingFloatFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('equal_to', 'not_equal_to', 'greater_than', 'greater_than_or_equal_to', 'less_than', 'less_than_or_equal_to') + equal_to = sgqlc.types.Field(Float, graphql_name='equalTo') + not_equal_to = sgqlc.types.Field(Float, graphql_name='notEqualTo') + greater_than = sgqlc.types.Field(Float, graphql_name='greaterThan') + greater_than_or_equal_to = sgqlc.types.Field(Float, graphql_name='greaterThanOrEqualTo') + less_than = sgqlc.types.Field(Float, graphql_name='lessThan') + less_than_or_equal_to = sgqlc.types.Field(Float, graphql_name='lessThanOrEqualTo') + + +class HavingIntFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('equal_to', 'not_equal_to', 'greater_than', 'greater_than_or_equal_to', 'less_than', 'less_than_or_equal_to') + equal_to = sgqlc.types.Field(Int, graphql_name='equalTo') + not_equal_to = sgqlc.types.Field(Int, graphql_name='notEqualTo') + greater_than = sgqlc.types.Field(Int, graphql_name='greaterThan') + greater_than_or_equal_to = sgqlc.types.Field(Int, graphql_name='greaterThanOrEqualTo') + less_than = sgqlc.types.Field(Int, graphql_name='lessThan') + less_than_or_equal_to = sgqlc.types.Field(Int, graphql_name='lessThanOrEqualTo') + + +class InputFacilityMetricData(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('time', 'facility_id', 'label', 'data', 'metadata') + time = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='time') + facility_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='facilityId') + label = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='label') + data = sgqlc.types.Field(sgqlc.types.non_null(JSON), graphql_name='data') + metadata = sgqlc.types.Field(JSON, graphql_name='metadata') + + +class InputMetricData(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('time', 'source_id', 'label', 'data', 'metadata') + time = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='time') + source_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='sourceId') + label = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='label') + data = sgqlc.types.Field(sgqlc.types.non_null(JSON), graphql_name='data') + metadata = sgqlc.types.Field(JSON, graphql_name='metadata') + + +class IntFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('is_null', 'equal_to', 'not_equal_to', 'distinct_from', 'not_distinct_from', 'in_', 'not_in', 'less_than', 'less_than_or_equal_to', 'greater_than', 'greater_than_or_equal_to') + is_null = sgqlc.types.Field(Boolean, graphql_name='isNull') + equal_to = sgqlc.types.Field(Int, graphql_name='equalTo') + not_equal_to = sgqlc.types.Field(Int, graphql_name='notEqualTo') + distinct_from = sgqlc.types.Field(Int, graphql_name='distinctFrom') + not_distinct_from = sgqlc.types.Field(Int, graphql_name='notDistinctFrom') + in_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(Int)), graphql_name='in') + not_in = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(Int)), graphql_name='notIn') + less_than = sgqlc.types.Field(Int, graphql_name='lessThan') + less_than_or_equal_to = sgqlc.types.Field(Int, graphql_name='lessThanOrEqualTo') + greater_than = sgqlc.types.Field(Int, graphql_name='greaterThan') + greater_than_or_equal_to = sgqlc.types.Field(Int, graphql_name='greaterThanOrEqualTo') + + +class IntervalFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('is_null', 'equal_to', 'not_equal_to', 'distinct_from', 'not_distinct_from', 'in_', 'not_in', 'less_than', 'less_than_or_equal_to', 'greater_than', 'greater_than_or_equal_to') + is_null = sgqlc.types.Field(Boolean, graphql_name='isNull') + equal_to = sgqlc.types.Field('IntervalInput', graphql_name='equalTo') + not_equal_to = sgqlc.types.Field('IntervalInput', graphql_name='notEqualTo') + distinct_from = sgqlc.types.Field('IntervalInput', graphql_name='distinctFrom') + not_distinct_from = sgqlc.types.Field('IntervalInput', graphql_name='notDistinctFrom') + in_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('IntervalInput')), graphql_name='in') + not_in = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('IntervalInput')), graphql_name='notIn') + less_than = sgqlc.types.Field('IntervalInput', graphql_name='lessThan') + less_than_or_equal_to = sgqlc.types.Field('IntervalInput', graphql_name='lessThanOrEqualTo') + greater_than = sgqlc.types.Field('IntervalInput', graphql_name='greaterThan') + greater_than_or_equal_to = sgqlc.types.Field('IntervalInput', graphql_name='greaterThanOrEqualTo') + + +class IntervalInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('seconds', 'minutes', 'hours', 'days', 'months', 'years') + seconds = sgqlc.types.Field(Float, graphql_name='seconds') + minutes = sgqlc.types.Field(Int, graphql_name='minutes') + hours = sgqlc.types.Field(Int, graphql_name='hours') + days = sgqlc.types.Field(Int, graphql_name='days') + months = sgqlc.types.Field(Int, graphql_name='months') + years = sgqlc.types.Field(Int, graphql_name='years') + + +class JSONFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('is_null', 'equal_to', 'not_equal_to', 'distinct_from', 'not_distinct_from', 'in_', 'not_in', 'less_than', 'less_than_or_equal_to', 'greater_than', 'greater_than_or_equal_to', 'contains', 'contains_key', 'contains_all_keys', 'contains_any_keys', 'contained_by') + is_null = sgqlc.types.Field(Boolean, graphql_name='isNull') + equal_to = sgqlc.types.Field(JSON, graphql_name='equalTo') + not_equal_to = sgqlc.types.Field(JSON, graphql_name='notEqualTo') + distinct_from = sgqlc.types.Field(JSON, graphql_name='distinctFrom') + not_distinct_from = sgqlc.types.Field(JSON, graphql_name='notDistinctFrom') + in_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(JSON)), graphql_name='in') + not_in = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(JSON)), graphql_name='notIn') + less_than = sgqlc.types.Field(JSON, graphql_name='lessThan') + less_than_or_equal_to = sgqlc.types.Field(JSON, graphql_name='lessThanOrEqualTo') + greater_than = sgqlc.types.Field(JSON, graphql_name='greaterThan') + greater_than_or_equal_to = sgqlc.types.Field(JSON, graphql_name='greaterThanOrEqualTo') + contains = sgqlc.types.Field(JSON, graphql_name='contains') + contains_key = sgqlc.types.Field(String, graphql_name='containsKey') + contains_all_keys = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='containsAllKeys') + contains_any_keys = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='containsAnyKeys') + contained_by = sgqlc.types.Field(JSON, graphql_name='containedBy') + + +class JSONListFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('is_null', 'equal_to', 'not_equal_to', 'distinct_from', 'not_distinct_from', 'less_than', 'less_than_or_equal_to', 'greater_than', 'greater_than_or_equal_to', 'contains', 'contained_by', 'overlaps', 'any_equal_to', 'any_not_equal_to', 'any_less_than', 'any_less_than_or_equal_to', 'any_greater_than', 'any_greater_than_or_equal_to') + is_null = sgqlc.types.Field(Boolean, graphql_name='isNull') + equal_to = sgqlc.types.Field(sgqlc.types.list_of(JSON), graphql_name='equalTo') + not_equal_to = sgqlc.types.Field(sgqlc.types.list_of(JSON), graphql_name='notEqualTo') + distinct_from = sgqlc.types.Field(sgqlc.types.list_of(JSON), graphql_name='distinctFrom') + not_distinct_from = sgqlc.types.Field(sgqlc.types.list_of(JSON), graphql_name='notDistinctFrom') + less_than = sgqlc.types.Field(sgqlc.types.list_of(JSON), graphql_name='lessThan') + less_than_or_equal_to = sgqlc.types.Field(sgqlc.types.list_of(JSON), graphql_name='lessThanOrEqualTo') + greater_than = sgqlc.types.Field(sgqlc.types.list_of(JSON), graphql_name='greaterThan') + greater_than_or_equal_to = sgqlc.types.Field(sgqlc.types.list_of(JSON), graphql_name='greaterThanOrEqualTo') + contains = sgqlc.types.Field(sgqlc.types.list_of(JSON), graphql_name='contains') + contained_by = sgqlc.types.Field(sgqlc.types.list_of(JSON), graphql_name='containedBy') + overlaps = sgqlc.types.Field(sgqlc.types.list_of(JSON), graphql_name='overlaps') + any_equal_to = sgqlc.types.Field(JSON, graphql_name='anyEqualTo') + any_not_equal_to = sgqlc.types.Field(JSON, graphql_name='anyNotEqualTo') + any_less_than = sgqlc.types.Field(JSON, graphql_name='anyLessThan') + any_less_than_or_equal_to = sgqlc.types.Field(JSON, graphql_name='anyLessThanOrEqualTo') + any_greater_than = sgqlc.types.Field(JSON, graphql_name='anyGreaterThan') + any_greater_than_or_equal_to = sgqlc.types.Field(JSON, graphql_name='anyGreaterThanOrEqualTo') + + +class MachineUserCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'description', 'created_by', 'created_at', 'updated_at') + id = sgqlc.types.Field(BigInt, graphql_name='id') + description = sgqlc.types.Field(String, graphql_name='description') + created_by = sgqlc.types.Field(String, graphql_name='createdBy') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') + + +class MachineUserFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('can_write', 'id', 'description', 'created_by', 'created_at', 'updated_at', 'and_', 'or_', 'not_') + can_write = sgqlc.types.Field('PermissionBooleanFilter', graphql_name='canWrite') + id = sgqlc.types.Field(BigIntFilter, graphql_name='id') + description = sgqlc.types.Field('StringFilter', graphql_name='description') + created_by = sgqlc.types.Field('StringFilter', graphql_name='createdBy') + created_at = sgqlc.types.Field(DatetimeFilter, graphql_name='createdAt') + updated_at = sgqlc.types.Field(DatetimeFilter, graphql_name='updatedAt') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('MachineUserFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('MachineUserFilter')), graphql_name='or') + not_ = sgqlc.types.Field('MachineUserFilter', graphql_name='not') + + +class MachineUserInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('description', 'created_by', 'created_at', 'updated_at') + description = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='description') + created_by = sgqlc.types.Field(String, graphql_name='createdBy') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') + + +class MachineUserPatch(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('description', 'created_by', 'created_at', 'updated_at') + description = sgqlc.types.Field(String, graphql_name='description') + created_by = sgqlc.types.Field(String, graphql_name='createdBy') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') + + +class MainServiceCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'type', 'facility_id', 'name', 'usage', 'demand', 'created_at', 'updated_at', 'original_id') + id = sgqlc.types.Field(Int, graphql_name='id') + type = sgqlc.types.Field(EnumMainServicesType, graphql_name='type') + facility_id = sgqlc.types.Field(Int, graphql_name='facilityId') + name = sgqlc.types.Field(String, graphql_name='name') + usage = sgqlc.types.Field(Int, graphql_name='usage') + demand = sgqlc.types.Field(Int, graphql_name='demand') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') + original_id = sgqlc.types.Field(Int, graphql_name='originalId') + + +class MainServiceFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'type', 'facility_id', 'name', 'usage', 'demand', 'created_at', 'updated_at', 'original_id', 'and_', 'or_', 'not_') + id = sgqlc.types.Field(IntFilter, graphql_name='id') + type = sgqlc.types.Field(EnumMainServicesTypeFilter, graphql_name='type') + facility_id = sgqlc.types.Field(IntFilter, graphql_name='facilityId') + name = sgqlc.types.Field('StringFilter', graphql_name='name') + usage = sgqlc.types.Field(IntFilter, graphql_name='usage') + demand = sgqlc.types.Field(IntFilter, graphql_name='demand') + created_at = sgqlc.types.Field(DatetimeFilter, graphql_name='createdAt') + updated_at = sgqlc.types.Field(DatetimeFilter, graphql_name='updatedAt') + original_id = sgqlc.types.Field(IntFilter, graphql_name='originalId') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('MainServiceFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('MainServiceFilter')), graphql_name='or') + not_ = sgqlc.types.Field('MainServiceFilter', graphql_name='not') + + +class MeterChargeCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'meter_statement_id', 'category', 'normalized_value', 'override_at', 'line_number', 'created_at', 'updated_at', 'deleted_at') + id = sgqlc.types.Field(Int, graphql_name='id') + meter_statement_id = sgqlc.types.Field(Int, graphql_name='meterStatementId') + category = sgqlc.types.Field(UtilityMeterChargeCategory, graphql_name='category') + normalized_value = sgqlc.types.Field(Float, graphql_name='normalizedValue') + override_at = sgqlc.types.Field(Datetime, graphql_name='overrideAt') + line_number = sgqlc.types.Field(Int, graphql_name='lineNumber') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') + deleted_at = sgqlc.types.Field(Datetime, graphql_name='deletedAt') + + +class MeterChargeFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('label', 'value', 'id', 'meter_statement_id', 'category', 'normalized_value', 'override_at', 'line_number', 'created_at', 'updated_at', 'deleted_at', 'and_', 'or_', 'not_') + label = sgqlc.types.Field('StringFilter', graphql_name='label') + value = sgqlc.types.Field(FloatFilter, graphql_name='value') + id = sgqlc.types.Field(IntFilter, graphql_name='id') + meter_statement_id = sgqlc.types.Field(IntFilter, graphql_name='meterStatementId') + category = sgqlc.types.Field('UtilityMeterChargeCategoryFilter', graphql_name='category') + normalized_value = sgqlc.types.Field(FloatFilter, graphql_name='normalizedValue') + override_at = sgqlc.types.Field(DatetimeFilter, graphql_name='overrideAt') + line_number = sgqlc.types.Field(IntFilter, graphql_name='lineNumber') + created_at = sgqlc.types.Field(DatetimeFilter, graphql_name='createdAt') + updated_at = sgqlc.types.Field(DatetimeFilter, graphql_name='updatedAt') + deleted_at = sgqlc.types.Field(DatetimeFilter, graphql_name='deletedAt') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('MeterChargeFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('MeterChargeFilter')), graphql_name='or') + not_ = sgqlc.types.Field('MeterChargeFilter', graphql_name='not') + + +class MeterChargeInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'meter_statement_id', 'category', 'label', 'value', 'line_number', 'meter_statement') + id = sgqlc.types.Field(Int, graphql_name='id') + meter_statement_id = sgqlc.types.Field(Int, graphql_name='meterStatementId') + category = sgqlc.types.Field(sgqlc.types.non_null(UtilityMeterChargeCategory), graphql_name='category') + label = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='label') + value = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='value') + line_number = sgqlc.types.Field(Int, graphql_name='lineNumber') + meter_statement = sgqlc.types.Field('MeterStatementInput', graphql_name='meterStatement') + + +class MeterChargePatch(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('label', 'value') + label = sgqlc.types.Field(String, graphql_name='label') + value = sgqlc.types.Field(Float, graphql_name='value') + + +class MeterStatementCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'utility_meter_id', 'account_statement_id', 'interval_start', 'interval_end', 'statement_date', 'integration_key', 'pdf_link', 'is_validated', 'normalized_currency_code', 'override_at', 'metadata', 'manual_upload', 'is_adjustment', 'created_at', 'updated_at', 'override_statement_year', 'override_statement_month') + id = sgqlc.types.Field(Int, graphql_name='id') + utility_meter_id = sgqlc.types.Field(Int, graphql_name='utilityMeterId') + account_statement_id = sgqlc.types.Field(Int, graphql_name='accountStatementId') + interval_start = sgqlc.types.Field(Date, graphql_name='intervalStart') + interval_end = sgqlc.types.Field(Date, graphql_name='intervalEnd') + statement_date = sgqlc.types.Field(Date, graphql_name='statementDate') + integration_key = sgqlc.types.Field(String, graphql_name='integrationKey') + pdf_link = sgqlc.types.Field(String, graphql_name='pdfLink') + is_validated = sgqlc.types.Field(Boolean, graphql_name='isValidated') + normalized_currency_code = sgqlc.types.Field(String, graphql_name='normalizedCurrencyCode') + override_at = sgqlc.types.Field(Datetime, graphql_name='overrideAt') + metadata = sgqlc.types.Field(JSON, graphql_name='metadata') + manual_upload = sgqlc.types.Field(Boolean, graphql_name='manualUpload') + is_adjustment = sgqlc.types.Field(Boolean, graphql_name='isAdjustment') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') + override_statement_year = sgqlc.types.Field(Int, graphql_name='overrideStatementYear') + override_statement_month = sgqlc.types.Field(Int, graphql_name='overrideStatementMonth') + + +class MeterStatementFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('currency_code', 'primary_usage_units', 'primary_demand_units', 'id', 'utility_meter_id', 'account_statement_id', 'interval_start', 'interval_end', 'statement_date', 'integration_key', 'pdf_link', 'is_validated', 'normalized_currency_code', 'override_at', 'metadata', 'manual_upload', 'is_adjustment', 'created_at', 'updated_at', 'override_statement_year', 'override_statement_month', 'deleted_at', 'max_demand', 'normalized_total_charges', 'statement_month', 'statement_year', 'total_charges', 'total_usage', 'and_', 'or_', 'not_') + currency_code = sgqlc.types.Field('StringFilter', graphql_name='currencyCode') + primary_usage_units = sgqlc.types.Field('StringFilter', graphql_name='primaryUsageUnits') + primary_demand_units = sgqlc.types.Field('StringFilter', graphql_name='primaryDemandUnits') + id = sgqlc.types.Field(IntFilter, graphql_name='id') + utility_meter_id = sgqlc.types.Field(IntFilter, graphql_name='utilityMeterId') + account_statement_id = sgqlc.types.Field(IntFilter, graphql_name='accountStatementId') + interval_start = sgqlc.types.Field(DateFilter, graphql_name='intervalStart') + interval_end = sgqlc.types.Field(DateFilter, graphql_name='intervalEnd') + statement_date = sgqlc.types.Field(DateFilter, graphql_name='statementDate') + integration_key = sgqlc.types.Field('StringFilter', graphql_name='integrationKey') + pdf_link = sgqlc.types.Field('StringFilter', graphql_name='pdfLink') + is_validated = sgqlc.types.Field(BooleanFilter, graphql_name='isValidated') + normalized_currency_code = sgqlc.types.Field('StringFilter', graphql_name='normalizedCurrencyCode') + override_at = sgqlc.types.Field(DatetimeFilter, graphql_name='overrideAt') + metadata = sgqlc.types.Field(JSONFilter, graphql_name='metadata') + manual_upload = sgqlc.types.Field(BooleanFilter, graphql_name='manualUpload') + is_adjustment = sgqlc.types.Field(BooleanFilter, graphql_name='isAdjustment') + created_at = sgqlc.types.Field(DatetimeFilter, graphql_name='createdAt') + updated_at = sgqlc.types.Field(DatetimeFilter, graphql_name='updatedAt') + override_statement_year = sgqlc.types.Field(IntFilter, graphql_name='overrideStatementYear') + override_statement_month = sgqlc.types.Field(IntFilter, graphql_name='overrideStatementMonth') + deleted_at = sgqlc.types.Field(DatetimeFilter, graphql_name='deletedAt') + max_demand = sgqlc.types.Field(FloatFilter, graphql_name='maxDemand') + normalized_total_charges = sgqlc.types.Field(FloatFilter, graphql_name='normalizedTotalCharges') + statement_month = sgqlc.types.Field(IntFilter, graphql_name='statementMonth') + statement_year = sgqlc.types.Field(IntFilter, graphql_name='statementYear') + total_charges = sgqlc.types.Field(FloatFilter, graphql_name='totalCharges') + total_usage = sgqlc.types.Field(FloatFilter, graphql_name='totalUsage') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('MeterStatementFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('MeterStatementFilter')), graphql_name='or') + not_ = sgqlc.types.Field('MeterStatementFilter', graphql_name='not') + + +class MeterStatementHistoryCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('meter_statement_id', 'description', 'created_at') + meter_statement_id = sgqlc.types.Field(Int, graphql_name='meterStatementId') + description = sgqlc.types.Field(String, graphql_name='description') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + + +class MeterStatementHistoryFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('meter_statement_id', 'description', 'created_at', 'and_', 'or_', 'not_') + meter_statement_id = sgqlc.types.Field(IntFilter, graphql_name='meterStatementId') + description = sgqlc.types.Field('StringFilter', graphql_name='description') + created_at = sgqlc.types.Field(DatetimeFilter, graphql_name='createdAt') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('MeterStatementHistoryFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('MeterStatementHistoryFilter')), graphql_name='or') + not_ = sgqlc.types.Field('MeterStatementHistoryFilter', graphql_name='not') + + +class MeterStatementHistoryInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('meter_statement_id', 'description', 'meter_statement') + meter_statement_id = sgqlc.types.Field(Int, graphql_name='meterStatementId') + description = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='description') + meter_statement = sgqlc.types.Field('MeterStatementInput', graphql_name='meterStatement') + + +class MeterStatementInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'utility_meter_id', 'account_statement_id', 'interval_start', 'interval_end', 'statement_date', 'integration_key', 'pdf_link', 'is_validated', 'currency_code', 'primary_usage_units', 'primary_demand_units', 'metadata', 'manual_upload', 'is_adjustment', 'utility_meter', 'account_statement') + id = sgqlc.types.Field(Int, graphql_name='id') + utility_meter_id = sgqlc.types.Field(Int, graphql_name='utilityMeterId') + account_statement_id = sgqlc.types.Field(Int, graphql_name='accountStatementId') + interval_start = sgqlc.types.Field(sgqlc.types.non_null(Date), graphql_name='intervalStart') + interval_end = sgqlc.types.Field(sgqlc.types.non_null(Date), graphql_name='intervalEnd') + statement_date = sgqlc.types.Field(sgqlc.types.non_null(Date), graphql_name='statementDate') + integration_key = sgqlc.types.Field(String, graphql_name='integrationKey') + pdf_link = sgqlc.types.Field(Upload, graphql_name='pdfLink') + is_validated = sgqlc.types.Field(Boolean, graphql_name='isValidated') + currency_code = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='currencyCode') + primary_usage_units = sgqlc.types.Field(String, graphql_name='primaryUsageUnits') + primary_demand_units = sgqlc.types.Field(String, graphql_name='primaryDemandUnits') + metadata = sgqlc.types.Field(JSON, graphql_name='metadata') + manual_upload = sgqlc.types.Field(Boolean, graphql_name='manualUpload') + is_adjustment = sgqlc.types.Field(Boolean, graphql_name='isAdjustment') + utility_meter = sgqlc.types.Field('UtilityMeterInput', graphql_name='utilityMeter') + account_statement = sgqlc.types.Field(AccountStatementInput, graphql_name='accountStatement') + + +class MeterStatementPatch(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('utility_meter_id', 'interval_start', 'interval_end', 'pdf_link', 'is_validated', 'currency_code', 'primary_usage_units', 'primary_demand_units', 'metadata', 'manual_upload', 'is_adjustment', 'override_statement_year', 'override_statement_month') + utility_meter_id = sgqlc.types.Field(Int, graphql_name='utilityMeterId') + interval_start = sgqlc.types.Field(Date, graphql_name='intervalStart') + interval_end = sgqlc.types.Field(Date, graphql_name='intervalEnd') + pdf_link = sgqlc.types.Field(Upload, graphql_name='pdfLink') + is_validated = sgqlc.types.Field(Boolean, graphql_name='isValidated') + currency_code = sgqlc.types.Field(String, graphql_name='currencyCode') + primary_usage_units = sgqlc.types.Field(String, graphql_name='primaryUsageUnits') + primary_demand_units = sgqlc.types.Field(String, graphql_name='primaryDemandUnits') + metadata = sgqlc.types.Field(JSON, graphql_name='metadata') + manual_upload = sgqlc.types.Field(Boolean, graphql_name='manualUpload') + is_adjustment = sgqlc.types.Field(Boolean, graphql_name='isAdjustment') + override_statement_year = sgqlc.types.Field(Int, graphql_name='overrideStatementYear') + override_statement_month = sgqlc.types.Field(Int, graphql_name='overrideStatementMonth') + + +class MeterStatementsChargesRecordFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('category', 'value', 'and_', 'or_', 'not_') + category = sgqlc.types.Field('UtilityMeterChargeCategoryFilter', graphql_name='category') + value = sgqlc.types.Field(FloatFilter, graphql_name='value') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('MeterStatementsChargesRecordFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('MeterStatementsChargesRecordFilter')), graphql_name='or') + not_ = sgqlc.types.Field('MeterStatementsChargesRecordFilter', graphql_name='not') + + +class MeterStatementsNormalizedChargesRecordFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('category', 'value', 'and_', 'or_', 'not_') + category = sgqlc.types.Field('UtilityMeterChargeCategoryFilter', graphql_name='category') + value = sgqlc.types.Field(FloatFilter, graphql_name='value') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('MeterStatementsNormalizedChargesRecordFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('MeterStatementsNormalizedChargesRecordFilter')), graphql_name='or') + not_ = sgqlc.types.Field('MeterStatementsNormalizedChargesRecordFilter', graphql_name='not') + + +class MeterUsageCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'meter_statement_id', 'category', 'override_at', 'line_number', 'created_at', 'updated_at', 'deleted_at') + id = sgqlc.types.Field(Int, graphql_name='id') + meter_statement_id = sgqlc.types.Field(Int, graphql_name='meterStatementId') + category = sgqlc.types.Field(UtilityMeterUsageCategory, graphql_name='category') + override_at = sgqlc.types.Field(Datetime, graphql_name='overrideAt') + line_number = sgqlc.types.Field(Int, graphql_name='lineNumber') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') + deleted_at = sgqlc.types.Field(Datetime, graphql_name='deletedAt') + + +class MeterUsageFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('label', 'value', 'units', 'id', 'meter_statement_id', 'category', 'override_at', 'line_number', 'created_at', 'updated_at', 'deleted_at', 'and_', 'or_', 'not_') + label = sgqlc.types.Field('StringFilter', graphql_name='label') + value = sgqlc.types.Field(FloatFilter, graphql_name='value') + units = sgqlc.types.Field('StringFilter', graphql_name='units') + id = sgqlc.types.Field(IntFilter, graphql_name='id') + meter_statement_id = sgqlc.types.Field(IntFilter, graphql_name='meterStatementId') + category = sgqlc.types.Field('UtilityMeterUsageCategoryFilter', graphql_name='category') + override_at = sgqlc.types.Field(DatetimeFilter, graphql_name='overrideAt') + line_number = sgqlc.types.Field(IntFilter, graphql_name='lineNumber') + created_at = sgqlc.types.Field(DatetimeFilter, graphql_name='createdAt') + updated_at = sgqlc.types.Field(DatetimeFilter, graphql_name='updatedAt') + deleted_at = sgqlc.types.Field(DatetimeFilter, graphql_name='deletedAt') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('MeterUsageFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('MeterUsageFilter')), graphql_name='or') + not_ = sgqlc.types.Field('MeterUsageFilter', graphql_name='not') + + +class MeterUsageInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'meter_statement_id', 'category', 'label', 'value', 'units', 'line_number', 'meter_statement') + id = sgqlc.types.Field(Int, graphql_name='id') + meter_statement_id = sgqlc.types.Field(Int, graphql_name='meterStatementId') + category = sgqlc.types.Field(sgqlc.types.non_null(UtilityMeterUsageCategory), graphql_name='category') + label = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='label') + value = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='value') + units = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='units') + line_number = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='lineNumber') + meter_statement = sgqlc.types.Field(MeterStatementInput, graphql_name='meterStatement') + + +class MeterUsagePatch(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('label', 'value', 'units') + label = sgqlc.types.Field(String, graphql_name='label') + value = sgqlc.types.Field(Float, graphql_name='value') + units = sgqlc.types.Field(String, graphql_name='units') + + +class MetricDatatypeFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('is_null', 'equal_to', 'not_equal_to', 'distinct_from', 'not_distinct_from', 'in_', 'not_in', 'less_than', 'less_than_or_equal_to', 'greater_than', 'greater_than_or_equal_to') + is_null = sgqlc.types.Field(Boolean, graphql_name='isNull') + equal_to = sgqlc.types.Field(MetricDatatype, graphql_name='equalTo') + not_equal_to = sgqlc.types.Field(MetricDatatype, graphql_name='notEqualTo') + distinct_from = sgqlc.types.Field(MetricDatatype, graphql_name='distinctFrom') + not_distinct_from = sgqlc.types.Field(MetricDatatype, graphql_name='notDistinctFrom') + in_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(MetricDatatype)), graphql_name='in') + not_in = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(MetricDatatype)), graphql_name='notIn') + less_than = sgqlc.types.Field(MetricDatatype, graphql_name='lessThan') + less_than_or_equal_to = sgqlc.types.Field(MetricDatatype, graphql_name='lessThanOrEqualTo') + greater_than = sgqlc.types.Field(MetricDatatype, graphql_name='greaterThan') + greater_than_or_equal_to = sgqlc.types.Field(MetricDatatype, graphql_name='greaterThanOrEqualTo') + + +class MetricMetadatumCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('label', 'human_label', 'is_composite', 'is_sparse', 'is_internal', 'data_type', 'table', 'unit_dimension', 'unit', 'created_at', 'updated_at', 'expression') + label = sgqlc.types.Field(String, graphql_name='label') + human_label = sgqlc.types.Field(String, graphql_name='humanLabel') + is_composite = sgqlc.types.Field(Boolean, graphql_name='isComposite') + is_sparse = sgqlc.types.Field(Boolean, graphql_name='isSparse') + is_internal = sgqlc.types.Field(Boolean, graphql_name='isInternal') + data_type = sgqlc.types.Field(MetricDatatype, graphql_name='dataType') + table = sgqlc.types.Field(String, graphql_name='table') + unit_dimension = sgqlc.types.Field(String, graphql_name='unitDimension') + unit = sgqlc.types.Field(String, graphql_name='unit') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') + expression = sgqlc.types.Field(String, graphql_name='expression') + + +class MetricMetadatumFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('label', 'human_label', 'is_composite', 'is_sparse', 'is_internal', 'data_type', 'table', 'unit_dimension', 'unit', 'created_at', 'updated_at', 'expression', 'dependency_list', 'dependents_list', 'and_', 'or_', 'not_') + label = sgqlc.types.Field('StringFilter', graphql_name='label') + human_label = sgqlc.types.Field('StringFilter', graphql_name='humanLabel') + is_composite = sgqlc.types.Field(BooleanFilter, graphql_name='isComposite') + is_sparse = sgqlc.types.Field(BooleanFilter, graphql_name='isSparse') + is_internal = sgqlc.types.Field(BooleanFilter, graphql_name='isInternal') + data_type = sgqlc.types.Field(MetricDatatypeFilter, graphql_name='dataType') + table = sgqlc.types.Field('StringFilter', graphql_name='table') + unit_dimension = sgqlc.types.Field('StringFilter', graphql_name='unitDimension') + unit = sgqlc.types.Field('StringFilter', graphql_name='unit') + created_at = sgqlc.types.Field(DatetimeFilter, graphql_name='createdAt') + updated_at = sgqlc.types.Field(DatetimeFilter, graphql_name='updatedAt') + expression = sgqlc.types.Field('StringFilter', graphql_name='expression') + dependency_list = sgqlc.types.Field('StringListFilter', graphql_name='dependencyList') + dependents_list = sgqlc.types.Field('StringListFilter', graphql_name='dependentsList') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('MetricMetadatumFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('MetricMetadatumFilter')), graphql_name='or') + not_ = sgqlc.types.Field('MetricMetadatumFilter', graphql_name='not') + + +class PatchControlEventRemoteMetadataInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'control_event_id', 'patched_metadata') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + control_event_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='controlEventId') + patched_metadata = sgqlc.types.Field(sgqlc.types.non_null(JSON), graphql_name='patchedMetadata') + + +class PermissionBooleanFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('equal_to',) + equal_to = sgqlc.types.Field(Boolean, graphql_name='equalTo') + + +class PlatformAccessTokenCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'type', 'description', 'owner_id', 'created_at', 'expires_at') + id = sgqlc.types.Field(BigInt, graphql_name='id') + type = sgqlc.types.Field(AccessTokenType, graphql_name='type') + description = sgqlc.types.Field(String, graphql_name='description') + owner_id = sgqlc.types.Field(String, graphql_name='ownerId') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + expires_at = sgqlc.types.Field(Datetime, graphql_name='expiresAt') + + +class PlatformAccessTokenFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'type', 'description', 'owner_id', 'created_at', 'expires_at', 'and_', 'or_', 'not_') + id = sgqlc.types.Field(BigIntFilter, graphql_name='id') + type = sgqlc.types.Field(AccessTokenTypeFilter, graphql_name='type') + description = sgqlc.types.Field('StringFilter', graphql_name='description') + owner_id = sgqlc.types.Field('StringFilter', graphql_name='ownerId') + created_at = sgqlc.types.Field(DatetimeFilter, graphql_name='createdAt') + expires_at = sgqlc.types.Field(DatetimeFilter, graphql_name='expiresAt') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PlatformAccessTokenFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PlatformAccessTokenFilter')), graphql_name='or') + not_ = sgqlc.types.Field('PlatformAccessTokenFilter', graphql_name='not') + + +class PlatformCapabilityAccessDefinition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('capability', 'enable_read', 'enable_write') + capability = sgqlc.types.Field(sgqlc.types.non_null(PlatformCapability), graphql_name='capability') + enable_read = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='enableRead') + enable_write = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='enableWrite') + + +class ProgramCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'project_type_id', 'name', 'description', 'created_at', 'updated_at') + id = sgqlc.types.Field(Int, graphql_name='id') + project_type_id = sgqlc.types.Field(Int, graphql_name='projectTypeId') + name = sgqlc.types.Field(String, graphql_name='name') + description = sgqlc.types.Field(String, graphql_name='description') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') + + +class ProgramFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'project_type_id', 'name', 'description', 'created_at', 'updated_at', 'and_', 'or_', 'not_') + id = sgqlc.types.Field(IntFilter, graphql_name='id') + project_type_id = sgqlc.types.Field(IntFilter, graphql_name='projectTypeId') + name = sgqlc.types.Field('StringFilter', graphql_name='name') + description = sgqlc.types.Field('StringFilter', graphql_name='description') + created_at = sgqlc.types.Field(DatetimeFilter, graphql_name='createdAt') + updated_at = sgqlc.types.Field(DatetimeFilter, graphql_name='updatedAt') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ProgramFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ProgramFilter')), graphql_name='or') + not_ = sgqlc.types.Field('ProgramFilter', graphql_name='not') + + +class ProgramInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('project_type_id', 'name', 'description') + project_type_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='projectTypeId') + name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') + description = sgqlc.types.Field(String, graphql_name='description') + + +class ProgramPatch(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('project_type_id', 'name', 'description') + project_type_id = sgqlc.types.Field(Int, graphql_name='projectTypeId') + name = sgqlc.types.Field(String, graphql_name='name') + description = sgqlc.types.Field(String, graphql_name='description') + + +class ProjectComponentCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('project_id', 'component_id', 'startup_offset') + project_id = sgqlc.types.Field(Int, graphql_name='projectId') + component_id = sgqlc.types.Field(Int, graphql_name='componentId') + startup_offset = sgqlc.types.Field(Int, graphql_name='startupOffset') + + +class ProjectComponentFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('project_id', 'component_id', 'startup_offset', 'and_', 'or_', 'not_') + project_id = sgqlc.types.Field(IntFilter, graphql_name='projectId') + component_id = sgqlc.types.Field(IntFilter, graphql_name='componentId') + startup_offset = sgqlc.types.Field(IntFilter, graphql_name='startupOffset') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ProjectComponentFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ProjectComponentFilter')), graphql_name='or') + not_ = sgqlc.types.Field('ProjectComponentFilter', graphql_name='not') + + +class ProjectComponentInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('project_id', 'component_id', 'startup_offset') + project_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='projectId') + component_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='componentId') + startup_offset = sgqlc.types.Field(Int, graphql_name='startupOffset') + + +class ProjectComponentPatch(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('project_id', 'component_id', 'startup_offset') + project_id = sgqlc.types.Field(Int, graphql_name='projectId') + component_id = sgqlc.types.Field(Int, graphql_name='componentId') + startup_offset = sgqlc.types.Field(Int, graphql_name='startupOffset') + + +class ProjectCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'facility_id', 'project_type_id', 'name', 'description', 'auto_acknowledge', 'config', 'start_date', 'end_date', 'created_at', 'updated_at', 'acknowledgement_window_threshold', 'start_timeout', 'end_timeout', 'program_id') + id = sgqlc.types.Field(Int, graphql_name='id') + facility_id = sgqlc.types.Field(Int, graphql_name='facilityId') + project_type_id = sgqlc.types.Field(Int, graphql_name='projectTypeId') + name = sgqlc.types.Field(String, graphql_name='name') + description = sgqlc.types.Field(String, graphql_name='description') + auto_acknowledge = sgqlc.types.Field(Boolean, graphql_name='autoAcknowledge') + config = sgqlc.types.Field(JSON, graphql_name='config') + start_date = sgqlc.types.Field(Date, graphql_name='startDate') + end_date = sgqlc.types.Field(Date, graphql_name='endDate') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') + acknowledgement_window_threshold = sgqlc.types.Field(Int, graphql_name='acknowledgementWindowThreshold') + start_timeout = sgqlc.types.Field(Int, graphql_name='startTimeout') + end_timeout = sgqlc.types.Field(Int, graphql_name='endTimeout') + program_id = sgqlc.types.Field(Int, graphql_name='programId') + + +class ProjectFieldCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('project_id', 'field_id', 'group_id', 'created_at', 'updated_at', 'alias', 'id', 'rate', 'target', 'data_point_id') + project_id = sgqlc.types.Field(Int, graphql_name='projectId') + field_id = sgqlc.types.Field(Int, graphql_name='fieldId') + group_id = sgqlc.types.Field(Int, graphql_name='groupId') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') + alias = sgqlc.types.Field(String, graphql_name='alias') + id = sgqlc.types.Field(Int, graphql_name='id') + rate = sgqlc.types.Field(JSON, graphql_name='rate') + target = sgqlc.types.Field(BigFloat, graphql_name='target') + data_point_id = sgqlc.types.Field(BigInt, graphql_name='dataPointId') + + +class ProjectFieldFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('project_id', 'field_id', 'group_id', 'created_at', 'updated_at', 'alias', 'id', 'rate', 'target', 'data_point_id', 'and_', 'or_', 'not_') + project_id = sgqlc.types.Field(IntFilter, graphql_name='projectId') + field_id = sgqlc.types.Field(IntFilter, graphql_name='fieldId') + group_id = sgqlc.types.Field(IntFilter, graphql_name='groupId') + created_at = sgqlc.types.Field(DatetimeFilter, graphql_name='createdAt') + updated_at = sgqlc.types.Field(DatetimeFilter, graphql_name='updatedAt') + alias = sgqlc.types.Field('StringFilter', graphql_name='alias') + id = sgqlc.types.Field(IntFilter, graphql_name='id') + rate = sgqlc.types.Field(JSONFilter, graphql_name='rate') + target = sgqlc.types.Field(BigFloatFilter, graphql_name='target') + data_point_id = sgqlc.types.Field(BigIntFilter, graphql_name='dataPointId') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ProjectFieldFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ProjectFieldFilter')), graphql_name='or') + not_ = sgqlc.types.Field('ProjectFieldFilter', graphql_name='not') + + +class ProjectFieldInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('project_id', 'field_id', 'group_id', 'alias', 'rate', 'target', 'data_point_id', 'field_group', 'data_point') + project_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='projectId') + field_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='fieldId') + group_id = sgqlc.types.Field(Int, graphql_name='groupId') + alias = sgqlc.types.Field(String, graphql_name='alias') + rate = sgqlc.types.Field(JSON, graphql_name='rate') + target = sgqlc.types.Field(BigFloat, graphql_name='target') + data_point_id = sgqlc.types.Field(BigInt, graphql_name='dataPointId') + field_group = sgqlc.types.Field(FieldGroupInput, graphql_name='fieldGroup') + data_point = sgqlc.types.Field(DataPointInput, graphql_name='dataPoint') + + +class ProjectFieldPatch(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('project_id', 'field_id', 'group_id', 'alias', 'rate', 'target', 'data_point_id') + project_id = sgqlc.types.Field(Int, graphql_name='projectId') + field_id = sgqlc.types.Field(Int, graphql_name='fieldId') + group_id = sgqlc.types.Field(Int, graphql_name='groupId') + alias = sgqlc.types.Field(String, graphql_name='alias') + rate = sgqlc.types.Field(JSON, graphql_name='rate') + target = sgqlc.types.Field(BigFloat, graphql_name='target') + data_point_id = sgqlc.types.Field(BigInt, graphql_name='dataPointId') + + +class ProjectFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('can_control', 'id', 'facility_id', 'project_type_id', 'name', 'description', 'auto_acknowledge', 'config', 'start_date', 'end_date', 'created_at', 'updated_at', 'acknowledgement_window_threshold', 'start_timeout', 'end_timeout', 'program_id', 'control_type', 'facility_name', 'is_watching', 'program_name', 'project_type_name', 'subscribed_channels', 'and_', 'or_', 'not_') + can_control = sgqlc.types.Field(PermissionBooleanFilter, graphql_name='canControl') + id = sgqlc.types.Field(IntFilter, graphql_name='id') + facility_id = sgqlc.types.Field(IntFilter, graphql_name='facilityId') + project_type_id = sgqlc.types.Field(IntFilter, graphql_name='projectTypeId') + name = sgqlc.types.Field('StringFilter', graphql_name='name') + description = sgqlc.types.Field('StringFilter', graphql_name='description') + auto_acknowledge = sgqlc.types.Field(BooleanFilter, graphql_name='autoAcknowledge') + config = sgqlc.types.Field(JSONFilter, graphql_name='config') + start_date = sgqlc.types.Field(DateFilter, graphql_name='startDate') + end_date = sgqlc.types.Field(DateFilter, graphql_name='endDate') + created_at = sgqlc.types.Field(DatetimeFilter, graphql_name='createdAt') + updated_at = sgqlc.types.Field(DatetimeFilter, graphql_name='updatedAt') + acknowledgement_window_threshold = sgqlc.types.Field(IntFilter, graphql_name='acknowledgementWindowThreshold') + start_timeout = sgqlc.types.Field(IntFilter, graphql_name='startTimeout') + end_timeout = sgqlc.types.Field(IntFilter, graphql_name='endTimeout') + program_id = sgqlc.types.Field(IntFilter, graphql_name='programId') + control_type = sgqlc.types.Field(ControlTypeFilter, graphql_name='controlType') + facility_name = sgqlc.types.Field('StringFilter', graphql_name='facilityName') + is_watching = sgqlc.types.Field(BooleanFilter, graphql_name='isWatching') + program_name = sgqlc.types.Field('StringFilter', graphql_name='programName') + project_type_name = sgqlc.types.Field('StringFilter', graphql_name='projectTypeName') + subscribed_channels = sgqlc.types.Field('UserSubscriptionChannelListFilter', graphql_name='subscribedChannels') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ProjectFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ProjectFilter')), graphql_name='or') + not_ = sgqlc.types.Field('ProjectFilter', graphql_name='not') + + +class ProjectInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'project_type_id', 'name', 'description', 'auto_acknowledge', 'config', 'start_date', 'end_date', 'acknowledgement_window_threshold', 'start_timeout', 'end_timeout', 'program_id', 'program') + facility_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='facilityId') + project_type_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='projectTypeId') + name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') + description = sgqlc.types.Field(String, graphql_name='description') + auto_acknowledge = sgqlc.types.Field(Boolean, graphql_name='autoAcknowledge') + config = sgqlc.types.Field(JSON, graphql_name='config') + start_date = sgqlc.types.Field(Date, graphql_name='startDate') + end_date = sgqlc.types.Field(Date, graphql_name='endDate') + acknowledgement_window_threshold = sgqlc.types.Field(Int, graphql_name='acknowledgementWindowThreshold') + start_timeout = sgqlc.types.Field(Int, graphql_name='startTimeout') + end_timeout = sgqlc.types.Field(Int, graphql_name='endTimeout') + program_id = sgqlc.types.Field(Int, graphql_name='programId') + program = sgqlc.types.Field(ProgramInput, graphql_name='program') + + +class ProjectPatch(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'project_type_id', 'name', 'description', 'auto_acknowledge', 'config', 'start_date', 'end_date', 'acknowledgement_window_threshold', 'start_timeout', 'end_timeout', 'program_id') + facility_id = sgqlc.types.Field(Int, graphql_name='facilityId') + project_type_id = sgqlc.types.Field(Int, graphql_name='projectTypeId') + name = sgqlc.types.Field(String, graphql_name='name') + description = sgqlc.types.Field(String, graphql_name='description') + auto_acknowledge = sgqlc.types.Field(Boolean, graphql_name='autoAcknowledge') + config = sgqlc.types.Field(JSON, graphql_name='config') + start_date = sgqlc.types.Field(Date, graphql_name='startDate') + end_date = sgqlc.types.Field(Date, graphql_name='endDate') + acknowledgement_window_threshold = sgqlc.types.Field(Int, graphql_name='acknowledgementWindowThreshold') + start_timeout = sgqlc.types.Field(Int, graphql_name='startTimeout') + end_timeout = sgqlc.types.Field(Int, graphql_name='endTimeout') + program_id = sgqlc.types.Field(Int, graphql_name='programId') + + +class ProjectTypeCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'name', 'description') + id = sgqlc.types.Field(Int, graphql_name='id') + name = sgqlc.types.Field(String, graphql_name='name') + description = sgqlc.types.Field(String, graphql_name='description') + + +class ProjectTypeFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'name', 'description', 'and_', 'or_', 'not_') + id = sgqlc.types.Field(IntFilter, graphql_name='id') + name = sgqlc.types.Field('StringFilter', graphql_name='name') + description = sgqlc.types.Field('StringFilter', graphql_name='description') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ProjectTypeFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ProjectTypeFilter')), graphql_name='or') + not_ = sgqlc.types.Field('ProjectTypeFilter', graphql_name='not') + + +class ProjectWatcherCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('project_id', 'user_id') + project_id = sgqlc.types.Field(Int, graphql_name='projectId') + user_id = sgqlc.types.Field(String, graphql_name='userId') + + +class ProjectWatcherFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('project_id', 'user_id', 'subscribed_channels', 'and_', 'or_', 'not_') + project_id = sgqlc.types.Field(IntFilter, graphql_name='projectId') + user_id = sgqlc.types.Field('StringFilter', graphql_name='userId') + subscribed_channels = sgqlc.types.Field('UserSubscriptionChannelListFilter', graphql_name='subscribedChannels') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ProjectWatcherFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ProjectWatcherFilter')), graphql_name='or') + not_ = sgqlc.types.Field('ProjectWatcherFilter', graphql_name='not') + + +class ProjectWatcherInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('project_id', 'user_id') + project_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='projectId') + user_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='userId') + + +class ProjectWatcherPatch(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('project_id', 'user_id') + project_id = sgqlc.types.Field(Int, graphql_name='projectId') + user_id = sgqlc.types.Field(String, graphql_name='userId') + + +class RegenerateAccessTokenInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'client_mutation_id') + id = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + + +class RemoveFavoriteFacilityInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'facility_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + facility_id = sgqlc.types.Field(Int, graphql_name='facilityId') + + +class RemoveMetricMetadataDependencyInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'parent_metric', 'child_metric') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + parent_metric = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='parentMetric') + child_metric = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='childMetric') + + +class RemoveProjectControllerInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'project_id', 'user_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + project_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='projectId') + user_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='userId') + + +class ReparentMeterStatementInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'meter_statement_id', 'dest_utility_meter_id', 'dest_account_statement_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + meter_statement_id = sgqlc.types.Field(Int, graphql_name='meterStatementId') + dest_utility_meter_id = sgqlc.types.Field(Int, graphql_name='destUtilityMeterId') + dest_account_statement_id = sgqlc.types.Field(Int, graphql_name='destAccountStatementId') + + +class ReportCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'label', 'description', 'created_at', 'updated_at', 'json_schema') + id = sgqlc.types.Field(Int, graphql_name='id') + label = sgqlc.types.Field(String, graphql_name='label') + description = sgqlc.types.Field(String, graphql_name='description') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') + json_schema = sgqlc.types.Field(JSON, graphql_name='jsonSchema') + + +class ReportExecutionCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'report_id', 'status', 'file_path', 'errors', 'created_at', 'updated_at', 'actor') + id = sgqlc.types.Field(Int, graphql_name='id') + report_id = sgqlc.types.Field(Int, graphql_name='reportId') + status = sgqlc.types.Field(String, graphql_name='status') + file_path = sgqlc.types.Field(String, graphql_name='filePath') + errors = sgqlc.types.Field(JSON, graphql_name='errors') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') + actor = sgqlc.types.Field(ActorInput, graphql_name='actor') + + +class ReportExecutionFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'report_id', 'status', 'file_path', 'errors', 'created_at', 'updated_at', 'actor', 'and_', 'or_', 'not_') + id = sgqlc.types.Field(IntFilter, graphql_name='id') + report_id = sgqlc.types.Field(IntFilter, graphql_name='reportId') + status = sgqlc.types.Field('StringFilter', graphql_name='status') + file_path = sgqlc.types.Field('StringFilter', graphql_name='filePath') + errors = sgqlc.types.Field(JSONFilter, graphql_name='errors') + created_at = sgqlc.types.Field(DatetimeFilter, graphql_name='createdAt') + updated_at = sgqlc.types.Field(DatetimeFilter, graphql_name='updatedAt') + actor = sgqlc.types.Field(ActorFilter, graphql_name='actor') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ReportExecutionFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ReportExecutionFilter')), graphql_name='or') + not_ = sgqlc.types.Field('ReportExecutionFilter', graphql_name='not') + + +class ReportExecutionInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('report_id', 'status', 'file_path', 'errors') + report_id = sgqlc.types.Field(Int, graphql_name='reportId') + status = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='status') + file_path = sgqlc.types.Field(String, graphql_name='filePath') + errors = sgqlc.types.Field(JSON, graphql_name='errors') + + +class ReportExecutionPatch(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('report_id', 'status', 'file_path', 'errors') + report_id = sgqlc.types.Field(Int, graphql_name='reportId') + status = sgqlc.types.Field(String, graphql_name='status') + file_path = sgqlc.types.Field(String, graphql_name='filePath') + errors = sgqlc.types.Field(JSON, graphql_name='errors') + + +class ReportFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'label', 'description', 'created_at', 'updated_at', 'json_schema', 'and_', 'or_', 'not_') + id = sgqlc.types.Field(IntFilter, graphql_name='id') + label = sgqlc.types.Field('StringFilter', graphql_name='label') + description = sgqlc.types.Field('StringFilter', graphql_name='description') + created_at = sgqlc.types.Field(DatetimeFilter, graphql_name='createdAt') + updated_at = sgqlc.types.Field(DatetimeFilter, graphql_name='updatedAt') + json_schema = sgqlc.types.Field(JSONFilter, graphql_name='jsonSchema') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ReportFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ReportFilter')), graphql_name='or') + not_ = sgqlc.types.Field('ReportFilter', graphql_name='not') + + +class ReportQueryCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'report_id', 'label', 'description', 'db_type', 'query', 'created_at', 'updated_at') + id = sgqlc.types.Field(Int, graphql_name='id') + report_id = sgqlc.types.Field(Int, graphql_name='reportId') + label = sgqlc.types.Field(String, graphql_name='label') + description = sgqlc.types.Field(String, graphql_name='description') + db_type = sgqlc.types.Field(String, graphql_name='dbType') + query = sgqlc.types.Field(String, graphql_name='query') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') + + +class ReportQueryFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'report_id', 'label', 'description', 'db_type', 'query', 'created_at', 'updated_at', 'and_', 'or_', 'not_') + id = sgqlc.types.Field(IntFilter, graphql_name='id') + report_id = sgqlc.types.Field(IntFilter, graphql_name='reportId') + label = sgqlc.types.Field('StringFilter', graphql_name='label') + description = sgqlc.types.Field('StringFilter', graphql_name='description') + db_type = sgqlc.types.Field('StringFilter', graphql_name='dbType') + query = sgqlc.types.Field('StringFilter', graphql_name='query') + created_at = sgqlc.types.Field(DatetimeFilter, graphql_name='createdAt') + updated_at = sgqlc.types.Field(DatetimeFilter, graphql_name='updatedAt') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ReportQueryFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ReportQueryFilter')), graphql_name='or') + not_ = sgqlc.types.Field('ReportQueryFilter', graphql_name='not') + + +class ReportQueryInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('report_id', 'label', 'description', 'db_type', 'query') + report_id = sgqlc.types.Field(Int, graphql_name='reportId') + label = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='label') + description = sgqlc.types.Field(String, graphql_name='description') + db_type = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='dbType') + query = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='query') + + +class RevokeAccessTokenInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'client_mutation_id') + id = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + + +class SavingsEventCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'project_id', 'start_time', 'end_time', 'metadata', 'created_at', 'updated_at') + id = sgqlc.types.Field(Int, graphql_name='id') + project_id = sgqlc.types.Field(Int, graphql_name='projectId') + start_time = sgqlc.types.Field(Datetime, graphql_name='startTime') + end_time = sgqlc.types.Field(Datetime, graphql_name='endTime') + metadata = sgqlc.types.Field(JSON, graphql_name='metadata') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') + + +class SavingsEventFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'project_id', 'start_time', 'end_time', 'metadata', 'created_at', 'updated_at', 'and_', 'or_', 'not_') + id = sgqlc.types.Field(IntFilter, graphql_name='id') + project_id = sgqlc.types.Field(IntFilter, graphql_name='projectId') + start_time = sgqlc.types.Field(DatetimeFilter, graphql_name='startTime') + end_time = sgqlc.types.Field(DatetimeFilter, graphql_name='endTime') + metadata = sgqlc.types.Field(JSONFilter, graphql_name='metadata') + created_at = sgqlc.types.Field(DatetimeFilter, graphql_name='createdAt') + updated_at = sgqlc.types.Field(DatetimeFilter, graphql_name='updatedAt') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SavingsEventFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SavingsEventFilter')), graphql_name='or') + not_ = sgqlc.types.Field('SavingsEventFilter', graphql_name='not') + + +class SavingsEventInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('project_id', 'start_time', 'end_time', 'metadata') + project_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='projectId') + start_time = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='startTime') + end_time = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='endTime') + metadata = sgqlc.types.Field(JSON, graphql_name='metadata') + + +class SavingsEventPatch(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('project_id', 'start_time', 'end_time', 'metadata') + project_id = sgqlc.types.Field(Int, graphql_name='projectId') + start_time = sgqlc.types.Field(Datetime, graphql_name='startTime') + end_time = sgqlc.types.Field(Datetime, graphql_name='endTime') + metadata = sgqlc.types.Field(JSON, graphql_name='metadata') + + +class SetMachineUserCapabilityInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'machine_user_id', 'capabilities') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + machine_user_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='machineUserId') + capabilities = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(PlatformCapabilityAccessDefinition))), graphql_name='capabilities') + + +class StringFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('is_null', 'equal_to', 'not_equal_to', 'distinct_from', 'not_distinct_from', 'in_', 'not_in', 'less_than', 'less_than_or_equal_to', 'greater_than', 'greater_than_or_equal_to', 'includes', 'not_includes', 'includes_insensitive', 'not_includes_insensitive', 'starts_with', 'not_starts_with', 'starts_with_insensitive', 'not_starts_with_insensitive', 'ends_with', 'not_ends_with', 'ends_with_insensitive', 'not_ends_with_insensitive', 'like', 'not_like', 'like_insensitive', 'not_like_insensitive', 'equal_to_insensitive', 'not_equal_to_insensitive', 'distinct_from_insensitive', 'not_distinct_from_insensitive', 'in_insensitive', 'not_in_insensitive', 'less_than_insensitive', 'less_than_or_equal_to_insensitive', 'greater_than_insensitive', 'greater_than_or_equal_to_insensitive') + is_null = sgqlc.types.Field(Boolean, graphql_name='isNull') + equal_to = sgqlc.types.Field(String, graphql_name='equalTo') + not_equal_to = sgqlc.types.Field(String, graphql_name='notEqualTo') + distinct_from = sgqlc.types.Field(String, graphql_name='distinctFrom') + not_distinct_from = sgqlc.types.Field(String, graphql_name='notDistinctFrom') + in_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='in') + not_in = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='notIn') + less_than = sgqlc.types.Field(String, graphql_name='lessThan') + less_than_or_equal_to = sgqlc.types.Field(String, graphql_name='lessThanOrEqualTo') + greater_than = sgqlc.types.Field(String, graphql_name='greaterThan') + greater_than_or_equal_to = sgqlc.types.Field(String, graphql_name='greaterThanOrEqualTo') + includes = sgqlc.types.Field(String, graphql_name='includes') + not_includes = sgqlc.types.Field(String, graphql_name='notIncludes') + includes_insensitive = sgqlc.types.Field(String, graphql_name='includesInsensitive') + not_includes_insensitive = sgqlc.types.Field(String, graphql_name='notIncludesInsensitive') + starts_with = sgqlc.types.Field(String, graphql_name='startsWith') + not_starts_with = sgqlc.types.Field(String, graphql_name='notStartsWith') + starts_with_insensitive = sgqlc.types.Field(String, graphql_name='startsWithInsensitive') + not_starts_with_insensitive = sgqlc.types.Field(String, graphql_name='notStartsWithInsensitive') + ends_with = sgqlc.types.Field(String, graphql_name='endsWith') + not_ends_with = sgqlc.types.Field(String, graphql_name='notEndsWith') + ends_with_insensitive = sgqlc.types.Field(String, graphql_name='endsWithInsensitive') + not_ends_with_insensitive = sgqlc.types.Field(String, graphql_name='notEndsWithInsensitive') + like = sgqlc.types.Field(String, graphql_name='like') + not_like = sgqlc.types.Field(String, graphql_name='notLike') + like_insensitive = sgqlc.types.Field(String, graphql_name='likeInsensitive') + not_like_insensitive = sgqlc.types.Field(String, graphql_name='notLikeInsensitive') + equal_to_insensitive = sgqlc.types.Field(String, graphql_name='equalToInsensitive') + not_equal_to_insensitive = sgqlc.types.Field(String, graphql_name='notEqualToInsensitive') + distinct_from_insensitive = sgqlc.types.Field(String, graphql_name='distinctFromInsensitive') + not_distinct_from_insensitive = sgqlc.types.Field(String, graphql_name='notDistinctFromInsensitive') + in_insensitive = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='inInsensitive') + not_in_insensitive = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='notInInsensitive') + less_than_insensitive = sgqlc.types.Field(String, graphql_name='lessThanInsensitive') + less_than_or_equal_to_insensitive = sgqlc.types.Field(String, graphql_name='lessThanOrEqualToInsensitive') + greater_than_insensitive = sgqlc.types.Field(String, graphql_name='greaterThanInsensitive') + greater_than_or_equal_to_insensitive = sgqlc.types.Field(String, graphql_name='greaterThanOrEqualToInsensitive') + + +class StringListFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('is_null', 'equal_to', 'not_equal_to', 'distinct_from', 'not_distinct_from', 'less_than', 'less_than_or_equal_to', 'greater_than', 'greater_than_or_equal_to', 'contains', 'contained_by', 'overlaps', 'any_equal_to', 'any_not_equal_to', 'any_less_than', 'any_less_than_or_equal_to', 'any_greater_than', 'any_greater_than_or_equal_to') + is_null = sgqlc.types.Field(Boolean, graphql_name='isNull') + equal_to = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='equalTo') + not_equal_to = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='notEqualTo') + distinct_from = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='distinctFrom') + not_distinct_from = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='notDistinctFrom') + less_than = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='lessThan') + less_than_or_equal_to = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='lessThanOrEqualTo') + greater_than = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='greaterThan') + greater_than_or_equal_to = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='greaterThanOrEqualTo') + contains = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='contains') + contained_by = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='containedBy') + overlaps = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='overlaps') + any_equal_to = sgqlc.types.Field(String, graphql_name='anyEqualTo') + any_not_equal_to = sgqlc.types.Field(String, graphql_name='anyNotEqualTo') + any_less_than = sgqlc.types.Field(String, graphql_name='anyLessThan') + any_less_than_or_equal_to = sgqlc.types.Field(String, graphql_name='anyLessThanOrEqualTo') + any_greater_than = sgqlc.types.Field(String, graphql_name='anyGreaterThan') + any_greater_than_or_equal_to = sgqlc.types.Field(String, graphql_name='anyGreaterThanOrEqualTo') + + +class SuggestionActivityLogCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('suggestion_id', 'created_at', 'type', 'actor', 'metadata') + suggestion_id = sgqlc.types.Field(Int, graphql_name='suggestionId') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + type = sgqlc.types.Field(SuggestionActivityType, graphql_name='type') + actor = sgqlc.types.Field(ActorInput, graphql_name='actor') + metadata = sgqlc.types.Field(JSON, graphql_name='metadata') + + +class SuggestionActivityLogFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('suggestion_id', 'created_at', 'type', 'metadata', 'actor', 'and_', 'or_', 'not_') + suggestion_id = sgqlc.types.Field(IntFilter, graphql_name='suggestionId') + created_at = sgqlc.types.Field(DatetimeFilter, graphql_name='createdAt') + type = sgqlc.types.Field('SuggestionActivityTypeFilter', graphql_name='type') + metadata = sgqlc.types.Field(JSONFilter, graphql_name='metadata') + actor = sgqlc.types.Field(ActorFilter, graphql_name='actor') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SuggestionActivityLogFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SuggestionActivityLogFilter')), graphql_name='or') + not_ = sgqlc.types.Field('SuggestionActivityLogFilter', graphql_name='not') + + +class SuggestionActivityLogInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('suggestion_id', 'created_at', 'type', 'actor', 'metadata', 'suggestion') + suggestion_id = sgqlc.types.Field(Int, graphql_name='suggestionId') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + type = sgqlc.types.Field(sgqlc.types.non_null(SuggestionActivityType), graphql_name='type') + actor = sgqlc.types.Field(ActorInput, graphql_name='actor') + metadata = sgqlc.types.Field(JSON, graphql_name='metadata') + suggestion = sgqlc.types.Field('SuggestionInput', graphql_name='suggestion') + + +class SuggestionActivityTypeFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('is_null', 'equal_to', 'not_equal_to', 'distinct_from', 'not_distinct_from', 'in_', 'not_in', 'less_than', 'less_than_or_equal_to', 'greater_than', 'greater_than_or_equal_to') + is_null = sgqlc.types.Field(Boolean, graphql_name='isNull') + equal_to = sgqlc.types.Field(SuggestionActivityType, graphql_name='equalTo') + not_equal_to = sgqlc.types.Field(SuggestionActivityType, graphql_name='notEqualTo') + distinct_from = sgqlc.types.Field(SuggestionActivityType, graphql_name='distinctFrom') + not_distinct_from = sgqlc.types.Field(SuggestionActivityType, graphql_name='notDistinctFrom') + in_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(SuggestionActivityType)), graphql_name='in') + not_in = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(SuggestionActivityType)), graphql_name='notIn') + less_than = sgqlc.types.Field(SuggestionActivityType, graphql_name='lessThan') + less_than_or_equal_to = sgqlc.types.Field(SuggestionActivityType, graphql_name='lessThanOrEqualTo') + greater_than = sgqlc.types.Field(SuggestionActivityType, graphql_name='greaterThan') + greater_than_or_equal_to = sgqlc.types.Field(SuggestionActivityType, graphql_name='greaterThanOrEqualTo') + + +class SuggestionCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'project_id', 'description', 'start_time', 'end_time', 'metadata', 'created_at', 'updated_at', 'withdrawn_at', 'acknowledgement_status', 'savings_event_id') + id = sgqlc.types.Field(Int, graphql_name='id') + project_id = sgqlc.types.Field(Int, graphql_name='projectId') + description = sgqlc.types.Field(String, graphql_name='description') + start_time = sgqlc.types.Field(Datetime, graphql_name='startTime') + end_time = sgqlc.types.Field(Datetime, graphql_name='endTime') + metadata = sgqlc.types.Field(JSON, graphql_name='metadata') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') + withdrawn_at = sgqlc.types.Field(Datetime, graphql_name='withdrawnAt') + acknowledgement_status = sgqlc.types.Field(Acknowledgement, graphql_name='acknowledgementStatus') + savings_event_id = sgqlc.types.Field(Int, graphql_name='savingsEventId') + + +class SuggestionControlEventInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('suggestion_id', 'control_event_id', 'control_event') + suggestion_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='suggestionId') + control_event_id = sgqlc.types.Field(Int, graphql_name='controlEventId') + control_event = sgqlc.types.Field(ControlEventInput, graphql_name='controlEvent') + + +class SuggestionControlEventPatch(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('suggestion_id', 'control_event_id') + suggestion_id = sgqlc.types.Field(Int, graphql_name='suggestionId') + control_event_id = sgqlc.types.Field(Int, graphql_name='controlEventId') + + +class SuggestionFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('can_control', 'id', 'project_id', 'description', 'start_time', 'end_time', 'metadata', 'created_at', 'updated_at', 'withdrawn_at', 'acknowledgement_status', 'savings_event_id', 'acknowledgement_cutoff', 'control_type', 'facility_id', 'facility_name', 'is_acknowledged', 'is_rejected', 'is_watching', 'is_withdrawn', 'project_name', 'project_type', 'state', 'and_', 'or_', 'not_') + can_control = sgqlc.types.Field(PermissionBooleanFilter, graphql_name='canControl') + id = sgqlc.types.Field(IntFilter, graphql_name='id') + project_id = sgqlc.types.Field(IntFilter, graphql_name='projectId') + description = sgqlc.types.Field(StringFilter, graphql_name='description') + start_time = sgqlc.types.Field(DatetimeFilter, graphql_name='startTime') + end_time = sgqlc.types.Field(DatetimeFilter, graphql_name='endTime') + metadata = sgqlc.types.Field(JSONFilter, graphql_name='metadata') + created_at = sgqlc.types.Field(DatetimeFilter, graphql_name='createdAt') + updated_at = sgqlc.types.Field(DatetimeFilter, graphql_name='updatedAt') + withdrawn_at = sgqlc.types.Field(DatetimeFilter, graphql_name='withdrawnAt') + acknowledgement_status = sgqlc.types.Field(AcknowledgementFilter, graphql_name='acknowledgementStatus') + savings_event_id = sgqlc.types.Field(IntFilter, graphql_name='savingsEventId') + acknowledgement_cutoff = sgqlc.types.Field(DatetimeFilter, graphql_name='acknowledgementCutoff') + control_type = sgqlc.types.Field(ControlTypeFilter, graphql_name='controlType') + facility_id = sgqlc.types.Field(IntFilter, graphql_name='facilityId') + facility_name = sgqlc.types.Field(StringFilter, graphql_name='facilityName') + is_acknowledged = sgqlc.types.Field(BooleanFilter, graphql_name='isAcknowledged') + is_rejected = sgqlc.types.Field(BooleanFilter, graphql_name='isRejected') + is_watching = sgqlc.types.Field(BooleanFilter, graphql_name='isWatching') + is_withdrawn = sgqlc.types.Field(BooleanFilter, graphql_name='isWithdrawn') + project_name = sgqlc.types.Field(StringFilter, graphql_name='projectName') + project_type = sgqlc.types.Field(StringFilter, graphql_name='projectType') + state = sgqlc.types.Field('SuggestionStateFilter', graphql_name='state') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SuggestionFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SuggestionFilter')), graphql_name='or') + not_ = sgqlc.types.Field('SuggestionFilter', graphql_name='not') + + +class SuggestionInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('project_id', 'description', 'start_time', 'end_time', 'metadata', 'savings_event_id', 'savings_event') + project_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='projectId') + description = sgqlc.types.Field(String, graphql_name='description') + start_time = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='startTime') + end_time = sgqlc.types.Field(Datetime, graphql_name='endTime') + metadata = sgqlc.types.Field(JSON, graphql_name='metadata') + savings_event_id = sgqlc.types.Field(Int, graphql_name='savingsEventId') + savings_event = sgqlc.types.Field(SavingsEventInput, graphql_name='savingsEvent') + + +class SuggestionPatch(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('project_id', 'description', 'start_time', 'end_time', 'metadata', 'savings_event_id') + project_id = sgqlc.types.Field(Int, graphql_name='projectId') + description = sgqlc.types.Field(String, graphql_name='description') + start_time = sgqlc.types.Field(Datetime, graphql_name='startTime') + end_time = sgqlc.types.Field(Datetime, graphql_name='endTime') + metadata = sgqlc.types.Field(JSON, graphql_name='metadata') + savings_event_id = sgqlc.types.Field(Int, graphql_name='savingsEventId') + + +class SuggestionStateFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('is_null', 'equal_to', 'not_equal_to', 'distinct_from', 'not_distinct_from', 'in_', 'not_in', 'less_than', 'less_than_or_equal_to', 'greater_than', 'greater_than_or_equal_to') + is_null = sgqlc.types.Field(Boolean, graphql_name='isNull') + equal_to = sgqlc.types.Field(SuggestionState, graphql_name='equalTo') + not_equal_to = sgqlc.types.Field(SuggestionState, graphql_name='notEqualTo') + distinct_from = sgqlc.types.Field(SuggestionState, graphql_name='distinctFrom') + not_distinct_from = sgqlc.types.Field(SuggestionState, graphql_name='notDistinctFrom') + in_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(SuggestionState)), graphql_name='in') + not_in = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(SuggestionState)), graphql_name='notIn') + less_than = sgqlc.types.Field(SuggestionState, graphql_name='lessThan') + less_than_or_equal_to = sgqlc.types.Field(SuggestionState, graphql_name='lessThanOrEqualTo') + greater_than = sgqlc.types.Field(SuggestionState, graphql_name='greaterThan') + greater_than_or_equal_to = sgqlc.types.Field(SuggestionState, graphql_name='greaterThanOrEqualTo') + + +class TemperatureSensorFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'facility_id', 'label', 'metadata', 'short_link', 'battery_id', 'signal_id', 'temperature_id', 'created_at', 'updated_at', 'and_', 'or_', 'not_') + id = sgqlc.types.Field(IntFilter, graphql_name='id') + facility_id = sgqlc.types.Field(IntFilter, graphql_name='facilityId') + label = sgqlc.types.Field(StringFilter, graphql_name='label') + metadata = sgqlc.types.Field(JSONFilter, graphql_name='metadata') + short_link = sgqlc.types.Field(StringFilter, graphql_name='shortLink') + battery_id = sgqlc.types.Field(BigIntFilter, graphql_name='batteryId') + signal_id = sgqlc.types.Field(BigIntFilter, graphql_name='signalId') + temperature_id = sgqlc.types.Field(BigIntFilter, graphql_name='temperatureId') + created_at = sgqlc.types.Field(DatetimeFilter, graphql_name='createdAt') + updated_at = sgqlc.types.Field(DatetimeFilter, graphql_name='updatedAt') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('TemperatureSensorFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('TemperatureSensorFilter')), graphql_name='or') + not_ = sgqlc.types.Field('TemperatureSensorFilter', graphql_name='not') + + +class TimezoneCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('name', 'abbreviation', 'utc_offset', 'is_dst') + name = sgqlc.types.Field(String, graphql_name='name') + abbreviation = sgqlc.types.Field(String, graphql_name='abbreviation') + utc_offset = sgqlc.types.Field(IntervalInput, graphql_name='utcOffset') + is_dst = sgqlc.types.Field(Boolean, graphql_name='isDst') + + +class TimezoneFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('name', 'abbreviation', 'utc_offset', 'is_dst', 'and_', 'or_', 'not_') + name = sgqlc.types.Field(StringFilter, graphql_name='name') + abbreviation = sgqlc.types.Field(StringFilter, graphql_name='abbreviation') + utc_offset = sgqlc.types.Field(IntervalFilter, graphql_name='utcOffset') + is_dst = sgqlc.types.Field(BooleanFilter, graphql_name='isDst') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('TimezoneFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('TimezoneFilter')), graphql_name='or') + not_ = sgqlc.types.Field('TimezoneFilter', graphql_name='not') + + +class TransitionControlEventInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('control_event_id', 'state', 'description', 'client_mutation_id') + control_event_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='controlEventId') + state = sgqlc.types.Field(sgqlc.types.non_null(ControlEventStateType), graphql_name='state') + description = sgqlc.types.Field(String, graphql_name='description') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + + +class UnitDimensionCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('name',) + name = sgqlc.types.Field(String, graphql_name='name') + + +class UnitDimensionFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('name', 'active_mappings', 'and_', 'or_', 'not_') + name = sgqlc.types.Field(StringFilter, graphql_name='name') + active_mappings = sgqlc.types.Field(StringListFilter, graphql_name='activeMappings') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('UnitDimensionFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('UnitDimensionFilter')), graphql_name='or') + not_ = sgqlc.types.Field('UnitDimensionFilter', graphql_name='not') + + +class UnitGroupCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('name',) + name = sgqlc.types.Field(String, graphql_name='name') + + +class UnitGroupDimensionCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('unit_group', 'unit_dimension', 'unit', 'created_at', 'updated_at') + unit_group = sgqlc.types.Field(String, graphql_name='unitGroup') + unit_dimension = sgqlc.types.Field(String, graphql_name='unitDimension') + unit = sgqlc.types.Field(String, graphql_name='unit') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') + + +class UnitGroupDimensionFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('unit_group', 'unit_dimension', 'unit', 'created_at', 'updated_at', 'and_', 'or_', 'not_') + unit_group = sgqlc.types.Field(StringFilter, graphql_name='unitGroup') + unit_dimension = sgqlc.types.Field(StringFilter, graphql_name='unitDimension') + unit = sgqlc.types.Field(StringFilter, graphql_name='unit') + created_at = sgqlc.types.Field(DatetimeFilter, graphql_name='createdAt') + updated_at = sgqlc.types.Field(DatetimeFilter, graphql_name='updatedAt') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('UnitGroupDimensionFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('UnitGroupDimensionFilter')), graphql_name='or') + not_ = sgqlc.types.Field('UnitGroupDimensionFilter', graphql_name='not') + + +class UnitGroupFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('name', 'and_', 'or_', 'not_') + name = sgqlc.types.Field(StringFilter, graphql_name='name') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('UnitGroupFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('UnitGroupFilter')), graphql_name='or') + not_ = sgqlc.types.Field('UnitGroupFilter', graphql_name='not') + + +class UpdateAccountChargeByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id', 'patch') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + patch = sgqlc.types.Field(sgqlc.types.non_null(AccountChargePatch), graphql_name='patch') + + +class UpdateAccountChargeInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'patch', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + patch = sgqlc.types.Field(sgqlc.types.non_null(AccountChargePatch), graphql_name='patch') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + + +class UpdateAccountStatementByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id', 'patch') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + patch = sgqlc.types.Field(sgqlc.types.non_null(AccountStatementPatch), graphql_name='patch') + + +class UpdateAccountStatementInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'patch', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + patch = sgqlc.types.Field(sgqlc.types.non_null(AccountStatementPatch), graphql_name='patch') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + + +class UpdateBuildingAreaByFacilityIdAndLabelInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'patch', 'facility_id', 'label') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + patch = sgqlc.types.Field(sgqlc.types.non_null(BuildingAreaPatch), graphql_name='patch') + facility_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='facilityId') + label = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='label') + + +class UpdateBuildingAreaByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id', 'patch') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + patch = sgqlc.types.Field(sgqlc.types.non_null(BuildingAreaPatch), graphql_name='patch') + + +class UpdateBuildingAreaInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'patch', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + patch = sgqlc.types.Field(sgqlc.types.non_null(BuildingAreaPatch), graphql_name='patch') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + + +class UpdateBuildingAreaTypeByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id', 'patch') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + patch = sgqlc.types.Field(sgqlc.types.non_null(BuildingAreaTypePatch), graphql_name='patch') + + +class UpdateBuildingAreaTypeInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'patch', 'type') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + patch = sgqlc.types.Field(sgqlc.types.non_null(BuildingAreaTypePatch), graphql_name='patch') + type = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='type') + + +class UpdateComponentByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id', 'patch') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + patch = sgqlc.types.Field(sgqlc.types.non_null(ComponentPatch), graphql_name='patch') + + +class UpdateComponentInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'patch', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + patch = sgqlc.types.Field(sgqlc.types.non_null(ComponentPatch), graphql_name='patch') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + + +class UpdateControlEventByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id', 'patch') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + patch = sgqlc.types.Field(sgqlc.types.non_null(ControlEventPatch), graphql_name='patch') + + +class UpdateControlEventInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'patch', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + patch = sgqlc.types.Field(sgqlc.types.non_null(ControlEventPatch), graphql_name='patch') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + + +class UpdateControlEventLogByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id', 'patch') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + patch = sgqlc.types.Field(sgqlc.types.non_null(ControlEventLogPatch), graphql_name='patch') + + +class UpdateControlEventLogInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'patch', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + patch = sgqlc.types.Field(sgqlc.types.non_null(ControlEventLogPatch), graphql_name='patch') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + + +class UpdateDataPointByDataSourceNameAndNameInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'patch', 'data_source_name', 'name') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + patch = sgqlc.types.Field(sgqlc.types.non_null(DataPointPatch), graphql_name='patch') + data_source_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='dataSourceName') + name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') + + +class UpdateDataPointByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id', 'patch') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + patch = sgqlc.types.Field(sgqlc.types.non_null(DataPointPatch), graphql_name='patch') + + +class UpdateDataPointInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'patch', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + patch = sgqlc.types.Field(sgqlc.types.non_null(DataPointPatch), graphql_name='patch') + id = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='id') + + +class UpdateDependencyByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id', 'patch') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + patch = sgqlc.types.Field(sgqlc.types.non_null(DependencyPatch), graphql_name='patch') + + +class UpdateDependencyByPathInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'patch', 'path') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + patch = sgqlc.types.Field(sgqlc.types.non_null(DependencyPatch), graphql_name='patch') + path = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='path') + + +class UpdateDependencyInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'patch', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + patch = sgqlc.types.Field(sgqlc.types.non_null(DependencyPatch), graphql_name='patch') + id = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='id') + + +class UpdateFacilityByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id', 'patch') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + patch = sgqlc.types.Field(sgqlc.types.non_null(FacilityPatch), graphql_name='patch') + + +class UpdateFacilityBySlugInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'patch', 'slug') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + patch = sgqlc.types.Field(sgqlc.types.non_null(FacilityPatch), graphql_name='patch') + slug = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='slug') + + +class UpdateFacilityGroupByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id', 'patch') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + patch = sgqlc.types.Field(sgqlc.types.non_null(FacilityGroupPatch), graphql_name='patch') + + +class UpdateFacilityGroupInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'patch', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + patch = sgqlc.types.Field(sgqlc.types.non_null(FacilityGroupPatch), graphql_name='patch') + id = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='id') + + +class UpdateFacilityGroupsLinkerByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id', 'patch') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + patch = sgqlc.types.Field(sgqlc.types.non_null(FacilityGroupsLinkerPatch), graphql_name='patch') + + +class UpdateFacilityGroupsLinkerInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'patch', 'facility_id', 'facility_grouping_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + patch = sgqlc.types.Field(sgqlc.types.non_null(FacilityGroupsLinkerPatch), graphql_name='patch') + facility_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='facilityId') + facility_grouping_id = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='facilityGroupingId') + + +class UpdateFacilityInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'patch', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + patch = sgqlc.types.Field(sgqlc.types.non_null(FacilityPatch), graphql_name='patch') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + + +class UpdateFieldGroupByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id', 'patch') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + patch = sgqlc.types.Field(sgqlc.types.non_null(FieldGroupPatch), graphql_name='patch') + + +class UpdateFieldGroupInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'patch', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + patch = sgqlc.types.Field(sgqlc.types.non_null(FieldGroupPatch), graphql_name='patch') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + + +class UpdateMachineUserByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id', 'patch') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + patch = sgqlc.types.Field(sgqlc.types.non_null(MachineUserPatch), graphql_name='patch') + + +class UpdateMachineUserInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'patch', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + patch = sgqlc.types.Field(sgqlc.types.non_null(MachineUserPatch), graphql_name='patch') + id = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='id') + + +class UpdateMeterChargeByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id', 'patch') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + patch = sgqlc.types.Field(sgqlc.types.non_null(MeterChargePatch), graphql_name='patch') + + +class UpdateMeterChargeInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'patch', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + patch = sgqlc.types.Field(sgqlc.types.non_null(MeterChargePatch), graphql_name='patch') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + + +class UpdateMeterStatementByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id', 'patch') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + patch = sgqlc.types.Field(sgqlc.types.non_null(MeterStatementPatch), graphql_name='patch') + + +class UpdateMeterStatementInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'patch', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + patch = sgqlc.types.Field(sgqlc.types.non_null(MeterStatementPatch), graphql_name='patch') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + + +class UpdateMeterUsageByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id', 'patch') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + patch = sgqlc.types.Field(sgqlc.types.non_null(MeterUsagePatch), graphql_name='patch') + + +class UpdateMeterUsageInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'patch', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + patch = sgqlc.types.Field(sgqlc.types.non_null(MeterUsagePatch), graphql_name='patch') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + + +class UpdatePhoneNumberInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('phone_number', 'verification_code', 'client_mutation_id') + phone_number = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='phoneNumber') + verification_code = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='verificationCode') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + + +class UpdateProgramByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id', 'patch') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + patch = sgqlc.types.Field(sgqlc.types.non_null(ProgramPatch), graphql_name='patch') + + +class UpdateProgramByProjectTypeIdAndNameInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'patch', 'project_type_id', 'name') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + patch = sgqlc.types.Field(sgqlc.types.non_null(ProgramPatch), graphql_name='patch') + project_type_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='projectTypeId') + name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') + + +class UpdateProgramInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'patch', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + patch = sgqlc.types.Field(sgqlc.types.non_null(ProgramPatch), graphql_name='patch') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + + +class UpdateProjectByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id', 'patch') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + patch = sgqlc.types.Field(sgqlc.types.non_null(ProjectPatch), graphql_name='patch') + + +class UpdateProjectComponentByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id', 'patch') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + patch = sgqlc.types.Field(sgqlc.types.non_null(ProjectComponentPatch), graphql_name='patch') + + +class UpdateProjectComponentInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'patch', 'project_id', 'component_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + patch = sgqlc.types.Field(sgqlc.types.non_null(ProjectComponentPatch), graphql_name='patch') + project_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='projectId') + component_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='componentId') + + +class UpdateProjectFieldByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id', 'patch') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + patch = sgqlc.types.Field(sgqlc.types.non_null(ProjectFieldPatch), graphql_name='patch') + + +class UpdateProjectFieldByProjectIdAndFieldIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'patch', 'project_id', 'field_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + patch = sgqlc.types.Field(sgqlc.types.non_null(ProjectFieldPatch), graphql_name='patch') + project_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='projectId') + field_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='fieldId') + + +class UpdateProjectFieldInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'patch', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + patch = sgqlc.types.Field(sgqlc.types.non_null(ProjectFieldPatch), graphql_name='patch') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + + +class UpdateProjectInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'patch', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + patch = sgqlc.types.Field(sgqlc.types.non_null(ProjectPatch), graphql_name='patch') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + + +class UpdateProjectWatcherByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id', 'patch') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + patch = sgqlc.types.Field(sgqlc.types.non_null(ProjectWatcherPatch), graphql_name='patch') + + +class UpdateProjectWatcherInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'patch', 'project_id', 'user_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + patch = sgqlc.types.Field(sgqlc.types.non_null(ProjectWatcherPatch), graphql_name='patch') + project_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='projectId') + user_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='userId') + + +class UpdateReportExecutionByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id', 'patch') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + patch = sgqlc.types.Field(sgqlc.types.non_null(ReportExecutionPatch), graphql_name='patch') + + +class UpdateReportExecutionInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'patch', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + patch = sgqlc.types.Field(sgqlc.types.non_null(ReportExecutionPatch), graphql_name='patch') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + + +class UpdateSavingsEventByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id', 'patch') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + patch = sgqlc.types.Field(sgqlc.types.non_null(SavingsEventPatch), graphql_name='patch') + + +class UpdateSavingsEventByProjectIdAndStartTimeAndEndTimeInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'patch', 'project_id', 'start_time', 'end_time') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + patch = sgqlc.types.Field(sgqlc.types.non_null(SavingsEventPatch), graphql_name='patch') + project_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='projectId') + start_time = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='startTime') + end_time = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='endTime') + + +class UpdateSavingsEventInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'patch', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + patch = sgqlc.types.Field(sgqlc.types.non_null(SavingsEventPatch), graphql_name='patch') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + + +class UpdateSuggestionByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id', 'patch') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + patch = sgqlc.types.Field(sgqlc.types.non_null(SuggestionPatch), graphql_name='patch') + + +class UpdateSuggestionControlEventByControlEventIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'patch', 'control_event_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + patch = sgqlc.types.Field(sgqlc.types.non_null(SuggestionControlEventPatch), graphql_name='patch') + control_event_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='controlEventId') + + +class UpdateSuggestionControlEventByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id', 'patch') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + patch = sgqlc.types.Field(sgqlc.types.non_null(SuggestionControlEventPatch), graphql_name='patch') + + +class UpdateSuggestionControlEventInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'patch', 'suggestion_id', 'control_event_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + patch = sgqlc.types.Field(sgqlc.types.non_null(SuggestionControlEventPatch), graphql_name='patch') + suggestion_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='suggestionId') + control_event_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='controlEventId') + + +class UpdateSuggestionInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'patch', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + patch = sgqlc.types.Field(sgqlc.types.non_null(SuggestionPatch), graphql_name='patch') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + + +class UpdateUserByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id', 'patch') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + patch = sgqlc.types.Field(sgqlc.types.non_null('UserPatch'), graphql_name='patch') + + +class UpdateUserInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'patch', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + patch = sgqlc.types.Field(sgqlc.types.non_null('UserPatch'), graphql_name='patch') + id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='id') + + +class UpdateUtilityAccountByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id', 'patch') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + patch = sgqlc.types.Field(sgqlc.types.non_null('UtilityAccountPatch'), graphql_name='patch') + + +class UpdateUtilityAccountInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'patch', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + patch = sgqlc.types.Field(sgqlc.types.non_null('UtilityAccountPatch'), graphql_name='patch') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + + +class UpdateUtilityMeterByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id', 'patch') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + patch = sgqlc.types.Field(sgqlc.types.non_null('UtilityMeterPatch'), graphql_name='patch') + + +class UpdateUtilityMeterInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'patch', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + patch = sgqlc.types.Field(sgqlc.types.non_null('UtilityMeterPatch'), graphql_name='patch') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + + +class UpdateUtilityProviderByNameInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'patch', 'name') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + patch = sgqlc.types.Field(sgqlc.types.non_null('UtilityProviderPatch'), graphql_name='patch') + name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') + + +class UpdateUtilityProviderByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id', 'patch') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + patch = sgqlc.types.Field(sgqlc.types.non_null('UtilityProviderPatch'), graphql_name='patch') + + +class UpdateUtilityProviderInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'patch', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + patch = sgqlc.types.Field(sgqlc.types.non_null('UtilityProviderPatch'), graphql_name='patch') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + + +class UpdateVendorUserByEmailInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'patch', 'email') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + patch = sgqlc.types.Field(sgqlc.types.non_null('VendorUserPatch'), graphql_name='patch') + email = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='email') + + +class UpdateVendorUserByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id', 'patch') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + patch = sgqlc.types.Field(sgqlc.types.non_null('VendorUserPatch'), graphql_name='patch') + + +class UpdateVendorUserInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'patch', 'id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + patch = sgqlc.types.Field(sgqlc.types.non_null('VendorUserPatch'), graphql_name='patch') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + + +class UpdateVendorUserMachineUserByMachineUserIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'patch', 'machine_user_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + patch = sgqlc.types.Field(sgqlc.types.non_null('VendorUserMachineUserPatch'), graphql_name='patch') + machine_user_id = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='machineUserId') + + +class UpdateVendorUserMachineUserByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id', 'patch') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + patch = sgqlc.types.Field(sgqlc.types.non_null('VendorUserMachineUserPatch'), graphql_name='patch') + + +class UpdateVendorUserMachineUserInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'patch', 'vendor_user_id', 'machine_user_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + patch = sgqlc.types.Field(sgqlc.types.non_null('VendorUserMachineUserPatch'), graphql_name='patch') + vendor_user_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='vendorUserId') + machine_user_id = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='machineUserId') + + +class UpdateVirtualPointIntervalByNodeIdInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'node_id', 'patch') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + patch = sgqlc.types.Field(sgqlc.types.non_null('VirtualPointIntervalPatch'), graphql_name='patch') + + +class UpdateVirtualPointIntervalInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'patch', 'parent_id', 'child_id') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + patch = sgqlc.types.Field(sgqlc.types.non_null('VirtualPointIntervalPatch'), graphql_name='patch') + parent_id = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='parentId') + child_id = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='childId') + + +class UpsertAccountChargeInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'account_charge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + account_charge = sgqlc.types.Field(sgqlc.types.non_null(AccountChargeInput), graphql_name='accountCharge') + + +class UpsertAccountChargeWhere(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'account_statement_id', 'category', 'interval_start', 'interval_end', 'label', 'line_number') + id = sgqlc.types.Field(Int, graphql_name='id') + account_statement_id = sgqlc.types.Field(Int, graphql_name='accountStatementId') + category = sgqlc.types.Field(UtilityAccountChargeCategory, graphql_name='category') + interval_start = sgqlc.types.Field(Date, graphql_name='intervalStart') + interval_end = sgqlc.types.Field(Date, graphql_name='intervalEnd') + label = sgqlc.types.Field(String, graphql_name='label') + line_number = sgqlc.types.Field(Int, graphql_name='lineNumber') + + +class UpsertAccountStatementInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'account_statement') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + account_statement = sgqlc.types.Field(sgqlc.types.non_null(AccountStatementInput), graphql_name='accountStatement') + + +class UpsertAccountStatementWhere(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'integration', 'integration_key') + id = sgqlc.types.Field(Int, graphql_name='id') + integration = sgqlc.types.Field(UtilityIntegration, graphql_name='integration') + integration_key = sgqlc.types.Field(String, graphql_name='integrationKey') + + +class UpsertBalancingAuthorityInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'balancing_authority') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + balancing_authority = sgqlc.types.Field(sgqlc.types.non_null(BalancingAuthorityInput), graphql_name='balancingAuthority') + + +class UpsertBalancingAuthorityWhere(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('slug',) + slug = sgqlc.types.Field(String, graphql_name='slug') + + +class UpsertBuildingAreaInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'building_area') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + building_area = sgqlc.types.Field(sgqlc.types.non_null(BuildingAreaInput), graphql_name='buildingArea') + + +class UpsertBuildingAreaTypeInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'building_area_type') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + building_area_type = sgqlc.types.Field(sgqlc.types.non_null(BuildingAreaTypeInput), graphql_name='buildingAreaType') + + +class UpsertBuildingAreaTypeWhere(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('type',) + type = sgqlc.types.Field(String, graphql_name='type') + + +class UpsertBuildingAreaWhere(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'facility_id', 'label') + id = sgqlc.types.Field(Int, graphql_name='id') + facility_id = sgqlc.types.Field(Int, graphql_name='facilityId') + label = sgqlc.types.Field(String, graphql_name='label') + + +class UpsertDataPointInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'data_point') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + data_point = sgqlc.types.Field(sgqlc.types.non_null(DataPointInput), graphql_name='dataPoint') + + +class UpsertDataPointWhere(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'data_source_name', 'name') + id = sgqlc.types.Field(BigInt, graphql_name='id') + data_source_name = sgqlc.types.Field(String, graphql_name='dataSourceName') + name = sgqlc.types.Field(String, graphql_name='name') + + +class UpsertDependencyInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'dependency') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + dependency = sgqlc.types.Field(sgqlc.types.non_null(DependencyInput), graphql_name='dependency') + + +class UpsertDependencyWhere(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'path') + id = sgqlc.types.Field(BigInt, graphql_name='id') + path = sgqlc.types.Field(String, graphql_name='path') + + +class UpsertFieldGroupInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'field_group') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + field_group = sgqlc.types.Field(sgqlc.types.non_null(FieldGroupInput), graphql_name='fieldGroup') + + +class UpsertFieldGroupWhere(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id',) + id = sgqlc.types.Field(Int, graphql_name='id') + + +class UpsertMachineUserInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'machine_user') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + machine_user = sgqlc.types.Field(sgqlc.types.non_null(MachineUserInput), graphql_name='machineUser') + + +class UpsertMachineUserWhere(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id',) + id = sgqlc.types.Field(BigInt, graphql_name='id') + + +class UpsertMeterChargeInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'meter_charge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + meter_charge = sgqlc.types.Field(sgqlc.types.non_null(MeterChargeInput), graphql_name='meterCharge') + + +class UpsertMeterChargeWhere(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'meter_statement_id', 'category', 'label', 'line_number') + id = sgqlc.types.Field(Int, graphql_name='id') + meter_statement_id = sgqlc.types.Field(Int, graphql_name='meterStatementId') + category = sgqlc.types.Field(UtilityMeterChargeCategory, graphql_name='category') + label = sgqlc.types.Field(String, graphql_name='label') + line_number = sgqlc.types.Field(Int, graphql_name='lineNumber') + + +class UpsertMeterStatementInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'meter_statement') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + meter_statement = sgqlc.types.Field(sgqlc.types.non_null(MeterStatementInput), graphql_name='meterStatement') + + +class UpsertMeterStatementWhere(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'integration_key', 'statement_date') + id = sgqlc.types.Field(Int, graphql_name='id') + integration_key = sgqlc.types.Field(String, graphql_name='integrationKey') + statement_date = sgqlc.types.Field(Date, graphql_name='statementDate') + + +class UpsertMeterUsageInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'meter_usage') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + meter_usage = sgqlc.types.Field(sgqlc.types.non_null(MeterUsageInput), graphql_name='meterUsage') + + +class UpsertMeterUsageWhere(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'meter_statement_id', 'category', 'label', 'units', 'line_number') + id = sgqlc.types.Field(Int, graphql_name='id') + meter_statement_id = sgqlc.types.Field(Int, graphql_name='meterStatementId') + category = sgqlc.types.Field(UtilityMeterUsageCategory, graphql_name='category') + label = sgqlc.types.Field(String, graphql_name='label') + units = sgqlc.types.Field(String, graphql_name='units') + line_number = sgqlc.types.Field(Int, graphql_name='lineNumber') + + +class UpsertProgramInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'program') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + program = sgqlc.types.Field(sgqlc.types.non_null(ProgramInput), graphql_name='program') + + +class UpsertProgramWhere(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'project_type_id', 'name') + id = sgqlc.types.Field(Int, graphql_name='id') + project_type_id = sgqlc.types.Field(Int, graphql_name='projectTypeId') + name = sgqlc.types.Field(String, graphql_name='name') + + +class UpsertProjectComponentInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'project_component') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + project_component = sgqlc.types.Field(sgqlc.types.non_null(ProjectComponentInput), graphql_name='projectComponent') + + +class UpsertProjectComponentWhere(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('project_id', 'component_id') + project_id = sgqlc.types.Field(Int, graphql_name='projectId') + component_id = sgqlc.types.Field(Int, graphql_name='componentId') + + +class UpsertProjectFieldInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'project_field') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + project_field = sgqlc.types.Field(sgqlc.types.non_null(ProjectFieldInput), graphql_name='projectField') + + +class UpsertProjectFieldWhere(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('project_id', 'field_id', 'id') + project_id = sgqlc.types.Field(Int, graphql_name='projectId') + field_id = sgqlc.types.Field(Int, graphql_name='fieldId') + id = sgqlc.types.Field(Int, graphql_name='id') + + +class UpsertProjectSubscriptionInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'project_id', 'channels') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + project_id = sgqlc.types.Field(Int, graphql_name='projectId') + channels = sgqlc.types.Field(sgqlc.types.list_of(UserSubscriptionChannel), graphql_name='channels') + + +class UpsertProjectWatcherInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'project_watcher') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + project_watcher = sgqlc.types.Field(sgqlc.types.non_null(ProjectWatcherInput), graphql_name='projectWatcher') + + +class UpsertProjectWatcherWhere(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('project_id', 'user_id') + project_id = sgqlc.types.Field(Int, graphql_name='projectId') + user_id = sgqlc.types.Field(String, graphql_name='userId') + + +class UpsertReportExecutionInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'report_execution') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + report_execution = sgqlc.types.Field(sgqlc.types.non_null(ReportExecutionInput), graphql_name='reportExecution') + + +class UpsertReportExecutionWhere(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id',) + id = sgqlc.types.Field(Int, graphql_name='id') + + +class UpsertReportQueryInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'report_query') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + report_query = sgqlc.types.Field(sgqlc.types.non_null(ReportQueryInput), graphql_name='reportQuery') + + +class UpsertReportQueryWhere(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'report_id', 'label') + id = sgqlc.types.Field(Int, graphql_name='id') + report_id = sgqlc.types.Field(Int, graphql_name='reportId') + label = sgqlc.types.Field(String, graphql_name='label') + + +class UpsertSavingsEventInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'savings_event') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + savings_event = sgqlc.types.Field(sgqlc.types.non_null(SavingsEventInput), graphql_name='savingsEvent') + + +class UpsertSavingsEventWhere(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'project_id', 'start_time', 'end_time') + id = sgqlc.types.Field(Int, graphql_name='id') + project_id = sgqlc.types.Field(Int, graphql_name='projectId') + start_time = sgqlc.types.Field(Datetime, graphql_name='startTime') + end_time = sgqlc.types.Field(Datetime, graphql_name='endTime') + + +class UpsertSuggestionControlEventInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'suggestion_control_event') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + suggestion_control_event = sgqlc.types.Field(sgqlc.types.non_null(SuggestionControlEventInput), graphql_name='suggestionControlEvent') + + +class UpsertSuggestionControlEventWhere(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('suggestion_id', 'control_event_id') + suggestion_id = sgqlc.types.Field(Int, graphql_name='suggestionId') + control_event_id = sgqlc.types.Field(Int, graphql_name='controlEventId') + + +class UpsertUrjanetUtilityProviderInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'urjanet_slug') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + urjanet_slug = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='urjanetSlug') + + +class UpsertUtilityAccountInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'utility_account') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + utility_account = sgqlc.types.Field(sgqlc.types.non_null('UtilityAccountInput'), graphql_name='utilityAccount') + + +class UpsertUtilityAccountWhere(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'integration', 'integration_account_key') + id = sgqlc.types.Field(Int, graphql_name='id') + integration = sgqlc.types.Field(UtilityIntegration, graphql_name='integration') + integration_account_key = sgqlc.types.Field(String, graphql_name='integrationAccountKey') + + +class UpsertUtilityMeterInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'utility_meter') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + utility_meter = sgqlc.types.Field(sgqlc.types.non_null('UtilityMeterInput'), graphql_name='utilityMeter') + + +class UpsertUtilityMeterWhere(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'utility_account_id', 'integration_meter_key', 'service_type') + id = sgqlc.types.Field(Int, graphql_name='id') + utility_account_id = sgqlc.types.Field(Int, graphql_name='utilityAccountId') + integration_meter_key = sgqlc.types.Field(String, graphql_name='integrationMeterKey') + service_type = sgqlc.types.Field(UtilityMeterServiceType, graphql_name='serviceType') + + +class UpsertUtilityProviderInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'utility_provider') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + utility_provider = sgqlc.types.Field(sgqlc.types.non_null('UtilityProviderInput'), graphql_name='utilityProvider') + + +class UpsertUtilityProviderWhere(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'name') + id = sgqlc.types.Field(Int, graphql_name='id') + name = sgqlc.types.Field(String, graphql_name='name') + + +class UpsertVendorUserMachineUserInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'vendor_user_machine_user') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + vendor_user_machine_user = sgqlc.types.Field(sgqlc.types.non_null('VendorUserMachineUserInput'), graphql_name='vendorUserMachineUser') + + +class UpsertVendorUserMachineUserWhere(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('vendor_user_id', 'machine_user_id') + vendor_user_id = sgqlc.types.Field(Int, graphql_name='vendorUserId') + machine_user_id = sgqlc.types.Field(BigInt, graphql_name='machineUserId') + + +class UpsertVirtualPointIntervalInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'virtual_point_interval') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + virtual_point_interval = sgqlc.types.Field(sgqlc.types.non_null('VirtualPointIntervalInput'), graphql_name='virtualPointInterval') + + +class UpsertVirtualPointIntervalWhere(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('parent_id', 'child_id') + parent_id = sgqlc.types.Field(BigInt, graphql_name='parentId') + child_id = sgqlc.types.Field(BigInt, graphql_name='childId') + + +class UserCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'first_name', 'last_name', 'email', 'phone_number', 'created_at', 'updated_at', 'phone_number_validated', 'preferred_locale') + id = sgqlc.types.Field(String, graphql_name='id') + first_name = sgqlc.types.Field(String, graphql_name='firstName') + last_name = sgqlc.types.Field(String, graphql_name='lastName') + email = sgqlc.types.Field(String, graphql_name='email') + phone_number = sgqlc.types.Field(String, graphql_name='phoneNumber') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') + phone_number_validated = sgqlc.types.Field(Boolean, graphql_name='phoneNumberValidated') + preferred_locale = sgqlc.types.Field(String, graphql_name='preferredLocale') + + +class UserFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('can_edit', 'id', 'first_name', 'last_name', 'email', 'phone_number', 'created_at', 'updated_at', 'phone_number_validated', 'preferred_locale', 'and_', 'or_', 'not_') + can_edit = sgqlc.types.Field(PermissionBooleanFilter, graphql_name='canEdit') + id = sgqlc.types.Field(StringFilter, graphql_name='id') + first_name = sgqlc.types.Field(StringFilter, graphql_name='firstName') + last_name = sgqlc.types.Field(StringFilter, graphql_name='lastName') + email = sgqlc.types.Field(StringFilter, graphql_name='email') + phone_number = sgqlc.types.Field(StringFilter, graphql_name='phoneNumber') + created_at = sgqlc.types.Field(DatetimeFilter, graphql_name='createdAt') + updated_at = sgqlc.types.Field(DatetimeFilter, graphql_name='updatedAt') + phone_number_validated = sgqlc.types.Field(BooleanFilter, graphql_name='phoneNumberValidated') + preferred_locale = sgqlc.types.Field(StringFilter, graphql_name='preferredLocale') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('UserFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('UserFilter')), graphql_name='or') + not_ = sgqlc.types.Field('UserFilter', graphql_name='not') + + +class UserPatch(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('phone_number_validated', 'preferred_locale') + phone_number_validated = sgqlc.types.Field(Boolean, graphql_name='phoneNumberValidated') + preferred_locale = sgqlc.types.Field(String, graphql_name='preferredLocale') + + +class UserSubscriptionChannelListFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('is_null', 'equal_to', 'not_equal_to', 'distinct_from', 'not_distinct_from', 'less_than', 'less_than_or_equal_to', 'greater_than', 'greater_than_or_equal_to', 'contains', 'contained_by', 'overlaps', 'any_equal_to', 'any_not_equal_to', 'any_less_than', 'any_less_than_or_equal_to', 'any_greater_than', 'any_greater_than_or_equal_to') + is_null = sgqlc.types.Field(Boolean, graphql_name='isNull') + equal_to = sgqlc.types.Field(sgqlc.types.list_of(UserSubscriptionChannel), graphql_name='equalTo') + not_equal_to = sgqlc.types.Field(sgqlc.types.list_of(UserSubscriptionChannel), graphql_name='notEqualTo') + distinct_from = sgqlc.types.Field(sgqlc.types.list_of(UserSubscriptionChannel), graphql_name='distinctFrom') + not_distinct_from = sgqlc.types.Field(sgqlc.types.list_of(UserSubscriptionChannel), graphql_name='notDistinctFrom') + less_than = sgqlc.types.Field(sgqlc.types.list_of(UserSubscriptionChannel), graphql_name='lessThan') + less_than_or_equal_to = sgqlc.types.Field(sgqlc.types.list_of(UserSubscriptionChannel), graphql_name='lessThanOrEqualTo') + greater_than = sgqlc.types.Field(sgqlc.types.list_of(UserSubscriptionChannel), graphql_name='greaterThan') + greater_than_or_equal_to = sgqlc.types.Field(sgqlc.types.list_of(UserSubscriptionChannel), graphql_name='greaterThanOrEqualTo') + contains = sgqlc.types.Field(sgqlc.types.list_of(UserSubscriptionChannel), graphql_name='contains') + contained_by = sgqlc.types.Field(sgqlc.types.list_of(UserSubscriptionChannel), graphql_name='containedBy') + overlaps = sgqlc.types.Field(sgqlc.types.list_of(UserSubscriptionChannel), graphql_name='overlaps') + any_equal_to = sgqlc.types.Field(UserSubscriptionChannel, graphql_name='anyEqualTo') + any_not_equal_to = sgqlc.types.Field(UserSubscriptionChannel, graphql_name='anyNotEqualTo') + any_less_than = sgqlc.types.Field(UserSubscriptionChannel, graphql_name='anyLessThan') + any_less_than_or_equal_to = sgqlc.types.Field(UserSubscriptionChannel, graphql_name='anyLessThanOrEqualTo') + any_greater_than = sgqlc.types.Field(UserSubscriptionChannel, graphql_name='anyGreaterThan') + any_greater_than_or_equal_to = sgqlc.types.Field(UserSubscriptionChannel, graphql_name='anyGreaterThanOrEqualTo') + + +class UserSubscriptionFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'type', 'action', 'scope', 'channels', 'user_id', 'created_at', 'updated_at', 'and_', 'or_', 'not_') + id = sgqlc.types.Field(BigIntFilter, graphql_name='id') + type = sgqlc.types.Field(StringFilter, graphql_name='type') + action = sgqlc.types.Field(StringFilter, graphql_name='action') + scope = sgqlc.types.Field(JSONFilter, graphql_name='scope') + channels = sgqlc.types.Field(JSONFilter, graphql_name='channels') + user_id = sgqlc.types.Field(StringFilter, graphql_name='userId') + created_at = sgqlc.types.Field(DatetimeFilter, graphql_name='createdAt') + updated_at = sgqlc.types.Field(DatetimeFilter, graphql_name='updatedAt') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('UserSubscriptionFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('UserSubscriptionFilter')), graphql_name='or') + not_ = sgqlc.types.Field('UserSubscriptionFilter', graphql_name='not') + + +class UtilityAccountChargeCategoryFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('is_null', 'equal_to', 'not_equal_to', 'distinct_from', 'not_distinct_from', 'in_', 'not_in', 'less_than', 'less_than_or_equal_to', 'greater_than', 'greater_than_or_equal_to') + is_null = sgqlc.types.Field(Boolean, graphql_name='isNull') + equal_to = sgqlc.types.Field(UtilityAccountChargeCategory, graphql_name='equalTo') + not_equal_to = sgqlc.types.Field(UtilityAccountChargeCategory, graphql_name='notEqualTo') + distinct_from = sgqlc.types.Field(UtilityAccountChargeCategory, graphql_name='distinctFrom') + not_distinct_from = sgqlc.types.Field(UtilityAccountChargeCategory, graphql_name='notDistinctFrom') + in_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(UtilityAccountChargeCategory)), graphql_name='in') + not_in = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(UtilityAccountChargeCategory)), graphql_name='notIn') + less_than = sgqlc.types.Field(UtilityAccountChargeCategory, graphql_name='lessThan') + less_than_or_equal_to = sgqlc.types.Field(UtilityAccountChargeCategory, graphql_name='lessThanOrEqualTo') + greater_than = sgqlc.types.Field(UtilityAccountChargeCategory, graphql_name='greaterThan') + greater_than_or_equal_to = sgqlc.types.Field(UtilityAccountChargeCategory, graphql_name='greaterThanOrEqualTo') + + +class UtilityAccountCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'integration', 'integration_account_key', 'account_number', 'name', 'metadata', 'utility_provider_id', 'created_at', 'updated_at', 'deleted_at') + id = sgqlc.types.Field(Int, graphql_name='id') + integration = sgqlc.types.Field(UtilityIntegration, graphql_name='integration') + integration_account_key = sgqlc.types.Field(String, graphql_name='integrationAccountKey') + account_number = sgqlc.types.Field(String, graphql_name='accountNumber') + name = sgqlc.types.Field(String, graphql_name='name') + metadata = sgqlc.types.Field(JSON, graphql_name='metadata') + utility_provider_id = sgqlc.types.Field(Int, graphql_name='utilityProviderId') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') + deleted_at = sgqlc.types.Field(Datetime, graphql_name='deletedAt') + + +class UtilityAccountFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'integration', 'integration_account_key', 'account_number', 'name', 'metadata', 'utility_provider_id', 'created_at', 'updated_at', 'deleted_at', 'display_name', 'and_', 'or_', 'not_') + id = sgqlc.types.Field(IntFilter, graphql_name='id') + integration = sgqlc.types.Field('UtilityIntegrationFilter', graphql_name='integration') + integration_account_key = sgqlc.types.Field(StringFilter, graphql_name='integrationAccountKey') + account_number = sgqlc.types.Field(StringFilter, graphql_name='accountNumber') + name = sgqlc.types.Field(StringFilter, graphql_name='name') + metadata = sgqlc.types.Field(JSONFilter, graphql_name='metadata') + utility_provider_id = sgqlc.types.Field(IntFilter, graphql_name='utilityProviderId') + created_at = sgqlc.types.Field(DatetimeFilter, graphql_name='createdAt') + updated_at = sgqlc.types.Field(DatetimeFilter, graphql_name='updatedAt') + deleted_at = sgqlc.types.Field(DatetimeFilter, graphql_name='deletedAt') + display_name = sgqlc.types.Field(StringFilter, graphql_name='displayName') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('UtilityAccountFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('UtilityAccountFilter')), graphql_name='or') + not_ = sgqlc.types.Field('UtilityAccountFilter', graphql_name='not') + + +class UtilityAccountInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'integration', 'integration_account_key', 'account_number', 'name', 'metadata', 'utility_provider_id', 'utility_provider') + id = sgqlc.types.Field(Int, graphql_name='id') + integration = sgqlc.types.Field(sgqlc.types.non_null(UtilityIntegration), graphql_name='integration') + integration_account_key = sgqlc.types.Field(String, graphql_name='integrationAccountKey') + account_number = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='accountNumber') + name = sgqlc.types.Field(String, graphql_name='name') + metadata = sgqlc.types.Field(JSON, graphql_name='metadata') + utility_provider_id = sgqlc.types.Field(Int, graphql_name='utilityProviderId') + utility_provider = sgqlc.types.Field('UtilityProviderInput', graphql_name='utilityProvider') + + +class UtilityAccountPatch(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('name', 'metadata', 'utility_provider_id') + name = sgqlc.types.Field(String, graphql_name='name') + metadata = sgqlc.types.Field(JSON, graphql_name='metadata') + utility_provider_id = sgqlc.types.Field(Int, graphql_name='utilityProviderId') + + +class UtilityAccountStatementCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('utility_account_id', 'account_label', 'provider', 'account_statement_id', 'statement_year', 'statement_month', 'interval_start', 'interval_end', 'currency_code', 'bill_arrival_date') + utility_account_id = sgqlc.types.Field(Int, graphql_name='utilityAccountId') + account_label = sgqlc.types.Field(String, graphql_name='accountLabel') + provider = sgqlc.types.Field(String, graphql_name='provider') + account_statement_id = sgqlc.types.Field(Int, graphql_name='accountStatementId') + statement_year = sgqlc.types.Field(Int, graphql_name='statementYear') + statement_month = sgqlc.types.Field(Int, graphql_name='statementMonth') + interval_start = sgqlc.types.Field(Date, graphql_name='intervalStart') + interval_end = sgqlc.types.Field(Date, graphql_name='intervalEnd') + currency_code = sgqlc.types.Field(String, graphql_name='currencyCode') + bill_arrival_date = sgqlc.types.Field(Datetime, graphql_name='billArrivalDate') + + +class UtilityAccountStatementFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('utility_account_id', 'account_label', 'provider', 'account_statement_id', 'statement_year', 'statement_month', 'interval_start', 'interval_end', 'currency_code', 'bill_arrival_date', 'and_', 'or_', 'not_') + utility_account_id = sgqlc.types.Field(IntFilter, graphql_name='utilityAccountId') + account_label = sgqlc.types.Field(StringFilter, graphql_name='accountLabel') + provider = sgqlc.types.Field(StringFilter, graphql_name='provider') + account_statement_id = sgqlc.types.Field(IntFilter, graphql_name='accountStatementId') + statement_year = sgqlc.types.Field(IntFilter, graphql_name='statementYear') + statement_month = sgqlc.types.Field(IntFilter, graphql_name='statementMonth') + interval_start = sgqlc.types.Field(DateFilter, graphql_name='intervalStart') + interval_end = sgqlc.types.Field(DateFilter, graphql_name='intervalEnd') + currency_code = sgqlc.types.Field(StringFilter, graphql_name='currencyCode') + bill_arrival_date = sgqlc.types.Field(DatetimeFilter, graphql_name='billArrivalDate') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('UtilityAccountStatementFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('UtilityAccountStatementFilter')), graphql_name='or') + not_ = sgqlc.types.Field('UtilityAccountStatementFilter', graphql_name='not') + + +class UtilityAccountStatementRollupCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('utility_account_id', 'account_label', 'provider', 'account_statement_id', 'statement_year', 'statement_month', 'interval_start', 'interval_end', 'bill_arrival_date', 'bill_cost', 'bill_usage_cost', 'bill_demand_cost', 'fees', 'taxes', 'credits', 'percent_change', 'currency_code') + utility_account_id = sgqlc.types.Field(Int, graphql_name='utilityAccountId') + account_label = sgqlc.types.Field(String, graphql_name='accountLabel') + provider = sgqlc.types.Field(String, graphql_name='provider') + account_statement_id = sgqlc.types.Field(Int, graphql_name='accountStatementId') + statement_year = sgqlc.types.Field(Int, graphql_name='statementYear') + statement_month = sgqlc.types.Field(Int, graphql_name='statementMonth') + interval_start = sgqlc.types.Field(Date, graphql_name='intervalStart') + interval_end = sgqlc.types.Field(Date, graphql_name='intervalEnd') + bill_arrival_date = sgqlc.types.Field(Datetime, graphql_name='billArrivalDate') + bill_cost = sgqlc.types.Field(Float, graphql_name='billCost') + bill_usage_cost = sgqlc.types.Field(Float, graphql_name='billUsageCost') + bill_demand_cost = sgqlc.types.Field(Float, graphql_name='billDemandCost') + fees = sgqlc.types.Field(Float, graphql_name='fees') + taxes = sgqlc.types.Field(Float, graphql_name='taxes') + credits = sgqlc.types.Field(Float, graphql_name='credits') + percent_change = sgqlc.types.Field(Float, graphql_name='percentChange') + currency_code = sgqlc.types.Field(String, graphql_name='currencyCode') + + +class UtilityAccountStatementRollupFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('utility_account_id', 'account_label', 'provider', 'account_statement_id', 'statement_year', 'statement_month', 'interval_start', 'interval_end', 'bill_arrival_date', 'bill_cost', 'bill_usage_cost', 'bill_demand_cost', 'fees', 'taxes', 'credits', 'percent_change', 'currency_code', 'service_types', 'and_', 'or_', 'not_') + utility_account_id = sgqlc.types.Field(IntFilter, graphql_name='utilityAccountId') + account_label = sgqlc.types.Field(StringFilter, graphql_name='accountLabel') + provider = sgqlc.types.Field(StringFilter, graphql_name='provider') + account_statement_id = sgqlc.types.Field(IntFilter, graphql_name='accountStatementId') + statement_year = sgqlc.types.Field(IntFilter, graphql_name='statementYear') + statement_month = sgqlc.types.Field(IntFilter, graphql_name='statementMonth') + interval_start = sgqlc.types.Field(DateFilter, graphql_name='intervalStart') + interval_end = sgqlc.types.Field(DateFilter, graphql_name='intervalEnd') + bill_arrival_date = sgqlc.types.Field(DatetimeFilter, graphql_name='billArrivalDate') + bill_cost = sgqlc.types.Field(FloatFilter, graphql_name='billCost') + bill_usage_cost = sgqlc.types.Field(FloatFilter, graphql_name='billUsageCost') + bill_demand_cost = sgqlc.types.Field(FloatFilter, graphql_name='billDemandCost') + fees = sgqlc.types.Field(FloatFilter, graphql_name='fees') + taxes = sgqlc.types.Field(FloatFilter, graphql_name='taxes') + credits = sgqlc.types.Field(FloatFilter, graphql_name='credits') + percent_change = sgqlc.types.Field(FloatFilter, graphql_name='percentChange') + currency_code = sgqlc.types.Field(StringFilter, graphql_name='currencyCode') + service_types = sgqlc.types.Field('UtilityMeterServiceTypeListFilter', graphql_name='serviceTypes') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('UtilityAccountStatementRollupFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('UtilityAccountStatementRollupFilter')), graphql_name='or') + not_ = sgqlc.types.Field('UtilityAccountStatementRollupFilter', graphql_name='not') + + +class UtilityAccountStatementRollupsHavingAverageInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('utility_account_id', 'account_statement_id', 'statement_year', 'statement_month', 'interval_start', 'interval_end', 'bill_arrival_date', 'bill_cost', 'bill_usage_cost', 'bill_demand_cost', 'fees', 'taxes', 'credits', 'percent_change') + utility_account_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityAccountId') + account_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='accountStatementId') + statement_year = sgqlc.types.Field(HavingIntFilter, graphql_name='statementYear') + statement_month = sgqlc.types.Field(HavingIntFilter, graphql_name='statementMonth') + interval_start = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='intervalStart') + interval_end = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='intervalEnd') + bill_arrival_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='billArrivalDate') + bill_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billCost') + bill_usage_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billUsageCost') + bill_demand_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billDemandCost') + fees = sgqlc.types.Field(HavingFloatFilter, graphql_name='fees') + taxes = sgqlc.types.Field(HavingFloatFilter, graphql_name='taxes') + credits = sgqlc.types.Field(HavingFloatFilter, graphql_name='credits') + percent_change = sgqlc.types.Field(HavingFloatFilter, graphql_name='percentChange') + + +class UtilityAccountStatementRollupsHavingDistinctCountInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('utility_account_id', 'account_statement_id', 'statement_year', 'statement_month', 'interval_start', 'interval_end', 'bill_arrival_date', 'bill_cost', 'bill_usage_cost', 'bill_demand_cost', 'fees', 'taxes', 'credits', 'percent_change') + utility_account_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityAccountId') + account_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='accountStatementId') + statement_year = sgqlc.types.Field(HavingIntFilter, graphql_name='statementYear') + statement_month = sgqlc.types.Field(HavingIntFilter, graphql_name='statementMonth') + interval_start = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='intervalStart') + interval_end = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='intervalEnd') + bill_arrival_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='billArrivalDate') + bill_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billCost') + bill_usage_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billUsageCost') + bill_demand_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billDemandCost') + fees = sgqlc.types.Field(HavingFloatFilter, graphql_name='fees') + taxes = sgqlc.types.Field(HavingFloatFilter, graphql_name='taxes') + credits = sgqlc.types.Field(HavingFloatFilter, graphql_name='credits') + percent_change = sgqlc.types.Field(HavingFloatFilter, graphql_name='percentChange') + + +class UtilityAccountStatementRollupsHavingDistinctInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('utility_account_id', 'account_statement_id', 'statement_year', 'statement_month', 'interval_start', 'interval_end', 'bill_arrival_date', 'bill_cost', 'bill_usage_cost', 'bill_demand_cost', 'fees', 'taxes', 'credits', 'percent_change') + utility_account_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityAccountId') + account_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='accountStatementId') + statement_year = sgqlc.types.Field(HavingIntFilter, graphql_name='statementYear') + statement_month = sgqlc.types.Field(HavingIntFilter, graphql_name='statementMonth') + interval_start = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='intervalStart') + interval_end = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='intervalEnd') + bill_arrival_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='billArrivalDate') + bill_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billCost') + bill_usage_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billUsageCost') + bill_demand_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billDemandCost') + fees = sgqlc.types.Field(HavingFloatFilter, graphql_name='fees') + taxes = sgqlc.types.Field(HavingFloatFilter, graphql_name='taxes') + credits = sgqlc.types.Field(HavingFloatFilter, graphql_name='credits') + percent_change = sgqlc.types.Field(HavingFloatFilter, graphql_name='percentChange') + + +class UtilityAccountStatementRollupsHavingInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('and_', 'or_', 'sum', 'distinct_count', 'min', 'max', 'average', 'stddev_sample', 'stddev_population', 'variance_sample', 'variance_population', 'distinct') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('UtilityAccountStatementRollupsHavingInput')), graphql_name='AND') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('UtilityAccountStatementRollupsHavingInput')), graphql_name='OR') + sum = sgqlc.types.Field('UtilityAccountStatementRollupsHavingSumInput', graphql_name='sum') + distinct_count = sgqlc.types.Field(UtilityAccountStatementRollupsHavingDistinctCountInput, graphql_name='distinctCount') + min = sgqlc.types.Field('UtilityAccountStatementRollupsHavingMinInput', graphql_name='min') + max = sgqlc.types.Field('UtilityAccountStatementRollupsHavingMaxInput', graphql_name='max') + average = sgqlc.types.Field(UtilityAccountStatementRollupsHavingAverageInput, graphql_name='average') + stddev_sample = sgqlc.types.Field('UtilityAccountStatementRollupsHavingStddevSampleInput', graphql_name='stddevSample') + stddev_population = sgqlc.types.Field('UtilityAccountStatementRollupsHavingStddevPopulationInput', graphql_name='stddevPopulation') + variance_sample = sgqlc.types.Field('UtilityAccountStatementRollupsHavingVarianceSampleInput', graphql_name='varianceSample') + variance_population = sgqlc.types.Field('UtilityAccountStatementRollupsHavingVariancePopulationInput', graphql_name='variancePopulation') + distinct = sgqlc.types.Field(UtilityAccountStatementRollupsHavingDistinctInput, graphql_name='distinct') + + +class UtilityAccountStatementRollupsHavingMaxInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('utility_account_id', 'account_statement_id', 'statement_year', 'statement_month', 'interval_start', 'interval_end', 'bill_arrival_date', 'bill_cost', 'bill_usage_cost', 'bill_demand_cost', 'fees', 'taxes', 'credits', 'percent_change') + utility_account_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityAccountId') + account_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='accountStatementId') + statement_year = sgqlc.types.Field(HavingIntFilter, graphql_name='statementYear') + statement_month = sgqlc.types.Field(HavingIntFilter, graphql_name='statementMonth') + interval_start = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='intervalStart') + interval_end = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='intervalEnd') + bill_arrival_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='billArrivalDate') + bill_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billCost') + bill_usage_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billUsageCost') + bill_demand_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billDemandCost') + fees = sgqlc.types.Field(HavingFloatFilter, graphql_name='fees') + taxes = sgqlc.types.Field(HavingFloatFilter, graphql_name='taxes') + credits = sgqlc.types.Field(HavingFloatFilter, graphql_name='credits') + percent_change = sgqlc.types.Field(HavingFloatFilter, graphql_name='percentChange') + + +class UtilityAccountStatementRollupsHavingMinInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('utility_account_id', 'account_statement_id', 'statement_year', 'statement_month', 'interval_start', 'interval_end', 'bill_arrival_date', 'bill_cost', 'bill_usage_cost', 'bill_demand_cost', 'fees', 'taxes', 'credits', 'percent_change') + utility_account_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityAccountId') + account_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='accountStatementId') + statement_year = sgqlc.types.Field(HavingIntFilter, graphql_name='statementYear') + statement_month = sgqlc.types.Field(HavingIntFilter, graphql_name='statementMonth') + interval_start = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='intervalStart') + interval_end = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='intervalEnd') + bill_arrival_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='billArrivalDate') + bill_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billCost') + bill_usage_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billUsageCost') + bill_demand_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billDemandCost') + fees = sgqlc.types.Field(HavingFloatFilter, graphql_name='fees') + taxes = sgqlc.types.Field(HavingFloatFilter, graphql_name='taxes') + credits = sgqlc.types.Field(HavingFloatFilter, graphql_name='credits') + percent_change = sgqlc.types.Field(HavingFloatFilter, graphql_name='percentChange') + + +class UtilityAccountStatementRollupsHavingStddevPopulationInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('utility_account_id', 'account_statement_id', 'statement_year', 'statement_month', 'interval_start', 'interval_end', 'bill_arrival_date', 'bill_cost', 'bill_usage_cost', 'bill_demand_cost', 'fees', 'taxes', 'credits', 'percent_change') + utility_account_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityAccountId') + account_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='accountStatementId') + statement_year = sgqlc.types.Field(HavingIntFilter, graphql_name='statementYear') + statement_month = sgqlc.types.Field(HavingIntFilter, graphql_name='statementMonth') + interval_start = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='intervalStart') + interval_end = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='intervalEnd') + bill_arrival_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='billArrivalDate') + bill_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billCost') + bill_usage_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billUsageCost') + bill_demand_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billDemandCost') + fees = sgqlc.types.Field(HavingFloatFilter, graphql_name='fees') + taxes = sgqlc.types.Field(HavingFloatFilter, graphql_name='taxes') + credits = sgqlc.types.Field(HavingFloatFilter, graphql_name='credits') + percent_change = sgqlc.types.Field(HavingFloatFilter, graphql_name='percentChange') + + +class UtilityAccountStatementRollupsHavingStddevSampleInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('utility_account_id', 'account_statement_id', 'statement_year', 'statement_month', 'interval_start', 'interval_end', 'bill_arrival_date', 'bill_cost', 'bill_usage_cost', 'bill_demand_cost', 'fees', 'taxes', 'credits', 'percent_change') + utility_account_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityAccountId') + account_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='accountStatementId') + statement_year = sgqlc.types.Field(HavingIntFilter, graphql_name='statementYear') + statement_month = sgqlc.types.Field(HavingIntFilter, graphql_name='statementMonth') + interval_start = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='intervalStart') + interval_end = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='intervalEnd') + bill_arrival_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='billArrivalDate') + bill_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billCost') + bill_usage_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billUsageCost') + bill_demand_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billDemandCost') + fees = sgqlc.types.Field(HavingFloatFilter, graphql_name='fees') + taxes = sgqlc.types.Field(HavingFloatFilter, graphql_name='taxes') + credits = sgqlc.types.Field(HavingFloatFilter, graphql_name='credits') + percent_change = sgqlc.types.Field(HavingFloatFilter, graphql_name='percentChange') + + +class UtilityAccountStatementRollupsHavingSumInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('utility_account_id', 'account_statement_id', 'statement_year', 'statement_month', 'interval_start', 'interval_end', 'bill_arrival_date', 'bill_cost', 'bill_usage_cost', 'bill_demand_cost', 'fees', 'taxes', 'credits', 'percent_change') + utility_account_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityAccountId') + account_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='accountStatementId') + statement_year = sgqlc.types.Field(HavingIntFilter, graphql_name='statementYear') + statement_month = sgqlc.types.Field(HavingIntFilter, graphql_name='statementMonth') + interval_start = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='intervalStart') + interval_end = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='intervalEnd') + bill_arrival_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='billArrivalDate') + bill_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billCost') + bill_usage_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billUsageCost') + bill_demand_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billDemandCost') + fees = sgqlc.types.Field(HavingFloatFilter, graphql_name='fees') + taxes = sgqlc.types.Field(HavingFloatFilter, graphql_name='taxes') + credits = sgqlc.types.Field(HavingFloatFilter, graphql_name='credits') + percent_change = sgqlc.types.Field(HavingFloatFilter, graphql_name='percentChange') + + +class UtilityAccountStatementRollupsHavingVariancePopulationInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('utility_account_id', 'account_statement_id', 'statement_year', 'statement_month', 'interval_start', 'interval_end', 'bill_arrival_date', 'bill_cost', 'bill_usage_cost', 'bill_demand_cost', 'fees', 'taxes', 'credits', 'percent_change') + utility_account_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityAccountId') + account_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='accountStatementId') + statement_year = sgqlc.types.Field(HavingIntFilter, graphql_name='statementYear') + statement_month = sgqlc.types.Field(HavingIntFilter, graphql_name='statementMonth') + interval_start = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='intervalStart') + interval_end = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='intervalEnd') + bill_arrival_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='billArrivalDate') + bill_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billCost') + bill_usage_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billUsageCost') + bill_demand_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billDemandCost') + fees = sgqlc.types.Field(HavingFloatFilter, graphql_name='fees') + taxes = sgqlc.types.Field(HavingFloatFilter, graphql_name='taxes') + credits = sgqlc.types.Field(HavingFloatFilter, graphql_name='credits') + percent_change = sgqlc.types.Field(HavingFloatFilter, graphql_name='percentChange') + + +class UtilityAccountStatementRollupsHavingVarianceSampleInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('utility_account_id', 'account_statement_id', 'statement_year', 'statement_month', 'interval_start', 'interval_end', 'bill_arrival_date', 'bill_cost', 'bill_usage_cost', 'bill_demand_cost', 'fees', 'taxes', 'credits', 'percent_change') + utility_account_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityAccountId') + account_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='accountStatementId') + statement_year = sgqlc.types.Field(HavingIntFilter, graphql_name='statementYear') + statement_month = sgqlc.types.Field(HavingIntFilter, graphql_name='statementMonth') + interval_start = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='intervalStart') + interval_end = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='intervalEnd') + bill_arrival_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='billArrivalDate') + bill_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billCost') + bill_usage_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billUsageCost') + bill_demand_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billDemandCost') + fees = sgqlc.types.Field(HavingFloatFilter, graphql_name='fees') + taxes = sgqlc.types.Field(HavingFloatFilter, graphql_name='taxes') + credits = sgqlc.types.Field(HavingFloatFilter, graphql_name='credits') + percent_change = sgqlc.types.Field(HavingFloatFilter, graphql_name='percentChange') + + +class UtilityIntegrationFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('is_null', 'equal_to', 'not_equal_to', 'distinct_from', 'not_distinct_from', 'in_', 'not_in', 'less_than', 'less_than_or_equal_to', 'greater_than', 'greater_than_or_equal_to') + is_null = sgqlc.types.Field(Boolean, graphql_name='isNull') + equal_to = sgqlc.types.Field(UtilityIntegration, graphql_name='equalTo') + not_equal_to = sgqlc.types.Field(UtilityIntegration, graphql_name='notEqualTo') + distinct_from = sgqlc.types.Field(UtilityIntegration, graphql_name='distinctFrom') + not_distinct_from = sgqlc.types.Field(UtilityIntegration, graphql_name='notDistinctFrom') + in_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(UtilityIntegration)), graphql_name='in') + not_in = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(UtilityIntegration)), graphql_name='notIn') + less_than = sgqlc.types.Field(UtilityIntegration, graphql_name='lessThan') + less_than_or_equal_to = sgqlc.types.Field(UtilityIntegration, graphql_name='lessThanOrEqualTo') + greater_than = sgqlc.types.Field(UtilityIntegration, graphql_name='greaterThan') + greater_than_or_equal_to = sgqlc.types.Field(UtilityIntegration, graphql_name='greaterThanOrEqualTo') + + +class UtilityMeterChargeCategoryFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('is_null', 'equal_to', 'not_equal_to', 'distinct_from', 'not_distinct_from', 'in_', 'not_in', 'less_than', 'less_than_or_equal_to', 'greater_than', 'greater_than_or_equal_to') + is_null = sgqlc.types.Field(Boolean, graphql_name='isNull') + equal_to = sgqlc.types.Field(UtilityMeterChargeCategory, graphql_name='equalTo') + not_equal_to = sgqlc.types.Field(UtilityMeterChargeCategory, graphql_name='notEqualTo') + distinct_from = sgqlc.types.Field(UtilityMeterChargeCategory, graphql_name='distinctFrom') + not_distinct_from = sgqlc.types.Field(UtilityMeterChargeCategory, graphql_name='notDistinctFrom') + in_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMeterChargeCategory)), graphql_name='in') + not_in = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMeterChargeCategory)), graphql_name='notIn') + less_than = sgqlc.types.Field(UtilityMeterChargeCategory, graphql_name='lessThan') + less_than_or_equal_to = sgqlc.types.Field(UtilityMeterChargeCategory, graphql_name='lessThanOrEqualTo') + greater_than = sgqlc.types.Field(UtilityMeterChargeCategory, graphql_name='greaterThan') + greater_than_or_equal_to = sgqlc.types.Field(UtilityMeterChargeCategory, graphql_name='greaterThanOrEqualTo') + + +class UtilityMeterCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'utility_account_id', 'service_type', 'integration_meter_key', 'facility_id', 'name', 'active_start', 'active_end', 'metadata', 'created_at', 'updated_at', 'override_at', 'exclude_usage', 'default_demand_units', 'default_usage_units') + id = sgqlc.types.Field(Int, graphql_name='id') + utility_account_id = sgqlc.types.Field(Int, graphql_name='utilityAccountId') + service_type = sgqlc.types.Field(UtilityMeterServiceType, graphql_name='serviceType') + integration_meter_key = sgqlc.types.Field(String, graphql_name='integrationMeterKey') + facility_id = sgqlc.types.Field(Int, graphql_name='facilityId') + name = sgqlc.types.Field(String, graphql_name='name') + active_start = sgqlc.types.Field(Date, graphql_name='activeStart') + active_end = sgqlc.types.Field(Date, graphql_name='activeEnd') + metadata = sgqlc.types.Field(JSON, graphql_name='metadata') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') + override_at = sgqlc.types.Field(Datetime, graphql_name='overrideAt') + exclude_usage = sgqlc.types.Field(Boolean, graphql_name='excludeUsage') + default_demand_units = sgqlc.types.Field(String, graphql_name='defaultDemandUnits') + default_usage_units = sgqlc.types.Field(String, graphql_name='defaultUsageUnits') + + +class UtilityMeterFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('meter_number', 'id', 'utility_account_id', 'service_type', 'integration_meter_key', 'facility_id', 'name', 'active_start', 'active_end', 'metadata', 'created_at', 'updated_at', 'override_at', 'exclude_usage', 'default_demand_units', 'default_usage_units', 'deleted_at', 'and_', 'or_', 'not_') + meter_number = sgqlc.types.Field(StringFilter, graphql_name='meterNumber') + id = sgqlc.types.Field(IntFilter, graphql_name='id') + utility_account_id = sgqlc.types.Field(IntFilter, graphql_name='utilityAccountId') + service_type = sgqlc.types.Field('UtilityMeterServiceTypeFilter', graphql_name='serviceType') + integration_meter_key = sgqlc.types.Field(StringFilter, graphql_name='integrationMeterKey') + facility_id = sgqlc.types.Field(IntFilter, graphql_name='facilityId') + name = sgqlc.types.Field(StringFilter, graphql_name='name') + active_start = sgqlc.types.Field(DateFilter, graphql_name='activeStart') + active_end = sgqlc.types.Field(DateFilter, graphql_name='activeEnd') + metadata = sgqlc.types.Field(JSONFilter, graphql_name='metadata') + created_at = sgqlc.types.Field(DatetimeFilter, graphql_name='createdAt') + updated_at = sgqlc.types.Field(DatetimeFilter, graphql_name='updatedAt') + override_at = sgqlc.types.Field(DatetimeFilter, graphql_name='overrideAt') + exclude_usage = sgqlc.types.Field(BooleanFilter, graphql_name='excludeUsage') + default_demand_units = sgqlc.types.Field(StringFilter, graphql_name='defaultDemandUnits') + default_usage_units = sgqlc.types.Field(StringFilter, graphql_name='defaultUsageUnits') + deleted_at = sgqlc.types.Field(DatetimeFilter, graphql_name='deletedAt') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('UtilityMeterFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('UtilityMeterFilter')), graphql_name='or') + not_ = sgqlc.types.Field('UtilityMeterFilter', graphql_name='not') + + +class UtilityMeterInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'utility_account_id', 'service_type', 'integration_meter_key', 'facility_id', 'name', 'meter_number', 'active_start', 'active_end', 'metadata', 'override_at', 'exclude_usage', 'default_demand_units', 'default_usage_units', 'utility_account') + id = sgqlc.types.Field(Int, graphql_name='id') + utility_account_id = sgqlc.types.Field(Int, graphql_name='utilityAccountId') + service_type = sgqlc.types.Field(sgqlc.types.non_null(UtilityMeterServiceType), graphql_name='serviceType') + integration_meter_key = sgqlc.types.Field(String, graphql_name='integrationMeterKey') + facility_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='facilityId') + name = sgqlc.types.Field(String, graphql_name='name') + meter_number = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='meterNumber') + active_start = sgqlc.types.Field(Date, graphql_name='activeStart') + active_end = sgqlc.types.Field(Date, graphql_name='activeEnd') + metadata = sgqlc.types.Field(JSON, graphql_name='metadata') + override_at = sgqlc.types.Field(Datetime, graphql_name='overrideAt') + exclude_usage = sgqlc.types.Field(Boolean, graphql_name='excludeUsage') + default_demand_units = sgqlc.types.Field(String, graphql_name='defaultDemandUnits') + default_usage_units = sgqlc.types.Field(String, graphql_name='defaultUsageUnits') + utility_account = sgqlc.types.Field(UtilityAccountInput, graphql_name='utilityAccount') + + +class UtilityMeterPatch(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('service_type', 'facility_id', 'name', 'active_start', 'active_end', 'metadata', 'meter_number', 'override_at', 'exclude_usage', 'default_demand_units', 'default_usage_units') + service_type = sgqlc.types.Field(UtilityMeterServiceType, graphql_name='serviceType') + facility_id = sgqlc.types.Field(Int, graphql_name='facilityId') + name = sgqlc.types.Field(String, graphql_name='name') + active_start = sgqlc.types.Field(Date, graphql_name='activeStart') + active_end = sgqlc.types.Field(Date, graphql_name='activeEnd') + metadata = sgqlc.types.Field(JSON, graphql_name='metadata') + meter_number = sgqlc.types.Field(String, graphql_name='meterNumber') + override_at = sgqlc.types.Field(Datetime, graphql_name='overrideAt') + exclude_usage = sgqlc.types.Field(Boolean, graphql_name='excludeUsage') + default_demand_units = sgqlc.types.Field(String, graphql_name='defaultDemandUnits') + default_usage_units = sgqlc.types.Field(String, graphql_name='defaultUsageUnits') + + +class UtilityMeterServiceTypeFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('is_null', 'equal_to', 'not_equal_to', 'distinct_from', 'not_distinct_from', 'in_', 'not_in', 'less_than', 'less_than_or_equal_to', 'greater_than', 'greater_than_or_equal_to') + is_null = sgqlc.types.Field(Boolean, graphql_name='isNull') + equal_to = sgqlc.types.Field(UtilityMeterServiceType, graphql_name='equalTo') + not_equal_to = sgqlc.types.Field(UtilityMeterServiceType, graphql_name='notEqualTo') + distinct_from = sgqlc.types.Field(UtilityMeterServiceType, graphql_name='distinctFrom') + not_distinct_from = sgqlc.types.Field(UtilityMeterServiceType, graphql_name='notDistinctFrom') + in_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMeterServiceType)), graphql_name='in') + not_in = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMeterServiceType)), graphql_name='notIn') + less_than = sgqlc.types.Field(UtilityMeterServiceType, graphql_name='lessThan') + less_than_or_equal_to = sgqlc.types.Field(UtilityMeterServiceType, graphql_name='lessThanOrEqualTo') + greater_than = sgqlc.types.Field(UtilityMeterServiceType, graphql_name='greaterThan') + greater_than_or_equal_to = sgqlc.types.Field(UtilityMeterServiceType, graphql_name='greaterThanOrEqualTo') + + +class UtilityMeterServiceTypeListFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('is_null', 'equal_to', 'not_equal_to', 'distinct_from', 'not_distinct_from', 'less_than', 'less_than_or_equal_to', 'greater_than', 'greater_than_or_equal_to', 'contains', 'contained_by', 'overlaps', 'any_equal_to', 'any_not_equal_to', 'any_less_than', 'any_less_than_or_equal_to', 'any_greater_than', 'any_greater_than_or_equal_to') + is_null = sgqlc.types.Field(Boolean, graphql_name='isNull') + equal_to = sgqlc.types.Field(sgqlc.types.list_of(UtilityMeterServiceType), graphql_name='equalTo') + not_equal_to = sgqlc.types.Field(sgqlc.types.list_of(UtilityMeterServiceType), graphql_name='notEqualTo') + distinct_from = sgqlc.types.Field(sgqlc.types.list_of(UtilityMeterServiceType), graphql_name='distinctFrom') + not_distinct_from = sgqlc.types.Field(sgqlc.types.list_of(UtilityMeterServiceType), graphql_name='notDistinctFrom') + less_than = sgqlc.types.Field(sgqlc.types.list_of(UtilityMeterServiceType), graphql_name='lessThan') + less_than_or_equal_to = sgqlc.types.Field(sgqlc.types.list_of(UtilityMeterServiceType), graphql_name='lessThanOrEqualTo') + greater_than = sgqlc.types.Field(sgqlc.types.list_of(UtilityMeterServiceType), graphql_name='greaterThan') + greater_than_or_equal_to = sgqlc.types.Field(sgqlc.types.list_of(UtilityMeterServiceType), graphql_name='greaterThanOrEqualTo') + contains = sgqlc.types.Field(sgqlc.types.list_of(UtilityMeterServiceType), graphql_name='contains') + contained_by = sgqlc.types.Field(sgqlc.types.list_of(UtilityMeterServiceType), graphql_name='containedBy') + overlaps = sgqlc.types.Field(sgqlc.types.list_of(UtilityMeterServiceType), graphql_name='overlaps') + any_equal_to = sgqlc.types.Field(UtilityMeterServiceType, graphql_name='anyEqualTo') + any_not_equal_to = sgqlc.types.Field(UtilityMeterServiceType, graphql_name='anyNotEqualTo') + any_less_than = sgqlc.types.Field(UtilityMeterServiceType, graphql_name='anyLessThan') + any_less_than_or_equal_to = sgqlc.types.Field(UtilityMeterServiceType, graphql_name='anyLessThanOrEqualTo') + any_greater_than = sgqlc.types.Field(UtilityMeterServiceType, graphql_name='anyGreaterThan') + any_greater_than_or_equal_to = sgqlc.types.Field(UtilityMeterServiceType, graphql_name='anyGreaterThanOrEqualTo') + + +class UtilityMeterStatementCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'utility_account_id', 'utility_meter_id', 'meter_end_date_set', 'service_type', 'exclude_usage', 'usage_units', 'demand_units', 'meter_statement_id', 'is_validated', 'meter_label', 'provider', 'account_label', 'bill_arrival_date', 'start_date', 'end_date', 'statement_year', 'statement_month', 'currency_code', 'days_in_bill', 'account_statement_id') + facility_id = sgqlc.types.Field(Int, graphql_name='facilityId') + utility_account_id = sgqlc.types.Field(Int, graphql_name='utilityAccountId') + utility_meter_id = sgqlc.types.Field(Int, graphql_name='utilityMeterId') + meter_end_date_set = sgqlc.types.Field(Boolean, graphql_name='meterEndDateSet') + service_type = sgqlc.types.Field(UtilityMeterServiceType, graphql_name='serviceType') + exclude_usage = sgqlc.types.Field(Boolean, graphql_name='excludeUsage') + usage_units = sgqlc.types.Field(String, graphql_name='usageUnits') + demand_units = sgqlc.types.Field(String, graphql_name='demandUnits') + meter_statement_id = sgqlc.types.Field(Int, graphql_name='meterStatementId') + is_validated = sgqlc.types.Field(Boolean, graphql_name='isValidated') + meter_label = sgqlc.types.Field(String, graphql_name='meterLabel') + provider = sgqlc.types.Field(String, graphql_name='provider') + account_label = sgqlc.types.Field(String, graphql_name='accountLabel') + bill_arrival_date = sgqlc.types.Field(Datetime, graphql_name='billArrivalDate') + start_date = sgqlc.types.Field(Date, graphql_name='startDate') + end_date = sgqlc.types.Field(Date, graphql_name='endDate') + statement_year = sgqlc.types.Field(Int, graphql_name='statementYear') + statement_month = sgqlc.types.Field(Int, graphql_name='statementMonth') + currency_code = sgqlc.types.Field(String, graphql_name='currencyCode') + days_in_bill = sgqlc.types.Field(Int, graphql_name='daysInBill') + account_statement_id = sgqlc.types.Field(Int, graphql_name='accountStatementId') + + +class UtilityMeterStatementFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'utility_account_id', 'utility_meter_id', 'meter_end_date_set', 'service_type', 'exclude_usage', 'usage_units', 'demand_units', 'meter_statement_id', 'is_validated', 'meter_label', 'provider', 'account_label', 'bill_arrival_date', 'start_date', 'end_date', 'statement_year', 'statement_month', 'currency_code', 'days_in_bill', 'account_statement_id', 'bill_cost', 'bill_demand', 'bill_demand_cost', 'bill_usage', 'bill_usage_cost', 'credits', 'fees', 'taxes', 'and_', 'or_', 'not_') + facility_id = sgqlc.types.Field(IntFilter, graphql_name='facilityId') + utility_account_id = sgqlc.types.Field(IntFilter, graphql_name='utilityAccountId') + utility_meter_id = sgqlc.types.Field(IntFilter, graphql_name='utilityMeterId') + meter_end_date_set = sgqlc.types.Field(BooleanFilter, graphql_name='meterEndDateSet') + service_type = sgqlc.types.Field(UtilityMeterServiceTypeFilter, graphql_name='serviceType') + exclude_usage = sgqlc.types.Field(BooleanFilter, graphql_name='excludeUsage') + usage_units = sgqlc.types.Field(StringFilter, graphql_name='usageUnits') + demand_units = sgqlc.types.Field(StringFilter, graphql_name='demandUnits') + meter_statement_id = sgqlc.types.Field(IntFilter, graphql_name='meterStatementId') + is_validated = sgqlc.types.Field(BooleanFilter, graphql_name='isValidated') + meter_label = sgqlc.types.Field(StringFilter, graphql_name='meterLabel') + provider = sgqlc.types.Field(StringFilter, graphql_name='provider') + account_label = sgqlc.types.Field(StringFilter, graphql_name='accountLabel') + bill_arrival_date = sgqlc.types.Field(DatetimeFilter, graphql_name='billArrivalDate') + start_date = sgqlc.types.Field(DateFilter, graphql_name='startDate') + end_date = sgqlc.types.Field(DateFilter, graphql_name='endDate') + statement_year = sgqlc.types.Field(IntFilter, graphql_name='statementYear') + statement_month = sgqlc.types.Field(IntFilter, graphql_name='statementMonth') + currency_code = sgqlc.types.Field(StringFilter, graphql_name='currencyCode') + days_in_bill = sgqlc.types.Field(IntFilter, graphql_name='daysInBill') + account_statement_id = sgqlc.types.Field(IntFilter, graphql_name='accountStatementId') + bill_cost = sgqlc.types.Field(FloatFilter, graphql_name='billCost') + bill_demand = sgqlc.types.Field(FloatFilter, graphql_name='billDemand') + bill_demand_cost = sgqlc.types.Field(FloatFilter, graphql_name='billDemandCost') + bill_usage = sgqlc.types.Field(FloatFilter, graphql_name='billUsage') + bill_usage_cost = sgqlc.types.Field(FloatFilter, graphql_name='billUsageCost') + credits = sgqlc.types.Field(FloatFilter, graphql_name='credits') + fees = sgqlc.types.Field(FloatFilter, graphql_name='fees') + taxes = sgqlc.types.Field(FloatFilter, graphql_name='taxes') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('UtilityMeterStatementFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('UtilityMeterStatementFilter')), graphql_name='or') + not_ = sgqlc.types.Field('UtilityMeterStatementFilter', graphql_name='not') + + +class UtilityMeterStatementRollupCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'utility_account_id', 'utility_meter_id', 'meter_end_date_set', 'meter_statement_id', 'is_validated', 'service_type', 'meter_label', 'provider', 'bill_arrival_date', 'start_date', 'end_date', 'account_label', 'statement_year', 'statement_month', 'days_in_bill', 'bill_cost', 'usage_units', 'bill_usage', 'net_bill_usage', 'bill_usage_cost', 'demand_units', 'bill_demand', 'bill_demand_cost', 'fees', 'taxes', 'credits', 'blended_rate', 'load_factor', 'percent_change', 'currency_code', 'account_statement_id') + facility_id = sgqlc.types.Field(Int, graphql_name='facilityId') + utility_account_id = sgqlc.types.Field(Int, graphql_name='utilityAccountId') + utility_meter_id = sgqlc.types.Field(Int, graphql_name='utilityMeterId') + meter_end_date_set = sgqlc.types.Field(Boolean, graphql_name='meterEndDateSet') + meter_statement_id = sgqlc.types.Field(Int, graphql_name='meterStatementId') + is_validated = sgqlc.types.Field(Boolean, graphql_name='isValidated') + service_type = sgqlc.types.Field(UtilityMeterServiceType, graphql_name='serviceType') + meter_label = sgqlc.types.Field(String, graphql_name='meterLabel') + provider = sgqlc.types.Field(String, graphql_name='provider') + bill_arrival_date = sgqlc.types.Field(Datetime, graphql_name='billArrivalDate') + start_date = sgqlc.types.Field(Date, graphql_name='startDate') + end_date = sgqlc.types.Field(Date, graphql_name='endDate') + account_label = sgqlc.types.Field(String, graphql_name='accountLabel') + statement_year = sgqlc.types.Field(Int, graphql_name='statementYear') + statement_month = sgqlc.types.Field(Int, graphql_name='statementMonth') + days_in_bill = sgqlc.types.Field(Int, graphql_name='daysInBill') + bill_cost = sgqlc.types.Field(Float, graphql_name='billCost') + usage_units = sgqlc.types.Field(String, graphql_name='usageUnits') + bill_usage = sgqlc.types.Field(Float, graphql_name='billUsage') + net_bill_usage = sgqlc.types.Field(Float, graphql_name='netBillUsage') + bill_usage_cost = sgqlc.types.Field(Float, graphql_name='billUsageCost') + demand_units = sgqlc.types.Field(String, graphql_name='demandUnits') + bill_demand = sgqlc.types.Field(Float, graphql_name='billDemand') + bill_demand_cost = sgqlc.types.Field(Float, graphql_name='billDemandCost') + fees = sgqlc.types.Field(Float, graphql_name='fees') + taxes = sgqlc.types.Field(Float, graphql_name='taxes') + credits = sgqlc.types.Field(Float, graphql_name='credits') + blended_rate = sgqlc.types.Field(Float, graphql_name='blendedRate') + load_factor = sgqlc.types.Field(Float, graphql_name='loadFactor') + percent_change = sgqlc.types.Field(Float, graphql_name='percentChange') + currency_code = sgqlc.types.Field(String, graphql_name='currencyCode') + account_statement_id = sgqlc.types.Field(Int, graphql_name='accountStatementId') + + +class UtilityMeterStatementRollupFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'utility_account_id', 'utility_meter_id', 'meter_end_date_set', 'meter_statement_id', 'is_validated', 'service_type', 'meter_label', 'provider', 'bill_arrival_date', 'start_date', 'end_date', 'account_label', 'statement_year', 'statement_month', 'days_in_bill', 'bill_cost', 'usage_units', 'bill_usage', 'net_bill_usage', 'bill_usage_cost', 'demand_units', 'bill_demand', 'bill_demand_cost', 'fees', 'taxes', 'credits', 'blended_rate', 'load_factor', 'percent_change', 'currency_code', 'account_statement_id', 'facility_name', 'n_sight2_active', 'statement_date', 'and_', 'or_', 'not_') + facility_id = sgqlc.types.Field(IntFilter, graphql_name='facilityId') + utility_account_id = sgqlc.types.Field(IntFilter, graphql_name='utilityAccountId') + utility_meter_id = sgqlc.types.Field(IntFilter, graphql_name='utilityMeterId') + meter_end_date_set = sgqlc.types.Field(BooleanFilter, graphql_name='meterEndDateSet') + meter_statement_id = sgqlc.types.Field(IntFilter, graphql_name='meterStatementId') + is_validated = sgqlc.types.Field(BooleanFilter, graphql_name='isValidated') + service_type = sgqlc.types.Field(UtilityMeterServiceTypeFilter, graphql_name='serviceType') + meter_label = sgqlc.types.Field(StringFilter, graphql_name='meterLabel') + provider = sgqlc.types.Field(StringFilter, graphql_name='provider') + bill_arrival_date = sgqlc.types.Field(DatetimeFilter, graphql_name='billArrivalDate') + start_date = sgqlc.types.Field(DateFilter, graphql_name='startDate') + end_date = sgqlc.types.Field(DateFilter, graphql_name='endDate') + account_label = sgqlc.types.Field(StringFilter, graphql_name='accountLabel') + statement_year = sgqlc.types.Field(IntFilter, graphql_name='statementYear') + statement_month = sgqlc.types.Field(IntFilter, graphql_name='statementMonth') + days_in_bill = sgqlc.types.Field(IntFilter, graphql_name='daysInBill') + bill_cost = sgqlc.types.Field(FloatFilter, graphql_name='billCost') + usage_units = sgqlc.types.Field(StringFilter, graphql_name='usageUnits') + bill_usage = sgqlc.types.Field(FloatFilter, graphql_name='billUsage') + net_bill_usage = sgqlc.types.Field(FloatFilter, graphql_name='netBillUsage') + bill_usage_cost = sgqlc.types.Field(FloatFilter, graphql_name='billUsageCost') + demand_units = sgqlc.types.Field(StringFilter, graphql_name='demandUnits') + bill_demand = sgqlc.types.Field(FloatFilter, graphql_name='billDemand') + bill_demand_cost = sgqlc.types.Field(FloatFilter, graphql_name='billDemandCost') + fees = sgqlc.types.Field(FloatFilter, graphql_name='fees') + taxes = sgqlc.types.Field(FloatFilter, graphql_name='taxes') + credits = sgqlc.types.Field(FloatFilter, graphql_name='credits') + blended_rate = sgqlc.types.Field(FloatFilter, graphql_name='blendedRate') + load_factor = sgqlc.types.Field(FloatFilter, graphql_name='loadFactor') + percent_change = sgqlc.types.Field(FloatFilter, graphql_name='percentChange') + currency_code = sgqlc.types.Field(StringFilter, graphql_name='currencyCode') + account_statement_id = sgqlc.types.Field(IntFilter, graphql_name='accountStatementId') + facility_name = sgqlc.types.Field(StringFilter, graphql_name='facilityName') + n_sight2_active = sgqlc.types.Field(BooleanFilter, graphql_name='nSight2Active') + statement_date = sgqlc.types.Field(StringFilter, graphql_name='statementDate') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('UtilityMeterStatementRollupFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('UtilityMeterStatementRollupFilter')), graphql_name='or') + not_ = sgqlc.types.Field('UtilityMeterStatementRollupFilter', graphql_name='not') + + +class UtilityMeterStatementRollupsHavingAverageInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'utility_account_id', 'utility_meter_id', 'meter_statement_id', 'bill_arrival_date', 'start_date', 'end_date', 'statement_year', 'statement_month', 'days_in_bill', 'bill_cost', 'bill_usage', 'net_bill_usage', 'bill_usage_cost', 'bill_demand', 'bill_demand_cost', 'fees', 'taxes', 'credits', 'blended_rate', 'load_factor', 'percent_change', 'account_statement_id') + facility_id = sgqlc.types.Field(HavingIntFilter, graphql_name='facilityId') + utility_account_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityAccountId') + utility_meter_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityMeterId') + meter_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='meterStatementId') + bill_arrival_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='billArrivalDate') + start_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='startDate') + end_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='endDate') + statement_year = sgqlc.types.Field(HavingIntFilter, graphql_name='statementYear') + statement_month = sgqlc.types.Field(HavingIntFilter, graphql_name='statementMonth') + days_in_bill = sgqlc.types.Field(HavingIntFilter, graphql_name='daysInBill') + bill_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billCost') + bill_usage = sgqlc.types.Field(HavingFloatFilter, graphql_name='billUsage') + net_bill_usage = sgqlc.types.Field(HavingFloatFilter, graphql_name='netBillUsage') + bill_usage_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billUsageCost') + bill_demand = sgqlc.types.Field(HavingFloatFilter, graphql_name='billDemand') + bill_demand_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billDemandCost') + fees = sgqlc.types.Field(HavingFloatFilter, graphql_name='fees') + taxes = sgqlc.types.Field(HavingFloatFilter, graphql_name='taxes') + credits = sgqlc.types.Field(HavingFloatFilter, graphql_name='credits') + blended_rate = sgqlc.types.Field(HavingFloatFilter, graphql_name='blendedRate') + load_factor = sgqlc.types.Field(HavingFloatFilter, graphql_name='loadFactor') + percent_change = sgqlc.types.Field(HavingFloatFilter, graphql_name='percentChange') + account_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='accountStatementId') + + +class UtilityMeterStatementRollupsHavingDistinctCountInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'utility_account_id', 'utility_meter_id', 'meter_statement_id', 'bill_arrival_date', 'start_date', 'end_date', 'statement_year', 'statement_month', 'days_in_bill', 'bill_cost', 'bill_usage', 'net_bill_usage', 'bill_usage_cost', 'bill_demand', 'bill_demand_cost', 'fees', 'taxes', 'credits', 'blended_rate', 'load_factor', 'percent_change', 'account_statement_id') + facility_id = sgqlc.types.Field(HavingIntFilter, graphql_name='facilityId') + utility_account_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityAccountId') + utility_meter_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityMeterId') + meter_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='meterStatementId') + bill_arrival_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='billArrivalDate') + start_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='startDate') + end_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='endDate') + statement_year = sgqlc.types.Field(HavingIntFilter, graphql_name='statementYear') + statement_month = sgqlc.types.Field(HavingIntFilter, graphql_name='statementMonth') + days_in_bill = sgqlc.types.Field(HavingIntFilter, graphql_name='daysInBill') + bill_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billCost') + bill_usage = sgqlc.types.Field(HavingFloatFilter, graphql_name='billUsage') + net_bill_usage = sgqlc.types.Field(HavingFloatFilter, graphql_name='netBillUsage') + bill_usage_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billUsageCost') + bill_demand = sgqlc.types.Field(HavingFloatFilter, graphql_name='billDemand') + bill_demand_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billDemandCost') + fees = sgqlc.types.Field(HavingFloatFilter, graphql_name='fees') + taxes = sgqlc.types.Field(HavingFloatFilter, graphql_name='taxes') + credits = sgqlc.types.Field(HavingFloatFilter, graphql_name='credits') + blended_rate = sgqlc.types.Field(HavingFloatFilter, graphql_name='blendedRate') + load_factor = sgqlc.types.Field(HavingFloatFilter, graphql_name='loadFactor') + percent_change = sgqlc.types.Field(HavingFloatFilter, graphql_name='percentChange') + account_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='accountStatementId') + + +class UtilityMeterStatementRollupsHavingDistinctInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'utility_account_id', 'utility_meter_id', 'meter_statement_id', 'bill_arrival_date', 'start_date', 'end_date', 'statement_year', 'statement_month', 'days_in_bill', 'bill_cost', 'bill_usage', 'net_bill_usage', 'bill_usage_cost', 'bill_demand', 'bill_demand_cost', 'fees', 'taxes', 'credits', 'blended_rate', 'load_factor', 'percent_change', 'account_statement_id') + facility_id = sgqlc.types.Field(HavingIntFilter, graphql_name='facilityId') + utility_account_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityAccountId') + utility_meter_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityMeterId') + meter_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='meterStatementId') + bill_arrival_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='billArrivalDate') + start_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='startDate') + end_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='endDate') + statement_year = sgqlc.types.Field(HavingIntFilter, graphql_name='statementYear') + statement_month = sgqlc.types.Field(HavingIntFilter, graphql_name='statementMonth') + days_in_bill = sgqlc.types.Field(HavingIntFilter, graphql_name='daysInBill') + bill_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billCost') + bill_usage = sgqlc.types.Field(HavingFloatFilter, graphql_name='billUsage') + net_bill_usage = sgqlc.types.Field(HavingFloatFilter, graphql_name='netBillUsage') + bill_usage_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billUsageCost') + bill_demand = sgqlc.types.Field(HavingFloatFilter, graphql_name='billDemand') + bill_demand_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billDemandCost') + fees = sgqlc.types.Field(HavingFloatFilter, graphql_name='fees') + taxes = sgqlc.types.Field(HavingFloatFilter, graphql_name='taxes') + credits = sgqlc.types.Field(HavingFloatFilter, graphql_name='credits') + blended_rate = sgqlc.types.Field(HavingFloatFilter, graphql_name='blendedRate') + load_factor = sgqlc.types.Field(HavingFloatFilter, graphql_name='loadFactor') + percent_change = sgqlc.types.Field(HavingFloatFilter, graphql_name='percentChange') + account_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='accountStatementId') + + +class UtilityMeterStatementRollupsHavingInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('and_', 'or_', 'sum', 'distinct_count', 'min', 'max', 'average', 'stddev_sample', 'stddev_population', 'variance_sample', 'variance_population', 'distinct') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('UtilityMeterStatementRollupsHavingInput')), graphql_name='AND') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('UtilityMeterStatementRollupsHavingInput')), graphql_name='OR') + sum = sgqlc.types.Field('UtilityMeterStatementRollupsHavingSumInput', graphql_name='sum') + distinct_count = sgqlc.types.Field(UtilityMeterStatementRollupsHavingDistinctCountInput, graphql_name='distinctCount') + min = sgqlc.types.Field('UtilityMeterStatementRollupsHavingMinInput', graphql_name='min') + max = sgqlc.types.Field('UtilityMeterStatementRollupsHavingMaxInput', graphql_name='max') + average = sgqlc.types.Field(UtilityMeterStatementRollupsHavingAverageInput, graphql_name='average') + stddev_sample = sgqlc.types.Field('UtilityMeterStatementRollupsHavingStddevSampleInput', graphql_name='stddevSample') + stddev_population = sgqlc.types.Field('UtilityMeterStatementRollupsHavingStddevPopulationInput', graphql_name='stddevPopulation') + variance_sample = sgqlc.types.Field('UtilityMeterStatementRollupsHavingVarianceSampleInput', graphql_name='varianceSample') + variance_population = sgqlc.types.Field('UtilityMeterStatementRollupsHavingVariancePopulationInput', graphql_name='variancePopulation') + distinct = sgqlc.types.Field(UtilityMeterStatementRollupsHavingDistinctInput, graphql_name='distinct') + + +class UtilityMeterStatementRollupsHavingMaxInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'utility_account_id', 'utility_meter_id', 'meter_statement_id', 'bill_arrival_date', 'start_date', 'end_date', 'statement_year', 'statement_month', 'days_in_bill', 'bill_cost', 'bill_usage', 'net_bill_usage', 'bill_usage_cost', 'bill_demand', 'bill_demand_cost', 'fees', 'taxes', 'credits', 'blended_rate', 'load_factor', 'percent_change', 'account_statement_id') + facility_id = sgqlc.types.Field(HavingIntFilter, graphql_name='facilityId') + utility_account_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityAccountId') + utility_meter_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityMeterId') + meter_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='meterStatementId') + bill_arrival_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='billArrivalDate') + start_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='startDate') + end_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='endDate') + statement_year = sgqlc.types.Field(HavingIntFilter, graphql_name='statementYear') + statement_month = sgqlc.types.Field(HavingIntFilter, graphql_name='statementMonth') + days_in_bill = sgqlc.types.Field(HavingIntFilter, graphql_name='daysInBill') + bill_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billCost') + bill_usage = sgqlc.types.Field(HavingFloatFilter, graphql_name='billUsage') + net_bill_usage = sgqlc.types.Field(HavingFloatFilter, graphql_name='netBillUsage') + bill_usage_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billUsageCost') + bill_demand = sgqlc.types.Field(HavingFloatFilter, graphql_name='billDemand') + bill_demand_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billDemandCost') + fees = sgqlc.types.Field(HavingFloatFilter, graphql_name='fees') + taxes = sgqlc.types.Field(HavingFloatFilter, graphql_name='taxes') + credits = sgqlc.types.Field(HavingFloatFilter, graphql_name='credits') + blended_rate = sgqlc.types.Field(HavingFloatFilter, graphql_name='blendedRate') + load_factor = sgqlc.types.Field(HavingFloatFilter, graphql_name='loadFactor') + percent_change = sgqlc.types.Field(HavingFloatFilter, graphql_name='percentChange') + account_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='accountStatementId') + + +class UtilityMeterStatementRollupsHavingMinInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'utility_account_id', 'utility_meter_id', 'meter_statement_id', 'bill_arrival_date', 'start_date', 'end_date', 'statement_year', 'statement_month', 'days_in_bill', 'bill_cost', 'bill_usage', 'net_bill_usage', 'bill_usage_cost', 'bill_demand', 'bill_demand_cost', 'fees', 'taxes', 'credits', 'blended_rate', 'load_factor', 'percent_change', 'account_statement_id') + facility_id = sgqlc.types.Field(HavingIntFilter, graphql_name='facilityId') + utility_account_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityAccountId') + utility_meter_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityMeterId') + meter_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='meterStatementId') + bill_arrival_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='billArrivalDate') + start_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='startDate') + end_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='endDate') + statement_year = sgqlc.types.Field(HavingIntFilter, graphql_name='statementYear') + statement_month = sgqlc.types.Field(HavingIntFilter, graphql_name='statementMonth') + days_in_bill = sgqlc.types.Field(HavingIntFilter, graphql_name='daysInBill') + bill_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billCost') + bill_usage = sgqlc.types.Field(HavingFloatFilter, graphql_name='billUsage') + net_bill_usage = sgqlc.types.Field(HavingFloatFilter, graphql_name='netBillUsage') + bill_usage_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billUsageCost') + bill_demand = sgqlc.types.Field(HavingFloatFilter, graphql_name='billDemand') + bill_demand_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billDemandCost') + fees = sgqlc.types.Field(HavingFloatFilter, graphql_name='fees') + taxes = sgqlc.types.Field(HavingFloatFilter, graphql_name='taxes') + credits = sgqlc.types.Field(HavingFloatFilter, graphql_name='credits') + blended_rate = sgqlc.types.Field(HavingFloatFilter, graphql_name='blendedRate') + load_factor = sgqlc.types.Field(HavingFloatFilter, graphql_name='loadFactor') + percent_change = sgqlc.types.Field(HavingFloatFilter, graphql_name='percentChange') + account_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='accountStatementId') + + +class UtilityMeterStatementRollupsHavingStddevPopulationInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'utility_account_id', 'utility_meter_id', 'meter_statement_id', 'bill_arrival_date', 'start_date', 'end_date', 'statement_year', 'statement_month', 'days_in_bill', 'bill_cost', 'bill_usage', 'net_bill_usage', 'bill_usage_cost', 'bill_demand', 'bill_demand_cost', 'fees', 'taxes', 'credits', 'blended_rate', 'load_factor', 'percent_change', 'account_statement_id') + facility_id = sgqlc.types.Field(HavingIntFilter, graphql_name='facilityId') + utility_account_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityAccountId') + utility_meter_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityMeterId') + meter_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='meterStatementId') + bill_arrival_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='billArrivalDate') + start_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='startDate') + end_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='endDate') + statement_year = sgqlc.types.Field(HavingIntFilter, graphql_name='statementYear') + statement_month = sgqlc.types.Field(HavingIntFilter, graphql_name='statementMonth') + days_in_bill = sgqlc.types.Field(HavingIntFilter, graphql_name='daysInBill') + bill_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billCost') + bill_usage = sgqlc.types.Field(HavingFloatFilter, graphql_name='billUsage') + net_bill_usage = sgqlc.types.Field(HavingFloatFilter, graphql_name='netBillUsage') + bill_usage_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billUsageCost') + bill_demand = sgqlc.types.Field(HavingFloatFilter, graphql_name='billDemand') + bill_demand_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billDemandCost') + fees = sgqlc.types.Field(HavingFloatFilter, graphql_name='fees') + taxes = sgqlc.types.Field(HavingFloatFilter, graphql_name='taxes') + credits = sgqlc.types.Field(HavingFloatFilter, graphql_name='credits') + blended_rate = sgqlc.types.Field(HavingFloatFilter, graphql_name='blendedRate') + load_factor = sgqlc.types.Field(HavingFloatFilter, graphql_name='loadFactor') + percent_change = sgqlc.types.Field(HavingFloatFilter, graphql_name='percentChange') + account_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='accountStatementId') + + +class UtilityMeterStatementRollupsHavingStddevSampleInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'utility_account_id', 'utility_meter_id', 'meter_statement_id', 'bill_arrival_date', 'start_date', 'end_date', 'statement_year', 'statement_month', 'days_in_bill', 'bill_cost', 'bill_usage', 'net_bill_usage', 'bill_usage_cost', 'bill_demand', 'bill_demand_cost', 'fees', 'taxes', 'credits', 'blended_rate', 'load_factor', 'percent_change', 'account_statement_id') + facility_id = sgqlc.types.Field(HavingIntFilter, graphql_name='facilityId') + utility_account_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityAccountId') + utility_meter_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityMeterId') + meter_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='meterStatementId') + bill_arrival_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='billArrivalDate') + start_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='startDate') + end_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='endDate') + statement_year = sgqlc.types.Field(HavingIntFilter, graphql_name='statementYear') + statement_month = sgqlc.types.Field(HavingIntFilter, graphql_name='statementMonth') + days_in_bill = sgqlc.types.Field(HavingIntFilter, graphql_name='daysInBill') + bill_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billCost') + bill_usage = sgqlc.types.Field(HavingFloatFilter, graphql_name='billUsage') + net_bill_usage = sgqlc.types.Field(HavingFloatFilter, graphql_name='netBillUsage') + bill_usage_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billUsageCost') + bill_demand = sgqlc.types.Field(HavingFloatFilter, graphql_name='billDemand') + bill_demand_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billDemandCost') + fees = sgqlc.types.Field(HavingFloatFilter, graphql_name='fees') + taxes = sgqlc.types.Field(HavingFloatFilter, graphql_name='taxes') + credits = sgqlc.types.Field(HavingFloatFilter, graphql_name='credits') + blended_rate = sgqlc.types.Field(HavingFloatFilter, graphql_name='blendedRate') + load_factor = sgqlc.types.Field(HavingFloatFilter, graphql_name='loadFactor') + percent_change = sgqlc.types.Field(HavingFloatFilter, graphql_name='percentChange') + account_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='accountStatementId') + + +class UtilityMeterStatementRollupsHavingSumInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'utility_account_id', 'utility_meter_id', 'meter_statement_id', 'bill_arrival_date', 'start_date', 'end_date', 'statement_year', 'statement_month', 'days_in_bill', 'bill_cost', 'bill_usage', 'net_bill_usage', 'bill_usage_cost', 'bill_demand', 'bill_demand_cost', 'fees', 'taxes', 'credits', 'blended_rate', 'load_factor', 'percent_change', 'account_statement_id') + facility_id = sgqlc.types.Field(HavingIntFilter, graphql_name='facilityId') + utility_account_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityAccountId') + utility_meter_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityMeterId') + meter_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='meterStatementId') + bill_arrival_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='billArrivalDate') + start_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='startDate') + end_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='endDate') + statement_year = sgqlc.types.Field(HavingIntFilter, graphql_name='statementYear') + statement_month = sgqlc.types.Field(HavingIntFilter, graphql_name='statementMonth') + days_in_bill = sgqlc.types.Field(HavingIntFilter, graphql_name='daysInBill') + bill_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billCost') + bill_usage = sgqlc.types.Field(HavingFloatFilter, graphql_name='billUsage') + net_bill_usage = sgqlc.types.Field(HavingFloatFilter, graphql_name='netBillUsage') + bill_usage_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billUsageCost') + bill_demand = sgqlc.types.Field(HavingFloatFilter, graphql_name='billDemand') + bill_demand_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billDemandCost') + fees = sgqlc.types.Field(HavingFloatFilter, graphql_name='fees') + taxes = sgqlc.types.Field(HavingFloatFilter, graphql_name='taxes') + credits = sgqlc.types.Field(HavingFloatFilter, graphql_name='credits') + blended_rate = sgqlc.types.Field(HavingFloatFilter, graphql_name='blendedRate') + load_factor = sgqlc.types.Field(HavingFloatFilter, graphql_name='loadFactor') + percent_change = sgqlc.types.Field(HavingFloatFilter, graphql_name='percentChange') + account_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='accountStatementId') + + +class UtilityMeterStatementRollupsHavingVariancePopulationInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'utility_account_id', 'utility_meter_id', 'meter_statement_id', 'bill_arrival_date', 'start_date', 'end_date', 'statement_year', 'statement_month', 'days_in_bill', 'bill_cost', 'bill_usage', 'net_bill_usage', 'bill_usage_cost', 'bill_demand', 'bill_demand_cost', 'fees', 'taxes', 'credits', 'blended_rate', 'load_factor', 'percent_change', 'account_statement_id') + facility_id = sgqlc.types.Field(HavingIntFilter, graphql_name='facilityId') + utility_account_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityAccountId') + utility_meter_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityMeterId') + meter_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='meterStatementId') + bill_arrival_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='billArrivalDate') + start_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='startDate') + end_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='endDate') + statement_year = sgqlc.types.Field(HavingIntFilter, graphql_name='statementYear') + statement_month = sgqlc.types.Field(HavingIntFilter, graphql_name='statementMonth') + days_in_bill = sgqlc.types.Field(HavingIntFilter, graphql_name='daysInBill') + bill_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billCost') + bill_usage = sgqlc.types.Field(HavingFloatFilter, graphql_name='billUsage') + net_bill_usage = sgqlc.types.Field(HavingFloatFilter, graphql_name='netBillUsage') + bill_usage_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billUsageCost') + bill_demand = sgqlc.types.Field(HavingFloatFilter, graphql_name='billDemand') + bill_demand_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billDemandCost') + fees = sgqlc.types.Field(HavingFloatFilter, graphql_name='fees') + taxes = sgqlc.types.Field(HavingFloatFilter, graphql_name='taxes') + credits = sgqlc.types.Field(HavingFloatFilter, graphql_name='credits') + blended_rate = sgqlc.types.Field(HavingFloatFilter, graphql_name='blendedRate') + load_factor = sgqlc.types.Field(HavingFloatFilter, graphql_name='loadFactor') + percent_change = sgqlc.types.Field(HavingFloatFilter, graphql_name='percentChange') + account_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='accountStatementId') + + +class UtilityMeterStatementRollupsHavingVarianceSampleInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'utility_account_id', 'utility_meter_id', 'meter_statement_id', 'bill_arrival_date', 'start_date', 'end_date', 'statement_year', 'statement_month', 'days_in_bill', 'bill_cost', 'bill_usage', 'net_bill_usage', 'bill_usage_cost', 'bill_demand', 'bill_demand_cost', 'fees', 'taxes', 'credits', 'blended_rate', 'load_factor', 'percent_change', 'account_statement_id') + facility_id = sgqlc.types.Field(HavingIntFilter, graphql_name='facilityId') + utility_account_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityAccountId') + utility_meter_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityMeterId') + meter_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='meterStatementId') + bill_arrival_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='billArrivalDate') + start_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='startDate') + end_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='endDate') + statement_year = sgqlc.types.Field(HavingIntFilter, graphql_name='statementYear') + statement_month = sgqlc.types.Field(HavingIntFilter, graphql_name='statementMonth') + days_in_bill = sgqlc.types.Field(HavingIntFilter, graphql_name='daysInBill') + bill_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billCost') + bill_usage = sgqlc.types.Field(HavingFloatFilter, graphql_name='billUsage') + net_bill_usage = sgqlc.types.Field(HavingFloatFilter, graphql_name='netBillUsage') + bill_usage_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billUsageCost') + bill_demand = sgqlc.types.Field(HavingFloatFilter, graphql_name='billDemand') + bill_demand_cost = sgqlc.types.Field(HavingFloatFilter, graphql_name='billDemandCost') + fees = sgqlc.types.Field(HavingFloatFilter, graphql_name='fees') + taxes = sgqlc.types.Field(HavingFloatFilter, graphql_name='taxes') + credits = sgqlc.types.Field(HavingFloatFilter, graphql_name='credits') + blended_rate = sgqlc.types.Field(HavingFloatFilter, graphql_name='blendedRate') + load_factor = sgqlc.types.Field(HavingFloatFilter, graphql_name='loadFactor') + percent_change = sgqlc.types.Field(HavingFloatFilter, graphql_name='percentChange') + account_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='accountStatementId') + + +class UtilityMeterStatementsHavingAverageInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'utility_account_id', 'utility_meter_id', 'meter_statement_id', 'bill_arrival_date', 'start_date', 'end_date', 'statement_year', 'statement_month', 'days_in_bill', 'account_statement_id', 'bill_cost', 'bill_demand', 'bill_demand_cost', 'bill_usage', 'bill_usage_cost', 'credits', 'fees', 'taxes') + facility_id = sgqlc.types.Field(HavingIntFilter, graphql_name='facilityId') + utility_account_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityAccountId') + utility_meter_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityMeterId') + meter_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='meterStatementId') + bill_arrival_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='billArrivalDate') + start_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='startDate') + end_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='endDate') + statement_year = sgqlc.types.Field(HavingIntFilter, graphql_name='statementYear') + statement_month = sgqlc.types.Field(HavingIntFilter, graphql_name='statementMonth') + days_in_bill = sgqlc.types.Field(HavingIntFilter, graphql_name='daysInBill') + account_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='accountStatementId') + bill_cost = sgqlc.types.Field('UtilityMeterStatementsHavingAverageUtilityMeterStatementsBillCostInput', graphql_name='billCost') + bill_demand = sgqlc.types.Field('UtilityMeterStatementsHavingAverageUtilityMeterStatementsBillDemandInput', graphql_name='billDemand') + bill_demand_cost = sgqlc.types.Field('UtilityMeterStatementsHavingAverageUtilityMeterStatementsBillDemandCostInput', graphql_name='billDemandCost') + bill_usage = sgqlc.types.Field('UtilityMeterStatementsHavingAverageUtilityMeterStatementsBillUsageInput', graphql_name='billUsage') + bill_usage_cost = sgqlc.types.Field('UtilityMeterStatementsHavingAverageUtilityMeterStatementsBillUsageCostInput', graphql_name='billUsageCost') + credits = sgqlc.types.Field('UtilityMeterStatementsHavingAverageUtilityMeterStatementsCreditsInput', graphql_name='credits') + fees = sgqlc.types.Field('UtilityMeterStatementsHavingAverageUtilityMeterStatementsFeesInput', graphql_name='fees') + taxes = sgqlc.types.Field('UtilityMeterStatementsHavingAverageUtilityMeterStatementsTaxesInput', graphql_name='taxes') + + +class UtilityMeterStatementsHavingAverageUtilityMeterStatementsBillCostInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingAverageUtilityMeterStatementsBillDemandCostInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingAverageUtilityMeterStatementsBillDemandInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingAverageUtilityMeterStatementsBillUsageCostInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingAverageUtilityMeterStatementsBillUsageInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingAverageUtilityMeterStatementsCreditsInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingAverageUtilityMeterStatementsFeesInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingAverageUtilityMeterStatementsTaxesInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingDistinctCountInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'utility_account_id', 'utility_meter_id', 'meter_statement_id', 'bill_arrival_date', 'start_date', 'end_date', 'statement_year', 'statement_month', 'days_in_bill', 'account_statement_id', 'bill_cost', 'bill_demand', 'bill_demand_cost', 'bill_usage', 'bill_usage_cost', 'credits', 'fees', 'taxes') + facility_id = sgqlc.types.Field(HavingIntFilter, graphql_name='facilityId') + utility_account_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityAccountId') + utility_meter_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityMeterId') + meter_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='meterStatementId') + bill_arrival_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='billArrivalDate') + start_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='startDate') + end_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='endDate') + statement_year = sgqlc.types.Field(HavingIntFilter, graphql_name='statementYear') + statement_month = sgqlc.types.Field(HavingIntFilter, graphql_name='statementMonth') + days_in_bill = sgqlc.types.Field(HavingIntFilter, graphql_name='daysInBill') + account_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='accountStatementId') + bill_cost = sgqlc.types.Field('UtilityMeterStatementsHavingDistinctCountUtilityMeterStatementsBillCostInput', graphql_name='billCost') + bill_demand = sgqlc.types.Field('UtilityMeterStatementsHavingDistinctCountUtilityMeterStatementsBillDemandInput', graphql_name='billDemand') + bill_demand_cost = sgqlc.types.Field('UtilityMeterStatementsHavingDistinctCountUtilityMeterStatementsBillDemandCostInput', graphql_name='billDemandCost') + bill_usage = sgqlc.types.Field('UtilityMeterStatementsHavingDistinctCountUtilityMeterStatementsBillUsageInput', graphql_name='billUsage') + bill_usage_cost = sgqlc.types.Field('UtilityMeterStatementsHavingDistinctCountUtilityMeterStatementsBillUsageCostInput', graphql_name='billUsageCost') + credits = sgqlc.types.Field('UtilityMeterStatementsHavingDistinctCountUtilityMeterStatementsCreditsInput', graphql_name='credits') + fees = sgqlc.types.Field('UtilityMeterStatementsHavingDistinctCountUtilityMeterStatementsFeesInput', graphql_name='fees') + taxes = sgqlc.types.Field('UtilityMeterStatementsHavingDistinctCountUtilityMeterStatementsTaxesInput', graphql_name='taxes') + + +class UtilityMeterStatementsHavingDistinctCountUtilityMeterStatementsBillCostInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingDistinctCountUtilityMeterStatementsBillDemandCostInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingDistinctCountUtilityMeterStatementsBillDemandInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingDistinctCountUtilityMeterStatementsBillUsageCostInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingDistinctCountUtilityMeterStatementsBillUsageInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingDistinctCountUtilityMeterStatementsCreditsInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingDistinctCountUtilityMeterStatementsFeesInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingDistinctCountUtilityMeterStatementsTaxesInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingDistinctInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'utility_account_id', 'utility_meter_id', 'meter_statement_id', 'bill_arrival_date', 'start_date', 'end_date', 'statement_year', 'statement_month', 'days_in_bill', 'account_statement_id', 'bill_cost', 'bill_demand', 'bill_demand_cost', 'bill_usage', 'bill_usage_cost', 'credits', 'fees', 'taxes') + facility_id = sgqlc.types.Field(HavingIntFilter, graphql_name='facilityId') + utility_account_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityAccountId') + utility_meter_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityMeterId') + meter_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='meterStatementId') + bill_arrival_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='billArrivalDate') + start_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='startDate') + end_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='endDate') + statement_year = sgqlc.types.Field(HavingIntFilter, graphql_name='statementYear') + statement_month = sgqlc.types.Field(HavingIntFilter, graphql_name='statementMonth') + days_in_bill = sgqlc.types.Field(HavingIntFilter, graphql_name='daysInBill') + account_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='accountStatementId') + bill_cost = sgqlc.types.Field('UtilityMeterStatementsHavingDistinctUtilityMeterStatementsBillCostInput', graphql_name='billCost') + bill_demand = sgqlc.types.Field('UtilityMeterStatementsHavingDistinctUtilityMeterStatementsBillDemandInput', graphql_name='billDemand') + bill_demand_cost = sgqlc.types.Field('UtilityMeterStatementsHavingDistinctUtilityMeterStatementsBillDemandCostInput', graphql_name='billDemandCost') + bill_usage = sgqlc.types.Field('UtilityMeterStatementsHavingDistinctUtilityMeterStatementsBillUsageInput', graphql_name='billUsage') + bill_usage_cost = sgqlc.types.Field('UtilityMeterStatementsHavingDistinctUtilityMeterStatementsBillUsageCostInput', graphql_name='billUsageCost') + credits = sgqlc.types.Field('UtilityMeterStatementsHavingDistinctUtilityMeterStatementsCreditsInput', graphql_name='credits') + fees = sgqlc.types.Field('UtilityMeterStatementsHavingDistinctUtilityMeterStatementsFeesInput', graphql_name='fees') + taxes = sgqlc.types.Field('UtilityMeterStatementsHavingDistinctUtilityMeterStatementsTaxesInput', graphql_name='taxes') + + +class UtilityMeterStatementsHavingDistinctUtilityMeterStatementsBillCostInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingDistinctUtilityMeterStatementsBillDemandCostInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingDistinctUtilityMeterStatementsBillDemandInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingDistinctUtilityMeterStatementsBillUsageCostInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingDistinctUtilityMeterStatementsBillUsageInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingDistinctUtilityMeterStatementsCreditsInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingDistinctUtilityMeterStatementsFeesInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingDistinctUtilityMeterStatementsTaxesInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('and_', 'or_', 'sum', 'distinct_count', 'min', 'max', 'average', 'stddev_sample', 'stddev_population', 'variance_sample', 'variance_population', 'distinct') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('UtilityMeterStatementsHavingInput')), graphql_name='AND') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('UtilityMeterStatementsHavingInput')), graphql_name='OR') + sum = sgqlc.types.Field('UtilityMeterStatementsHavingSumInput', graphql_name='sum') + distinct_count = sgqlc.types.Field(UtilityMeterStatementsHavingDistinctCountInput, graphql_name='distinctCount') + min = sgqlc.types.Field('UtilityMeterStatementsHavingMinInput', graphql_name='min') + max = sgqlc.types.Field('UtilityMeterStatementsHavingMaxInput', graphql_name='max') + average = sgqlc.types.Field(UtilityMeterStatementsHavingAverageInput, graphql_name='average') + stddev_sample = sgqlc.types.Field('UtilityMeterStatementsHavingStddevSampleInput', graphql_name='stddevSample') + stddev_population = sgqlc.types.Field('UtilityMeterStatementsHavingStddevPopulationInput', graphql_name='stddevPopulation') + variance_sample = sgqlc.types.Field('UtilityMeterStatementsHavingVarianceSampleInput', graphql_name='varianceSample') + variance_population = sgqlc.types.Field('UtilityMeterStatementsHavingVariancePopulationInput', graphql_name='variancePopulation') + distinct = sgqlc.types.Field(UtilityMeterStatementsHavingDistinctInput, graphql_name='distinct') + + +class UtilityMeterStatementsHavingMaxInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'utility_account_id', 'utility_meter_id', 'meter_statement_id', 'bill_arrival_date', 'start_date', 'end_date', 'statement_year', 'statement_month', 'days_in_bill', 'account_statement_id', 'bill_cost', 'bill_demand', 'bill_demand_cost', 'bill_usage', 'bill_usage_cost', 'credits', 'fees', 'taxes') + facility_id = sgqlc.types.Field(HavingIntFilter, graphql_name='facilityId') + utility_account_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityAccountId') + utility_meter_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityMeterId') + meter_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='meterStatementId') + bill_arrival_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='billArrivalDate') + start_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='startDate') + end_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='endDate') + statement_year = sgqlc.types.Field(HavingIntFilter, graphql_name='statementYear') + statement_month = sgqlc.types.Field(HavingIntFilter, graphql_name='statementMonth') + days_in_bill = sgqlc.types.Field(HavingIntFilter, graphql_name='daysInBill') + account_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='accountStatementId') + bill_cost = sgqlc.types.Field('UtilityMeterStatementsHavingMaxUtilityMeterStatementsBillCostInput', graphql_name='billCost') + bill_demand = sgqlc.types.Field('UtilityMeterStatementsHavingMaxUtilityMeterStatementsBillDemandInput', graphql_name='billDemand') + bill_demand_cost = sgqlc.types.Field('UtilityMeterStatementsHavingMaxUtilityMeterStatementsBillDemandCostInput', graphql_name='billDemandCost') + bill_usage = sgqlc.types.Field('UtilityMeterStatementsHavingMaxUtilityMeterStatementsBillUsageInput', graphql_name='billUsage') + bill_usage_cost = sgqlc.types.Field('UtilityMeterStatementsHavingMaxUtilityMeterStatementsBillUsageCostInput', graphql_name='billUsageCost') + credits = sgqlc.types.Field('UtilityMeterStatementsHavingMaxUtilityMeterStatementsCreditsInput', graphql_name='credits') + fees = sgqlc.types.Field('UtilityMeterStatementsHavingMaxUtilityMeterStatementsFeesInput', graphql_name='fees') + taxes = sgqlc.types.Field('UtilityMeterStatementsHavingMaxUtilityMeterStatementsTaxesInput', graphql_name='taxes') + + +class UtilityMeterStatementsHavingMaxUtilityMeterStatementsBillCostInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingMaxUtilityMeterStatementsBillDemandCostInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingMaxUtilityMeterStatementsBillDemandInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingMaxUtilityMeterStatementsBillUsageCostInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingMaxUtilityMeterStatementsBillUsageInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingMaxUtilityMeterStatementsCreditsInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingMaxUtilityMeterStatementsFeesInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingMaxUtilityMeterStatementsTaxesInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingMinInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'utility_account_id', 'utility_meter_id', 'meter_statement_id', 'bill_arrival_date', 'start_date', 'end_date', 'statement_year', 'statement_month', 'days_in_bill', 'account_statement_id', 'bill_cost', 'bill_demand', 'bill_demand_cost', 'bill_usage', 'bill_usage_cost', 'credits', 'fees', 'taxes') + facility_id = sgqlc.types.Field(HavingIntFilter, graphql_name='facilityId') + utility_account_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityAccountId') + utility_meter_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityMeterId') + meter_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='meterStatementId') + bill_arrival_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='billArrivalDate') + start_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='startDate') + end_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='endDate') + statement_year = sgqlc.types.Field(HavingIntFilter, graphql_name='statementYear') + statement_month = sgqlc.types.Field(HavingIntFilter, graphql_name='statementMonth') + days_in_bill = sgqlc.types.Field(HavingIntFilter, graphql_name='daysInBill') + account_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='accountStatementId') + bill_cost = sgqlc.types.Field('UtilityMeterStatementsHavingMinUtilityMeterStatementsBillCostInput', graphql_name='billCost') + bill_demand = sgqlc.types.Field('UtilityMeterStatementsHavingMinUtilityMeterStatementsBillDemandInput', graphql_name='billDemand') + bill_demand_cost = sgqlc.types.Field('UtilityMeterStatementsHavingMinUtilityMeterStatementsBillDemandCostInput', graphql_name='billDemandCost') + bill_usage = sgqlc.types.Field('UtilityMeterStatementsHavingMinUtilityMeterStatementsBillUsageInput', graphql_name='billUsage') + bill_usage_cost = sgqlc.types.Field('UtilityMeterStatementsHavingMinUtilityMeterStatementsBillUsageCostInput', graphql_name='billUsageCost') + credits = sgqlc.types.Field('UtilityMeterStatementsHavingMinUtilityMeterStatementsCreditsInput', graphql_name='credits') + fees = sgqlc.types.Field('UtilityMeterStatementsHavingMinUtilityMeterStatementsFeesInput', graphql_name='fees') + taxes = sgqlc.types.Field('UtilityMeterStatementsHavingMinUtilityMeterStatementsTaxesInput', graphql_name='taxes') + + +class UtilityMeterStatementsHavingMinUtilityMeterStatementsBillCostInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingMinUtilityMeterStatementsBillDemandCostInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingMinUtilityMeterStatementsBillDemandInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingMinUtilityMeterStatementsBillUsageCostInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingMinUtilityMeterStatementsBillUsageInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingMinUtilityMeterStatementsCreditsInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingMinUtilityMeterStatementsFeesInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingMinUtilityMeterStatementsTaxesInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingStddevPopulationInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'utility_account_id', 'utility_meter_id', 'meter_statement_id', 'bill_arrival_date', 'start_date', 'end_date', 'statement_year', 'statement_month', 'days_in_bill', 'account_statement_id', 'bill_cost', 'bill_demand', 'bill_demand_cost', 'bill_usage', 'bill_usage_cost', 'credits', 'fees', 'taxes') + facility_id = sgqlc.types.Field(HavingIntFilter, graphql_name='facilityId') + utility_account_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityAccountId') + utility_meter_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityMeterId') + meter_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='meterStatementId') + bill_arrival_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='billArrivalDate') + start_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='startDate') + end_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='endDate') + statement_year = sgqlc.types.Field(HavingIntFilter, graphql_name='statementYear') + statement_month = sgqlc.types.Field(HavingIntFilter, graphql_name='statementMonth') + days_in_bill = sgqlc.types.Field(HavingIntFilter, graphql_name='daysInBill') + account_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='accountStatementId') + bill_cost = sgqlc.types.Field('UtilityMeterStatementsHavingStddevPopulationUtilityMeterStatementsBillCostInput', graphql_name='billCost') + bill_demand = sgqlc.types.Field('UtilityMeterStatementsHavingStddevPopulationUtilityMeterStatementsBillDemandInput', graphql_name='billDemand') + bill_demand_cost = sgqlc.types.Field('UtilityMeterStatementsHavingStddevPopulationUtilityMeterStatementsBillDemandCostInput', graphql_name='billDemandCost') + bill_usage = sgqlc.types.Field('UtilityMeterStatementsHavingStddevPopulationUtilityMeterStatementsBillUsageInput', graphql_name='billUsage') + bill_usage_cost = sgqlc.types.Field('UtilityMeterStatementsHavingStddevPopulationUtilityMeterStatementsBillUsageCostInput', graphql_name='billUsageCost') + credits = sgqlc.types.Field('UtilityMeterStatementsHavingStddevPopulationUtilityMeterStatementsCreditsInput', graphql_name='credits') + fees = sgqlc.types.Field('UtilityMeterStatementsHavingStddevPopulationUtilityMeterStatementsFeesInput', graphql_name='fees') + taxes = sgqlc.types.Field('UtilityMeterStatementsHavingStddevPopulationUtilityMeterStatementsTaxesInput', graphql_name='taxes') + + +class UtilityMeterStatementsHavingStddevPopulationUtilityMeterStatementsBillCostInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingStddevPopulationUtilityMeterStatementsBillDemandCostInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingStddevPopulationUtilityMeterStatementsBillDemandInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingStddevPopulationUtilityMeterStatementsBillUsageCostInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingStddevPopulationUtilityMeterStatementsBillUsageInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingStddevPopulationUtilityMeterStatementsCreditsInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingStddevPopulationUtilityMeterStatementsFeesInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingStddevPopulationUtilityMeterStatementsTaxesInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingStddevSampleInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'utility_account_id', 'utility_meter_id', 'meter_statement_id', 'bill_arrival_date', 'start_date', 'end_date', 'statement_year', 'statement_month', 'days_in_bill', 'account_statement_id', 'bill_cost', 'bill_demand', 'bill_demand_cost', 'bill_usage', 'bill_usage_cost', 'credits', 'fees', 'taxes') + facility_id = sgqlc.types.Field(HavingIntFilter, graphql_name='facilityId') + utility_account_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityAccountId') + utility_meter_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityMeterId') + meter_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='meterStatementId') + bill_arrival_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='billArrivalDate') + start_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='startDate') + end_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='endDate') + statement_year = sgqlc.types.Field(HavingIntFilter, graphql_name='statementYear') + statement_month = sgqlc.types.Field(HavingIntFilter, graphql_name='statementMonth') + days_in_bill = sgqlc.types.Field(HavingIntFilter, graphql_name='daysInBill') + account_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='accountStatementId') + bill_cost = sgqlc.types.Field('UtilityMeterStatementsHavingStddevSampleUtilityMeterStatementsBillCostInput', graphql_name='billCost') + bill_demand = sgqlc.types.Field('UtilityMeterStatementsHavingStddevSampleUtilityMeterStatementsBillDemandInput', graphql_name='billDemand') + bill_demand_cost = sgqlc.types.Field('UtilityMeterStatementsHavingStddevSampleUtilityMeterStatementsBillDemandCostInput', graphql_name='billDemandCost') + bill_usage = sgqlc.types.Field('UtilityMeterStatementsHavingStddevSampleUtilityMeterStatementsBillUsageInput', graphql_name='billUsage') + bill_usage_cost = sgqlc.types.Field('UtilityMeterStatementsHavingStddevSampleUtilityMeterStatementsBillUsageCostInput', graphql_name='billUsageCost') + credits = sgqlc.types.Field('UtilityMeterStatementsHavingStddevSampleUtilityMeterStatementsCreditsInput', graphql_name='credits') + fees = sgqlc.types.Field('UtilityMeterStatementsHavingStddevSampleUtilityMeterStatementsFeesInput', graphql_name='fees') + taxes = sgqlc.types.Field('UtilityMeterStatementsHavingStddevSampleUtilityMeterStatementsTaxesInput', graphql_name='taxes') + + +class UtilityMeterStatementsHavingStddevSampleUtilityMeterStatementsBillCostInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingStddevSampleUtilityMeterStatementsBillDemandCostInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingStddevSampleUtilityMeterStatementsBillDemandInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingStddevSampleUtilityMeterStatementsBillUsageCostInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingStddevSampleUtilityMeterStatementsBillUsageInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingStddevSampleUtilityMeterStatementsCreditsInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingStddevSampleUtilityMeterStatementsFeesInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingStddevSampleUtilityMeterStatementsTaxesInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingSumInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'utility_account_id', 'utility_meter_id', 'meter_statement_id', 'bill_arrival_date', 'start_date', 'end_date', 'statement_year', 'statement_month', 'days_in_bill', 'account_statement_id', 'bill_cost', 'bill_demand', 'bill_demand_cost', 'bill_usage', 'bill_usage_cost', 'credits', 'fees', 'taxes') + facility_id = sgqlc.types.Field(HavingIntFilter, graphql_name='facilityId') + utility_account_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityAccountId') + utility_meter_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityMeterId') + meter_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='meterStatementId') + bill_arrival_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='billArrivalDate') + start_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='startDate') + end_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='endDate') + statement_year = sgqlc.types.Field(HavingIntFilter, graphql_name='statementYear') + statement_month = sgqlc.types.Field(HavingIntFilter, graphql_name='statementMonth') + days_in_bill = sgqlc.types.Field(HavingIntFilter, graphql_name='daysInBill') + account_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='accountStatementId') + bill_cost = sgqlc.types.Field('UtilityMeterStatementsHavingSumUtilityMeterStatementsBillCostInput', graphql_name='billCost') + bill_demand = sgqlc.types.Field('UtilityMeterStatementsHavingSumUtilityMeterStatementsBillDemandInput', graphql_name='billDemand') + bill_demand_cost = sgqlc.types.Field('UtilityMeterStatementsHavingSumUtilityMeterStatementsBillDemandCostInput', graphql_name='billDemandCost') + bill_usage = sgqlc.types.Field('UtilityMeterStatementsHavingSumUtilityMeterStatementsBillUsageInput', graphql_name='billUsage') + bill_usage_cost = sgqlc.types.Field('UtilityMeterStatementsHavingSumUtilityMeterStatementsBillUsageCostInput', graphql_name='billUsageCost') + credits = sgqlc.types.Field('UtilityMeterStatementsHavingSumUtilityMeterStatementsCreditsInput', graphql_name='credits') + fees = sgqlc.types.Field('UtilityMeterStatementsHavingSumUtilityMeterStatementsFeesInput', graphql_name='fees') + taxes = sgqlc.types.Field('UtilityMeterStatementsHavingSumUtilityMeterStatementsTaxesInput', graphql_name='taxes') + + +class UtilityMeterStatementsHavingSumUtilityMeterStatementsBillCostInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingSumUtilityMeterStatementsBillDemandCostInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingSumUtilityMeterStatementsBillDemandInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingSumUtilityMeterStatementsBillUsageCostInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingSumUtilityMeterStatementsBillUsageInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingSumUtilityMeterStatementsCreditsInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingSumUtilityMeterStatementsFeesInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingSumUtilityMeterStatementsTaxesInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingVariancePopulationInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'utility_account_id', 'utility_meter_id', 'meter_statement_id', 'bill_arrival_date', 'start_date', 'end_date', 'statement_year', 'statement_month', 'days_in_bill', 'account_statement_id', 'bill_cost', 'bill_demand', 'bill_demand_cost', 'bill_usage', 'bill_usage_cost', 'credits', 'fees', 'taxes') + facility_id = sgqlc.types.Field(HavingIntFilter, graphql_name='facilityId') + utility_account_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityAccountId') + utility_meter_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityMeterId') + meter_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='meterStatementId') + bill_arrival_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='billArrivalDate') + start_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='startDate') + end_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='endDate') + statement_year = sgqlc.types.Field(HavingIntFilter, graphql_name='statementYear') + statement_month = sgqlc.types.Field(HavingIntFilter, graphql_name='statementMonth') + days_in_bill = sgqlc.types.Field(HavingIntFilter, graphql_name='daysInBill') + account_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='accountStatementId') + bill_cost = sgqlc.types.Field('UtilityMeterStatementsHavingVariancePopulationUtilityMeterStatementsBillCostInput', graphql_name='billCost') + bill_demand = sgqlc.types.Field('UtilityMeterStatementsHavingVariancePopulationUtilityMeterStatementsBillDemandInput', graphql_name='billDemand') + bill_demand_cost = sgqlc.types.Field('UtilityMeterStatementsHavingVariancePopulationUtilityMeterStatementsBillDemandCostInput', graphql_name='billDemandCost') + bill_usage = sgqlc.types.Field('UtilityMeterStatementsHavingVariancePopulationUtilityMeterStatementsBillUsageInput', graphql_name='billUsage') + bill_usage_cost = sgqlc.types.Field('UtilityMeterStatementsHavingVariancePopulationUtilityMeterStatementsBillUsageCostInput', graphql_name='billUsageCost') + credits = sgqlc.types.Field('UtilityMeterStatementsHavingVariancePopulationUtilityMeterStatementsCreditsInput', graphql_name='credits') + fees = sgqlc.types.Field('UtilityMeterStatementsHavingVariancePopulationUtilityMeterStatementsFeesInput', graphql_name='fees') + taxes = sgqlc.types.Field('UtilityMeterStatementsHavingVariancePopulationUtilityMeterStatementsTaxesInput', graphql_name='taxes') + + +class UtilityMeterStatementsHavingVariancePopulationUtilityMeterStatementsBillCostInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingVariancePopulationUtilityMeterStatementsBillDemandCostInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingVariancePopulationUtilityMeterStatementsBillDemandInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingVariancePopulationUtilityMeterStatementsBillUsageCostInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingVariancePopulationUtilityMeterStatementsBillUsageInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingVariancePopulationUtilityMeterStatementsCreditsInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingVariancePopulationUtilityMeterStatementsFeesInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingVariancePopulationUtilityMeterStatementsTaxesInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingVarianceSampleInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'utility_account_id', 'utility_meter_id', 'meter_statement_id', 'bill_arrival_date', 'start_date', 'end_date', 'statement_year', 'statement_month', 'days_in_bill', 'account_statement_id', 'bill_cost', 'bill_demand', 'bill_demand_cost', 'bill_usage', 'bill_usage_cost', 'credits', 'fees', 'taxes') + facility_id = sgqlc.types.Field(HavingIntFilter, graphql_name='facilityId') + utility_account_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityAccountId') + utility_meter_id = sgqlc.types.Field(HavingIntFilter, graphql_name='utilityMeterId') + meter_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='meterStatementId') + bill_arrival_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='billArrivalDate') + start_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='startDate') + end_date = sgqlc.types.Field(HavingDatetimeFilter, graphql_name='endDate') + statement_year = sgqlc.types.Field(HavingIntFilter, graphql_name='statementYear') + statement_month = sgqlc.types.Field(HavingIntFilter, graphql_name='statementMonth') + days_in_bill = sgqlc.types.Field(HavingIntFilter, graphql_name='daysInBill') + account_statement_id = sgqlc.types.Field(HavingIntFilter, graphql_name='accountStatementId') + bill_cost = sgqlc.types.Field('UtilityMeterStatementsHavingVarianceSampleUtilityMeterStatementsBillCostInput', graphql_name='billCost') + bill_demand = sgqlc.types.Field('UtilityMeterStatementsHavingVarianceSampleUtilityMeterStatementsBillDemandInput', graphql_name='billDemand') + bill_demand_cost = sgqlc.types.Field('UtilityMeterStatementsHavingVarianceSampleUtilityMeterStatementsBillDemandCostInput', graphql_name='billDemandCost') + bill_usage = sgqlc.types.Field('UtilityMeterStatementsHavingVarianceSampleUtilityMeterStatementsBillUsageInput', graphql_name='billUsage') + bill_usage_cost = sgqlc.types.Field('UtilityMeterStatementsHavingVarianceSampleUtilityMeterStatementsBillUsageCostInput', graphql_name='billUsageCost') + credits = sgqlc.types.Field('UtilityMeterStatementsHavingVarianceSampleUtilityMeterStatementsCreditsInput', graphql_name='credits') + fees = sgqlc.types.Field('UtilityMeterStatementsHavingVarianceSampleUtilityMeterStatementsFeesInput', graphql_name='fees') + taxes = sgqlc.types.Field('UtilityMeterStatementsHavingVarianceSampleUtilityMeterStatementsTaxesInput', graphql_name='taxes') + + +class UtilityMeterStatementsHavingVarianceSampleUtilityMeterStatementsBillCostInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingVarianceSampleUtilityMeterStatementsBillDemandCostInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingVarianceSampleUtilityMeterStatementsBillDemandInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingVarianceSampleUtilityMeterStatementsBillUsageCostInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingVarianceSampleUtilityMeterStatementsBillUsageInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingVarianceSampleUtilityMeterStatementsCreditsInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingVarianceSampleUtilityMeterStatementsFeesInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterStatementsHavingVarianceSampleUtilityMeterStatementsTaxesInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('filter',) + filter = sgqlc.types.Field(HavingFloatFilter, graphql_name='filter') + + +class UtilityMeterUsageCategoryFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('is_null', 'equal_to', 'not_equal_to', 'distinct_from', 'not_distinct_from', 'in_', 'not_in', 'less_than', 'less_than_or_equal_to', 'greater_than', 'greater_than_or_equal_to') + is_null = sgqlc.types.Field(Boolean, graphql_name='isNull') + equal_to = sgqlc.types.Field(UtilityMeterUsageCategory, graphql_name='equalTo') + not_equal_to = sgqlc.types.Field(UtilityMeterUsageCategory, graphql_name='notEqualTo') + distinct_from = sgqlc.types.Field(UtilityMeterUsageCategory, graphql_name='distinctFrom') + not_distinct_from = sgqlc.types.Field(UtilityMeterUsageCategory, graphql_name='notDistinctFrom') + in_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMeterUsageCategory)), graphql_name='in') + not_in = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMeterUsageCategory)), graphql_name='notIn') + less_than = sgqlc.types.Field(UtilityMeterUsageCategory, graphql_name='lessThan') + less_than_or_equal_to = sgqlc.types.Field(UtilityMeterUsageCategory, graphql_name='lessThanOrEqualTo') + greater_than = sgqlc.types.Field(UtilityMeterUsageCategory, graphql_name='greaterThan') + greater_than_or_equal_to = sgqlc.types.Field(UtilityMeterUsageCategory, graphql_name='greaterThanOrEqualTo') + + +class UtilityMetersMissingStatementsRecordFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('statement_date', 'statement_year', 'statement_month', 'utility_meter_id', 'facility_id', 'and_', 'or_', 'not_') + statement_date = sgqlc.types.Field(DateFilter, graphql_name='statementDate') + statement_year = sgqlc.types.Field(IntFilter, graphql_name='statementYear') + statement_month = sgqlc.types.Field(IntFilter, graphql_name='statementMonth') + utility_meter_id = sgqlc.types.Field(IntFilter, graphql_name='utilityMeterId') + facility_id = sgqlc.types.Field(IntFilter, graphql_name='facilityId') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('UtilityMetersMissingStatementsRecordFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('UtilityMetersMissingStatementsRecordFilter')), graphql_name='or') + not_ = sgqlc.types.Field('UtilityMetersMissingStatementsRecordFilter', graphql_name='not') + + +class UtilityProviderCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'name', 'created_at', 'updated_at') + id = sgqlc.types.Field(Int, graphql_name='id') + name = sgqlc.types.Field(String, graphql_name='name') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') + + +class UtilityProviderFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'name', 'created_at', 'updated_at', 'and_', 'or_', 'not_') + id = sgqlc.types.Field(IntFilter, graphql_name='id') + name = sgqlc.types.Field(StringFilter, graphql_name='name') + created_at = sgqlc.types.Field(DatetimeFilter, graphql_name='createdAt') + updated_at = sgqlc.types.Field(DatetimeFilter, graphql_name='updatedAt') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('UtilityProviderFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('UtilityProviderFilter')), graphql_name='or') + not_ = sgqlc.types.Field('UtilityProviderFilter', graphql_name='not') + + +class UtilityProviderInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'name') + id = sgqlc.types.Field(Int, graphql_name='id') + name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') + + +class UtilityProviderPatch(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('name',) + name = sgqlc.types.Field(String, graphql_name='name') + + +class VendorUserCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id', 'email', 'first_name', 'last_name', 'company', 'created_at', 'updated_at') + id = sgqlc.types.Field(Int, graphql_name='id') + email = sgqlc.types.Field(String, graphql_name='email') + first_name = sgqlc.types.Field(String, graphql_name='firstName') + last_name = sgqlc.types.Field(String, graphql_name='lastName') + company = sgqlc.types.Field(String, graphql_name='company') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') + + +class VendorUserFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('can_write', 'id', 'email', 'first_name', 'last_name', 'company', 'created_at', 'updated_at', 'and_', 'or_', 'not_') + can_write = sgqlc.types.Field(PermissionBooleanFilter, graphql_name='canWrite') + id = sgqlc.types.Field(IntFilter, graphql_name='id') + email = sgqlc.types.Field(StringFilter, graphql_name='email') + first_name = sgqlc.types.Field(StringFilter, graphql_name='firstName') + last_name = sgqlc.types.Field(StringFilter, graphql_name='lastName') + company = sgqlc.types.Field(StringFilter, graphql_name='company') + created_at = sgqlc.types.Field(DatetimeFilter, graphql_name='createdAt') + updated_at = sgqlc.types.Field(DatetimeFilter, graphql_name='updatedAt') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('VendorUserFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('VendorUserFilter')), graphql_name='or') + not_ = sgqlc.types.Field('VendorUserFilter', graphql_name='not') + + +class VendorUserInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('email', 'first_name', 'last_name', 'company') + email = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='email') + first_name = sgqlc.types.Field(String, graphql_name='firstName') + last_name = sgqlc.types.Field(String, graphql_name='lastName') + company = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='company') + + +class VendorUserMachineUserInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('vendor_user_id', 'machine_user_id') + vendor_user_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='vendorUserId') + machine_user_id = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='machineUserId') + + +class VendorUserMachineUserPatch(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('vendor_user_id', 'machine_user_id') + vendor_user_id = sgqlc.types.Field(Int, graphql_name='vendorUserId') + machine_user_id = sgqlc.types.Field(BigInt, graphql_name='machineUserId') + + +class VendorUserPatch(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('email', 'first_name', 'last_name', 'company') + email = sgqlc.types.Field(String, graphql_name='email') + first_name = sgqlc.types.Field(String, graphql_name='firstName') + last_name = sgqlc.types.Field(String, graphql_name='lastName') + company = sgqlc.types.Field(String, graphql_name='company') + + +class VerifyPhoneNumberInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('phone_number', 'client_mutation_id') + phone_number = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='phoneNumber') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + + +class VirtualPointIntervalCondition(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('parent_id', 'child_id', 'start_time', 'end_time') + parent_id = sgqlc.types.Field(BigInt, graphql_name='parentId') + child_id = sgqlc.types.Field(BigInt, graphql_name='childId') + start_time = sgqlc.types.Field(Datetime, graphql_name='startTime') + end_time = sgqlc.types.Field(Datetime, graphql_name='endTime') + + +class VirtualPointIntervalFilter(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('parent_id', 'child_id', 'start_time', 'end_time', 'and_', 'or_', 'not_') + parent_id = sgqlc.types.Field(BigIntFilter, graphql_name='parentId') + child_id = sgqlc.types.Field(BigIntFilter, graphql_name='childId') + start_time = sgqlc.types.Field(DatetimeFilter, graphql_name='startTime') + end_time = sgqlc.types.Field(DatetimeFilter, graphql_name='endTime') + and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('VirtualPointIntervalFilter')), graphql_name='and') + or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('VirtualPointIntervalFilter')), graphql_name='or') + not_ = sgqlc.types.Field('VirtualPointIntervalFilter', graphql_name='not') + + +class VirtualPointIntervalInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('parent_id', 'child_id', 'start_time', 'end_time', 'data_point') + parent_id = sgqlc.types.Field(BigInt, graphql_name='parentId') + child_id = sgqlc.types.Field(BigInt, graphql_name='childId') + start_time = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='startTime') + end_time = sgqlc.types.Field(Datetime, graphql_name='endTime') + data_point = sgqlc.types.Field(DataPointInput, graphql_name='dataPoint') + + +class VirtualPointIntervalPatch(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('parent_id', 'child_id', 'start_time', 'end_time') + parent_id = sgqlc.types.Field(BigInt, graphql_name='parentId') + child_id = sgqlc.types.Field(BigInt, graphql_name='childId') + start_time = sgqlc.types.Field(Datetime, graphql_name='startTime') + end_time = sgqlc.types.Field(Datetime, graphql_name='endTime') + + +class WithdrawSuggestionInput(sgqlc.types.Input): + __schema__ = nionic_schema + __field_names__ = ('id',) + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + + + +######################################################################## +# Output Objects and Interfaces +######################################################################## +class Asset(sgqlc.types.Interface): + __schema__ = nionic_schema + __field_names__ = ('node_id',) + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + + +class CreateAccessTokenPayload(sgqlc.types.Interface): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'access_key', 'token') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + access_key = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='accessKey') + token = sgqlc.types.Field(sgqlc.types.non_null('PlatformAccessToken'), graphql_name='token') + + +class GeometryGeometry(sgqlc.types.Interface): + __schema__ = nionic_schema + __field_names__ = ('geojson', 'srid') + geojson = sgqlc.types.Field(GeoJSON, graphql_name='geojson') + srid = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='srid') + + +class GeometryGeometryM(sgqlc.types.Interface): + __schema__ = nionic_schema + __field_names__ = ('geojson', 'srid') + geojson = sgqlc.types.Field(GeoJSON, graphql_name='geojson') + srid = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='srid') + + +class GeometryGeometryZ(sgqlc.types.Interface): + __schema__ = nionic_schema + __field_names__ = ('geojson', 'srid') + geojson = sgqlc.types.Field(GeoJSON, graphql_name='geojson') + srid = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='srid') + + +class GeometryGeometryZM(sgqlc.types.Interface): + __schema__ = nionic_schema + __field_names__ = ('geojson', 'srid') + geojson = sgqlc.types.Field(GeoJSON, graphql_name='geojson') + srid = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='srid') + + +class GeometryInterface(sgqlc.types.Interface): + __schema__ = nionic_schema + __field_names__ = ('geojson', 'srid') + geojson = sgqlc.types.Field(GeoJSON, graphql_name='geojson') + srid = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='srid') + + +class Identity(sgqlc.types.Interface): + __schema__ = nionic_schema + __field_names__ = ('id', 'type', 'authorization_type') + id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='id') + type = sgqlc.types.Field(sgqlc.types.non_null(AccessTokenType), graphql_name='type') + authorization_type = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='authorizationType') + + +class Node(sgqlc.types.Interface): + __schema__ = nionic_schema + __field_names__ = ('node_id',) + node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') + + +class AccountChargesConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('AccountCharge'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('AccountChargesEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class AccountChargesEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('AccountCharge'), graphql_name='node') + + +class AccountMissingStatement(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('utility_account_id', 'statement_date', 'statement_year', 'statement_month', 'metadata', 'utility_meters') + utility_account_id = sgqlc.types.Field(Int, graphql_name='utilityAccountId') + statement_date = sgqlc.types.Field(Date, graphql_name='statementDate') + statement_year = sgqlc.types.Field(Int, graphql_name='statementYear') + statement_month = sgqlc.types.Field(Int, graphql_name='statementMonth') + metadata = sgqlc.types.Field(sgqlc.types.list_of(JSON), graphql_name='metadata') + utility_meters = sgqlc.types.Field(sgqlc.types.non_null('UtilityMetersConnection'), graphql_name='utilityMeters', args=sgqlc.types.ArgDict(( + ('facility_id', sgqlc.types.Arg(Int, graphql_name='facilityId', default=None)), + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('filter', sgqlc.types.Arg(UtilityMeterFilter, graphql_name='filter', default=None)), +)) + ) + + +class AccountMissingStatementsConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(AccountMissingStatement))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('AccountMissingStatementsEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class AccountMissingStatementsEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null(AccountMissingStatement), graphql_name='node') + + +class AccountStatementFacilitiesByUtilityMeterStatementAccountStatementIdAndFacilityIdManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count', 'aggregates', 'grouped_aggregates', 'metric_data') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('Facility'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('AccountStatementFacilitiesByUtilityMeterStatementAccountStatementIdAndFacilityIdManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + aggregates = sgqlc.types.Field('FacilityAggregates', graphql_name='aggregates') + grouped_aggregates = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('FacilityAggregates')), graphql_name='groupedAggregates', args=sgqlc.types.ArgDict(( + ('group_by', sgqlc.types.Arg(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(FacilitiesGroupBy))), graphql_name='groupBy', default=None)), + ('having', sgqlc.types.Arg(FacilitiesHavingInput, graphql_name='having', default=None)), +)) + ) + metric_data = sgqlc.types.Field('MetricDataConnection', graphql_name='metricData', args=sgqlc.types.ArgDict(( + ('label', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='label', default=None)), + ('from_', sgqlc.types.Arg(String, graphql_name='from', default=None)), + ('to', sgqlc.types.Arg(String, graphql_name='to', default=None)), + ('aggregation', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataAggregationMethod), graphql_name='aggregation', default='SUM')), + ('window', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='window', default='1 day')), + ('sampling_window', sgqlc.types.Arg(String, graphql_name='samplingWindow', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataOrderBy), graphql_name='orderBy', default='TIME_ASC')), + ('unit', sgqlc.types.Arg(String, graphql_name='unit', default=None)), + ('unit_group', sgqlc.types.Arg(String, graphql_name='unitGroup', default=None)), +)) + ) + + +class AccountStatementFacilitiesByUtilityMeterStatementAccountStatementIdAndFacilityIdManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'utility_meter_statements') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('Facility'), graphql_name='node') + utility_meter_statements = sgqlc.types.Field(sgqlc.types.non_null('UtilityMeterStatementsConnection'), graphql_name='utilityMeterStatements', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMeterStatementsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityMeterStatementCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityMeterStatementFilter, graphql_name='filter', default=None)), +)) + ) + + +class AccountStatementHistoriesConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('AccountStatementHistory'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('AccountStatementHistoriesEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class AccountStatementHistoriesEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('AccountStatementHistory'), graphql_name='node') + + +class AccountStatementHistory(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('account_statement_id', 'description', 'created_at', 'account_statement') + account_statement_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='accountStatementId') + description = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='description') + created_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='createdAt') + account_statement = sgqlc.types.Field('AccountStatement', graphql_name='accountStatement') + + +class AccountStatementUtilityAccountsByUtilityMeterStatementAccountStatementIdAndUtilityAccountIdManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UtilityAccount'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('AccountStatementUtilityAccountsByUtilityMeterStatementAccountStatementIdAndUtilityAccountIdManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class AccountStatementUtilityAccountsByUtilityMeterStatementAccountStatementIdAndUtilityAccountIdManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'utility_meter_statements') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('UtilityAccount'), graphql_name='node') + utility_meter_statements = sgqlc.types.Field(sgqlc.types.non_null('UtilityMeterStatementsConnection'), graphql_name='utilityMeterStatements', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMeterStatementsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityMeterStatementCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityMeterStatementFilter, graphql_name='filter', default=None)), +)) + ) + + +class AccountStatementUtilityMetersByMeterStatementAccountStatementIdAndUtilityMeterIdManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UtilityMeter'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('AccountStatementUtilityMetersByMeterStatementAccountStatementIdAndUtilityMeterIdManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class AccountStatementUtilityMetersByMeterStatementAccountStatementIdAndUtilityMeterIdManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'meter_statements') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('UtilityMeter'), graphql_name='node') + meter_statements = sgqlc.types.Field(sgqlc.types.non_null('MeterStatementsConnection'), graphql_name='meterStatements', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(MeterStatementsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(MeterStatementCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(MeterStatementFilter, graphql_name='filter', default=None)), +)) + ) + + +class AccountStatementUtilityMetersByUtilityMeterStatementAccountStatementIdAndUtilityMeterIdManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UtilityMeter'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('AccountStatementUtilityMetersByUtilityMeterStatementAccountStatementIdAndUtilityMeterIdManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class AccountStatementUtilityMetersByUtilityMeterStatementAccountStatementIdAndUtilityMeterIdManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'utility_meter_statements') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('UtilityMeter'), graphql_name='node') + utility_meter_statements = sgqlc.types.Field(sgqlc.types.non_null('UtilityMeterStatementsConnection'), graphql_name='utilityMeterStatements', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMeterStatementsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityMeterStatementCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityMeterStatementFilter, graphql_name='filter', default=None)), +)) + ) + + +class AccountStatementsConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('AccountStatement'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('AccountStatementsEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class AccountStatementsEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('AccountStatement'), graphql_name='node') + + +class Actor(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('type', 'display_name', 'id', 'machine_user', 'user') + type = sgqlc.types.Field(AccessTokenType, graphql_name='type') + display_name = sgqlc.types.Field(String, graphql_name='displayName') + id = sgqlc.types.Field(String, graphql_name='id') + machine_user = sgqlc.types.Field('MachineUser', graphql_name='machineUser') + user = sgqlc.types.Field('User', graphql_name='user') + + +class AddFavoriteFacilityPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'user', 'query', 'user_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + user = sgqlc.types.Field('User', graphql_name='user') + query = sgqlc.types.Field('Query', graphql_name='query') + user_edge = sgqlc.types.Field('UsersEdge', graphql_name='userEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UsersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class AddMetricMetadataDependencyPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'metric_metadata', 'query') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + metric_metadata = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('MetricMetadatum')), graphql_name='metricMetadata') + query = sgqlc.types.Field('Query', graphql_name='query') + + +class AddProjectControllerPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'project', 'user') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + project = sgqlc.types.Field(sgqlc.types.non_null('Project'), graphql_name='project') + user = sgqlc.types.Field(sgqlc.types.non_null('User'), graphql_name='user') + + +class BalancingAuthoritiesConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('BalancingAuthority'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('BalancingAuthoritiesEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class BalancingAuthoritiesEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('BalancingAuthority'), graphql_name='node') + + +class BuildingAreaTypeFacilitiesByBuildingAreaBuildingAreaTypeIdAndFacilityIdManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count', 'aggregates', 'grouped_aggregates', 'metric_data') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('Facility'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('BuildingAreaTypeFacilitiesByBuildingAreaBuildingAreaTypeIdAndFacilityIdManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + aggregates = sgqlc.types.Field('FacilityAggregates', graphql_name='aggregates') + grouped_aggregates = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('FacilityAggregates')), graphql_name='groupedAggregates', args=sgqlc.types.ArgDict(( + ('group_by', sgqlc.types.Arg(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(FacilitiesGroupBy))), graphql_name='groupBy', default=None)), + ('having', sgqlc.types.Arg(FacilitiesHavingInput, graphql_name='having', default=None)), +)) + ) + metric_data = sgqlc.types.Field('MetricDataConnection', graphql_name='metricData', args=sgqlc.types.ArgDict(( + ('label', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='label', default=None)), + ('from_', sgqlc.types.Arg(String, graphql_name='from', default=None)), + ('to', sgqlc.types.Arg(String, graphql_name='to', default=None)), + ('aggregation', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataAggregationMethod), graphql_name='aggregation', default='SUM')), + ('window', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='window', default='1 day')), + ('sampling_window', sgqlc.types.Arg(String, graphql_name='samplingWindow', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataOrderBy), graphql_name='orderBy', default='TIME_ASC')), + ('unit', sgqlc.types.Arg(String, graphql_name='unit', default=None)), + ('unit_group', sgqlc.types.Arg(String, graphql_name='unitGroup', default=None)), +)) + ) + + +class BuildingAreaTypeFacilitiesByBuildingAreaBuildingAreaTypeIdAndFacilityIdManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'building_areas') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('Facility'), graphql_name='node') + building_areas = sgqlc.types.Field(sgqlc.types.non_null('BuildingAreasConnection'), graphql_name='buildingAreas', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(BuildingAreasOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(BuildingAreaCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(BuildingAreaFilter, graphql_name='filter', default=None)), +)) + ) + + +class BuildingAreaTypesConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('BuildingAreaType'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('BuildingAreaTypesEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class BuildingAreaTypesEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('BuildingAreaType'), graphql_name='node') + + +class BuildingAreasConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('BuildingArea'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('BuildingAreasEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class BuildingAreasEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('BuildingArea'), graphql_name='node') + + +class ClearFacilityCommunicationPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'boolean', 'query') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + boolean = sgqlc.types.Field(Boolean, graphql_name='boolean') + query = sgqlc.types.Field('Query', graphql_name='query') + + +class ComponentPermissions(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('can_write',) + can_write = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='canWrite') + + +class ComponentProjectsManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count', 'savings_event_data') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('Project'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ComponentProjectsManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + savings_event_data = sgqlc.types.Field('MetricDataConnection', graphql_name='savingsEventData', args=sgqlc.types.ArgDict(( + ('label', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='label', default=None)), + ('from_', sgqlc.types.Arg(String, graphql_name='from', default=None)), + ('to', sgqlc.types.Arg(String, graphql_name='to', default=None)), + ('aggregation', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataAggregationMethod), graphql_name='aggregation', default='SUM')), + ('window', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='window', default='1 day')), + ('sampling_window', sgqlc.types.Arg(String, graphql_name='samplingWindow', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataOrderBy), graphql_name='orderBy', default='TIME_ASC')), + ('unit', sgqlc.types.Arg(String, graphql_name='unit', default=None)), + ('unit_group', sgqlc.types.Arg(String, graphql_name='unitGroup', default=None)), +)) + ) + + +class ComponentProjectsManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'startup_offset') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('Project'), graphql_name='node') + startup_offset = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='startupOffset') + + +class ComponentsConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('Component'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ComponentsEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class ComponentsEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('Component'), graphql_name='node') + + +class ControlEventActivityLog(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('control_event_id', 'time', 'type', 'actor', 'metadata', 'control_event') + control_event_id = sgqlc.types.Field(Int, graphql_name='controlEventId') + time = sgqlc.types.Field(Datetime, graphql_name='time') + type = sgqlc.types.Field(String, graphql_name='type') + actor = sgqlc.types.Field(Actor, graphql_name='actor') + metadata = sgqlc.types.Field(JSON, graphql_name='metadata') + control_event = sgqlc.types.Field('ControlEvent', graphql_name='controlEvent') + + +class ControlEventActivityLogsConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(ControlEventActivityLog))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ControlEventActivityLogsEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class ControlEventActivityLogsEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null(ControlEventActivityLog), graphql_name='node') + + +class ControlEventLogsConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ControlEventLog'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ControlEventLogsEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class ControlEventLogsEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('ControlEventLog'), graphql_name='node') + + +class ControlEventPermissions(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('can_write',) + can_write = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='canWrite') + + +class ControlEventStatesConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ControlEventState'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ControlEventStatesEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class ControlEventStatesEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('ControlEventState'), graphql_name='node') + + +class ControlEventsConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ControlEvent'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ControlEventsEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class ControlEventsEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('ControlEvent'), graphql_name='node') + + +class CreateAccountChargePayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'account_charge', 'query', 'account_statement', 'account_charge_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + account_charge = sgqlc.types.Field('AccountCharge', graphql_name='accountCharge') + query = sgqlc.types.Field('Query', graphql_name='query') + account_statement = sgqlc.types.Field('AccountStatement', graphql_name='accountStatement') + account_charge_edge = sgqlc.types.Field(AccountChargesEdge, graphql_name='accountChargeEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(AccountChargesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class CreateAccountStatementHistoryPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'account_statement_history', 'query', 'account_statement', 'account_statement_history_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + account_statement_history = sgqlc.types.Field(AccountStatementHistory, graphql_name='accountStatementHistory') + query = sgqlc.types.Field('Query', graphql_name='query') + account_statement = sgqlc.types.Field('AccountStatement', graphql_name='accountStatement') + account_statement_history_edge = sgqlc.types.Field(AccountStatementHistoriesEdge, graphql_name='accountStatementHistoryEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(AccountStatementHistoriesOrderBy)), graphql_name='orderBy', default=('NATURAL',))), +)) + ) + + +class CreateAccountStatementPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'account_statement', 'query', 'utility_account', 'account_statement_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + account_statement = sgqlc.types.Field('AccountStatement', graphql_name='accountStatement') + query = sgqlc.types.Field('Query', graphql_name='query') + utility_account = sgqlc.types.Field('UtilityAccount', graphql_name='utilityAccount') + account_statement_edge = sgqlc.types.Field(AccountStatementsEdge, graphql_name='accountStatementEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(AccountStatementsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class CreateBalancingAuthorityPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'balancing_authority', 'query', 'balancing_authority_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + balancing_authority = sgqlc.types.Field('BalancingAuthority', graphql_name='balancingAuthority') + query = sgqlc.types.Field('Query', graphql_name='query') + balancing_authority_edge = sgqlc.types.Field(BalancingAuthoritiesEdge, graphql_name='balancingAuthorityEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(BalancingAuthoritiesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class CreateBuildingAreaPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'building_area', 'query', 'building_area_type', 'facility', 'building_area_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + building_area = sgqlc.types.Field('BuildingArea', graphql_name='buildingArea') + query = sgqlc.types.Field('Query', graphql_name='query') + building_area_type = sgqlc.types.Field('BuildingAreaType', graphql_name='buildingAreaType') + facility = sgqlc.types.Field('Facility', graphql_name='facility') + building_area_edge = sgqlc.types.Field(BuildingAreasEdge, graphql_name='buildingAreaEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(BuildingAreasOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class CreateBuildingAreaTypePayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'building_area_type', 'query', 'building_area_type_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + building_area_type = sgqlc.types.Field('BuildingAreaType', graphql_name='buildingAreaType') + query = sgqlc.types.Field('Query', graphql_name='query') + building_area_type_edge = sgqlc.types.Field(BuildingAreaTypesEdge, graphql_name='buildingAreaTypeEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(BuildingAreaTypesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class CreateComponentPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'component', 'query', 'machine_user', 'facility', 'component_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + component = sgqlc.types.Field('Component', graphql_name='component') + query = sgqlc.types.Field('Query', graphql_name='query') + machine_user = sgqlc.types.Field('MachineUser', graphql_name='machineUser') + facility = sgqlc.types.Field('Facility', graphql_name='facility') + component_edge = sgqlc.types.Field(ComponentsEdge, graphql_name='componentEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ComponentsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class CreateControlEventLogPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'control_event_log', 'query', 'control_event', 'control_event_log_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + control_event_log = sgqlc.types.Field('ControlEventLog', graphql_name='controlEventLog') + query = sgqlc.types.Field('Query', graphql_name='query') + control_event = sgqlc.types.Field('ControlEvent', graphql_name='controlEvent') + control_event_log_edge = sgqlc.types.Field(ControlEventLogsEdge, graphql_name='controlEventLogEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ControlEventLogsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class CreateControlEventPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'control_event', 'query', 'component', 'control_event_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + control_event = sgqlc.types.Field('ControlEvent', graphql_name='controlEvent') + query = sgqlc.types.Field('Query', graphql_name='query') + component = sgqlc.types.Field('Component', graphql_name='component') + control_event_edge = sgqlc.types.Field(ControlEventsEdge, graphql_name='controlEventEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ControlEventsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class CreateDataPointPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'data_point', 'query', 'data_source_by_data_source_name', 'data_point_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + data_point = sgqlc.types.Field('DataPoint', graphql_name='dataPoint') + query = sgqlc.types.Field('Query', graphql_name='query') + data_source_by_data_source_name = sgqlc.types.Field('DataSource', graphql_name='dataSourceByDataSourceName') + data_point_edge = sgqlc.types.Field('DataPointsEdge', graphql_name='dataPointEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(DataPointsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class CreateDataSourcePayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'data_source', 'query', 'data_source_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + data_source = sgqlc.types.Field('DataSource', graphql_name='dataSource') + query = sgqlc.types.Field('Query', graphql_name='query') + data_source_edge = sgqlc.types.Field('DataSourcesEdge', graphql_name='dataSourceEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(DataSourcesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class CreateDependencyPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'dependency', 'query', 'dependency_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + dependency = sgqlc.types.Field('Dependency', graphql_name='dependency') + query = sgqlc.types.Field('Query', graphql_name='query') + dependency_edge = sgqlc.types.Field('DependenciesEdge', graphql_name='dependencyEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(DependenciesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class CreateFacilityCommunicationPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'facility_communication', 'query', 'facility', 'facility_communication_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + facility_communication = sgqlc.types.Field('FacilityCommunication', graphql_name='facilityCommunication') + query = sgqlc.types.Field('Query', graphql_name='query') + facility = sgqlc.types.Field('Facility', graphql_name='facility') + facility_communication_edge = sgqlc.types.Field('FacilityCommunicationsEdge', graphql_name='facilityCommunicationEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(FacilityCommunicationsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class CreateFacilityDataSourcePayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'facility_data_source', 'query', 'facility', 'data_source_by_data_source_name', 'facility_data_source_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + facility_data_source = sgqlc.types.Field('FacilityDataSource', graphql_name='facilityDataSource') + query = sgqlc.types.Field('Query', graphql_name='query') + facility = sgqlc.types.Field('Facility', graphql_name='facility') + data_source_by_data_source_name = sgqlc.types.Field('DataSource', graphql_name='dataSourceByDataSourceName') + facility_data_source_edge = sgqlc.types.Field('FacilityDataSourcesEdge', graphql_name='facilityDataSourceEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(FacilityDataSourcesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class CreateFacilityGroupPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'facility_group', 'query', 'parent', 'facility_group_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + facility_group = sgqlc.types.Field('FacilityGroup', graphql_name='facilityGroup') + query = sgqlc.types.Field('Query', graphql_name='query') + parent = sgqlc.types.Field('FacilityGroup', graphql_name='parent') + facility_group_edge = sgqlc.types.Field('FacilityGroupsEdge', graphql_name='facilityGroupEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(FacilityGroupsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class CreateFacilityGroupsLinkerPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'facility_groups_linker', 'query', 'facility', 'facility_grouping', 'facility_groups_linker_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + facility_groups_linker = sgqlc.types.Field('FacilityGroupsLinker', graphql_name='facilityGroupsLinker') + query = sgqlc.types.Field('Query', graphql_name='query') + facility = sgqlc.types.Field('Facility', graphql_name='facility') + facility_grouping = sgqlc.types.Field('FacilityGroup', graphql_name='facilityGrouping') + facility_groups_linker_edge = sgqlc.types.Field('FacilityGroupsLinkersEdge', graphql_name='facilityGroupsLinkerEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(FacilityGroupsLinkersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class CreateFacilityPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'facility', 'query', 'timezone', 'unit_group_by_unit_group', 'facility_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + facility = sgqlc.types.Field('Facility', graphql_name='facility') + query = sgqlc.types.Field('Query', graphql_name='query') + timezone = sgqlc.types.Field('Timezone', graphql_name='timezone') + unit_group_by_unit_group = sgqlc.types.Field('UnitGroup', graphql_name='unitGroupByUnitGroup') + facility_edge = sgqlc.types.Field('FacilitiesEdge', graphql_name='facilityEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(FacilitiesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class CreateFieldGroupPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'field_group', 'query', 'field_group_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + field_group = sgqlc.types.Field('FieldGroup', graphql_name='fieldGroup') + query = sgqlc.types.Field('Query', graphql_name='query') + field_group_edge = sgqlc.types.Field('FieldGroupsEdge', graphql_name='fieldGroupEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(FieldGroupsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class CreateMachineUserPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'machine_user', 'query', 'machine_user_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + machine_user = sgqlc.types.Field('MachineUser', graphql_name='machineUser') + query = sgqlc.types.Field('Query', graphql_name='query') + machine_user_edge = sgqlc.types.Field('MachineUsersEdge', graphql_name='machineUserEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(MachineUsersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class CreateMeterChargePayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'meter_charge', 'query', 'meter_statement', 'meter_charge_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + meter_charge = sgqlc.types.Field('MeterCharge', graphql_name='meterCharge') + query = sgqlc.types.Field('Query', graphql_name='query') + meter_statement = sgqlc.types.Field('MeterStatement', graphql_name='meterStatement') + meter_charge_edge = sgqlc.types.Field('MeterChargesEdge', graphql_name='meterChargeEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(MeterChargesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class CreateMeterStatementHistoryPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'meter_statement_history', 'query', 'meter_statement', 'meter_statement_history_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + meter_statement_history = sgqlc.types.Field('MeterStatementHistory', graphql_name='meterStatementHistory') + query = sgqlc.types.Field('Query', graphql_name='query') + meter_statement = sgqlc.types.Field('MeterStatement', graphql_name='meterStatement') + meter_statement_history_edge = sgqlc.types.Field('MeterStatementHistoriesEdge', graphql_name='meterStatementHistoryEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(MeterStatementHistoriesOrderBy)), graphql_name='orderBy', default=('NATURAL',))), +)) + ) + + +class CreateMeterStatementPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'meter_statement', 'query', 'utility_meter', 'account_statement', 'meter_statement_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + meter_statement = sgqlc.types.Field('MeterStatement', graphql_name='meterStatement') + query = sgqlc.types.Field('Query', graphql_name='query') + utility_meter = sgqlc.types.Field('UtilityMeter', graphql_name='utilityMeter') + account_statement = sgqlc.types.Field('AccountStatement', graphql_name='accountStatement') + meter_statement_edge = sgqlc.types.Field('MeterStatementsEdge', graphql_name='meterStatementEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(MeterStatementsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class CreateMeterUsagePayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'meter_usage', 'query', 'meter_statement', 'meter_usage_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + meter_usage = sgqlc.types.Field('MeterUsage', graphql_name='meterUsage') + query = sgqlc.types.Field('Query', graphql_name='query') + meter_statement = sgqlc.types.Field('MeterStatement', graphql_name='meterStatement') + meter_usage_edge = sgqlc.types.Field('MeterUsagesEdge', graphql_name='meterUsageEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(MeterUsagesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class CreateProgramPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'program', 'query', 'project_type', 'program_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + program = sgqlc.types.Field('Program', graphql_name='program') + query = sgqlc.types.Field('Query', graphql_name='query') + project_type = sgqlc.types.Field('ProjectType', graphql_name='projectType') + program_edge = sgqlc.types.Field('ProgramsEdge', graphql_name='programEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProgramsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class CreateProjectComponentPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'project_component', 'query', 'project', 'component', 'project_component_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + project_component = sgqlc.types.Field('ProjectComponent', graphql_name='projectComponent') + query = sgqlc.types.Field('Query', graphql_name='query') + project = sgqlc.types.Field('Project', graphql_name='project') + component = sgqlc.types.Field('Component', graphql_name='component') + project_component_edge = sgqlc.types.Field('ProjectComponentsEdge', graphql_name='projectComponentEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProjectComponentsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class CreateProjectFieldPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'project_field', 'query', 'project', 'group', 'data_point', 'project_field_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + project_field = sgqlc.types.Field('ProjectField', graphql_name='projectField') + query = sgqlc.types.Field('Query', graphql_name='query') + project = sgqlc.types.Field('Project', graphql_name='project') + group = sgqlc.types.Field('FieldGroup', graphql_name='group') + data_point = sgqlc.types.Field('DataPoint', graphql_name='dataPoint') + project_field_edge = sgqlc.types.Field('ProjectFieldsEdge', graphql_name='projectFieldEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProjectFieldsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class CreateProjectPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'project', 'query', 'facility', 'project_type', 'program', 'project_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + project = sgqlc.types.Field('Project', graphql_name='project') + query = sgqlc.types.Field('Query', graphql_name='query') + facility = sgqlc.types.Field('Facility', graphql_name='facility') + project_type = sgqlc.types.Field('ProjectType', graphql_name='projectType') + program = sgqlc.types.Field('Program', graphql_name='program') + project_edge = sgqlc.types.Field('ProjectsEdge', graphql_name='projectEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProjectsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class CreateProjectWatcherPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'project_watcher', 'query', 'project', 'user', 'project_watcher_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + project_watcher = sgqlc.types.Field('ProjectWatcher', graphql_name='projectWatcher') + query = sgqlc.types.Field('Query', graphql_name='query') + project = sgqlc.types.Field('Project', graphql_name='project') + user = sgqlc.types.Field('User', graphql_name='user') + project_watcher_edge = sgqlc.types.Field('ProjectWatchersEdge', graphql_name='projectWatcherEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProjectWatchersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class CreateReportExecutionPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'report_execution', 'query', 'report', 'report_execution_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + report_execution = sgqlc.types.Field('ReportExecution', graphql_name='reportExecution') + query = sgqlc.types.Field('Query', graphql_name='query') + report = sgqlc.types.Field('Report', graphql_name='report') + report_execution_edge = sgqlc.types.Field('ReportExecutionsEdge', graphql_name='reportExecutionEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ReportExecutionsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class CreateSavingsEventPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'savings_event', 'query', 'project', 'savings_event_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + savings_event = sgqlc.types.Field('SavingsEvent', graphql_name='savingsEvent') + query = sgqlc.types.Field('Query', graphql_name='query') + project = sgqlc.types.Field('Project', graphql_name='project') + savings_event_edge = sgqlc.types.Field('SavingsEventsEdge', graphql_name='savingsEventEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(SavingsEventsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class CreateSuggestionActivityLogPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'suggestion_activity_log', 'query', 'suggestion', 'suggestion_activity_log_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + suggestion_activity_log = sgqlc.types.Field('SuggestionActivityLog', graphql_name='suggestionActivityLog') + query = sgqlc.types.Field('Query', graphql_name='query') + suggestion = sgqlc.types.Field('Suggestion', graphql_name='suggestion') + suggestion_activity_log_edge = sgqlc.types.Field('SuggestionActivityLogsEdge', graphql_name='suggestionActivityLogEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(SuggestionActivityLogsOrderBy)), graphql_name='orderBy', default=('NATURAL',))), +)) + ) + + +class CreateSuggestionControlEventPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'suggestion_control_event', 'query', 'suggestion', 'control_event') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + suggestion_control_event = sgqlc.types.Field('SuggestionControlEvent', graphql_name='suggestionControlEvent') + query = sgqlc.types.Field('Query', graphql_name='query') + suggestion = sgqlc.types.Field('Suggestion', graphql_name='suggestion') + control_event = sgqlc.types.Field('ControlEvent', graphql_name='controlEvent') + + +class CreateSuggestionPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'suggestion', 'query', 'project', 'savings_event', 'suggestion_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + suggestion = sgqlc.types.Field('Suggestion', graphql_name='suggestion') + query = sgqlc.types.Field('Query', graphql_name='query') + project = sgqlc.types.Field('Project', graphql_name='project') + savings_event = sgqlc.types.Field('SavingsEvent', graphql_name='savingsEvent') + suggestion_edge = sgqlc.types.Field('SuggestionsEdge', graphql_name='suggestionEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(SuggestionsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class CreateUtilityAccountPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'utility_account', 'query', 'utility_provider', 'utility_account_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + utility_account = sgqlc.types.Field('UtilityAccount', graphql_name='utilityAccount') + query = sgqlc.types.Field('Query', graphql_name='query') + utility_provider = sgqlc.types.Field('UtilityProvider', graphql_name='utilityProvider') + utility_account_edge = sgqlc.types.Field('UtilityAccountsEdge', graphql_name='utilityAccountEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityAccountsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class CreateUtilityMeterPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'utility_meter', 'query', 'utility_account', 'facility', 'utility_meter_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + utility_meter = sgqlc.types.Field('UtilityMeter', graphql_name='utilityMeter') + query = sgqlc.types.Field('Query', graphql_name='query') + utility_account = sgqlc.types.Field('UtilityAccount', graphql_name='utilityAccount') + facility = sgqlc.types.Field('Facility', graphql_name='facility') + utility_meter_edge = sgqlc.types.Field('UtilityMetersEdge', graphql_name='utilityMeterEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMetersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class CreateUtilityProviderPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'utility_provider', 'query', 'utility_provider_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + utility_provider = sgqlc.types.Field('UtilityProvider', graphql_name='utilityProvider') + query = sgqlc.types.Field('Query', graphql_name='query') + utility_provider_edge = sgqlc.types.Field('UtilityProvidersEdge', graphql_name='utilityProviderEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityProvidersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class CreateVendorUserMachineUserPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'vendor_user_machine_user', 'query') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + vendor_user_machine_user = sgqlc.types.Field('VendorUserMachineUser', graphql_name='vendorUserMachineUser') + query = sgqlc.types.Field('Query', graphql_name='query') + + +class CreateVendorUserPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'vendor_user', 'query', 'vendor_user_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + vendor_user = sgqlc.types.Field('VendorUser', graphql_name='vendorUser') + query = sgqlc.types.Field('Query', graphql_name='query') + vendor_user_edge = sgqlc.types.Field('VendorUsersEdge', graphql_name='vendorUserEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(VendorUsersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class CreateVirtualPointIntervalPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'virtual_point_interval', 'query', 'parent', 'child', 'virtual_point_interval_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + virtual_point_interval = sgqlc.types.Field('VirtualPointInterval', graphql_name='virtualPointInterval') + query = sgqlc.types.Field('Query', graphql_name='query') + parent = sgqlc.types.Field('DataPoint', graphql_name='parent') + child = sgqlc.types.Field('DataPoint', graphql_name='child') + virtual_point_interval_edge = sgqlc.types.Field('VirtualPointIntervalsEdge', graphql_name='virtualPointIntervalEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(VirtualPointIntervalsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class DataPointFieldGroupsByProjectFieldDataPointIdAndGroupIdManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('FieldGroup'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('DataPointFieldGroupsByProjectFieldDataPointIdAndGroupIdManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class DataPointFieldGroupsByProjectFieldDataPointIdAndGroupIdManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'project_fields_by_group_id') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('FieldGroup'), graphql_name='node') + project_fields_by_group_id = sgqlc.types.Field(sgqlc.types.non_null('ProjectFieldsConnection'), graphql_name='projectFieldsByGroupId', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProjectFieldsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ProjectFieldCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ProjectFieldFilter, graphql_name='filter', default=None)), +)) + ) + + +class DataPointProjectsByProjectFieldDataPointIdAndProjectIdManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count', 'savings_event_data') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('Project'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('DataPointProjectsByProjectFieldDataPointIdAndProjectIdManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + savings_event_data = sgqlc.types.Field('MetricDataConnection', graphql_name='savingsEventData', args=sgqlc.types.ArgDict(( + ('label', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='label', default=None)), + ('from_', sgqlc.types.Arg(String, graphql_name='from', default=None)), + ('to', sgqlc.types.Arg(String, graphql_name='to', default=None)), + ('aggregation', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataAggregationMethod), graphql_name='aggregation', default='SUM')), + ('window', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='window', default='1 day')), + ('sampling_window', sgqlc.types.Arg(String, graphql_name='samplingWindow', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataOrderBy), graphql_name='orderBy', default='TIME_ASC')), + ('unit', sgqlc.types.Arg(String, graphql_name='unit', default=None)), + ('unit_group', sgqlc.types.Arg(String, graphql_name='unitGroup', default=None)), +)) + ) + + +class DataPointProjectsByProjectFieldDataPointIdAndProjectIdManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'project_fields') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('Project'), graphql_name='node') + project_fields = sgqlc.types.Field(sgqlc.types.non_null('ProjectFieldsConnection'), graphql_name='projectFields', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProjectFieldsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ProjectFieldCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ProjectFieldFilter, graphql_name='filter', default=None)), +)) + ) + + +class DataPointsConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('DataPoint'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('DataPointsEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class DataPointsEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('DataPoint'), graphql_name='node') + + +class DataSourceFacilitiesManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count', 'aggregates', 'grouped_aggregates', 'metric_data') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('Facility'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('DataSourceFacilitiesManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + aggregates = sgqlc.types.Field('FacilityAggregates', graphql_name='aggregates') + grouped_aggregates = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('FacilityAggregates')), graphql_name='groupedAggregates', args=sgqlc.types.ArgDict(( + ('group_by', sgqlc.types.Arg(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(FacilitiesGroupBy))), graphql_name='groupBy', default=None)), + ('having', sgqlc.types.Arg(FacilitiesHavingInput, graphql_name='having', default=None)), +)) + ) + metric_data = sgqlc.types.Field('MetricDataConnection', graphql_name='metricData', args=sgqlc.types.ArgDict(( + ('label', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='label', default=None)), + ('from_', sgqlc.types.Arg(String, graphql_name='from', default=None)), + ('to', sgqlc.types.Arg(String, graphql_name='to', default=None)), + ('aggregation', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataAggregationMethod), graphql_name='aggregation', default='SUM')), + ('window', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='window', default='1 day')), + ('sampling_window', sgqlc.types.Arg(String, graphql_name='samplingWindow', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataOrderBy), graphql_name='orderBy', default='TIME_ASC')), + ('unit', sgqlc.types.Arg(String, graphql_name='unit', default=None)), + ('unit_group', sgqlc.types.Arg(String, graphql_name='unitGroup', default=None)), +)) + ) + + +class DataSourceFacilitiesManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('Facility'), graphql_name='node') + + +class DataSourcesConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('DataSource'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('DataSourcesEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class DataSourcesEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('DataSource'), graphql_name='node') + + +class DeleteAccountChargePayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'deleted', 'query') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + deleted = sgqlc.types.Field(Boolean, graphql_name='deleted') + query = sgqlc.types.Field('Query', graphql_name='query') + + +class DeleteAccountStatementPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'deleted', 'query') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + deleted = sgqlc.types.Field(Boolean, graphql_name='deleted') + query = sgqlc.types.Field('Query', graphql_name='query') + + +class DeleteBuildingAreaPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'building_area', 'deleted_building_area_node_id', 'query', 'building_area_type', 'facility', 'building_area_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + building_area = sgqlc.types.Field('BuildingArea', graphql_name='buildingArea') + deleted_building_area_node_id = sgqlc.types.Field(ID, graphql_name='deletedBuildingAreaNodeId') + query = sgqlc.types.Field('Query', graphql_name='query') + building_area_type = sgqlc.types.Field('BuildingAreaType', graphql_name='buildingAreaType') + facility = sgqlc.types.Field('Facility', graphql_name='facility') + building_area_edge = sgqlc.types.Field(BuildingAreasEdge, graphql_name='buildingAreaEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(BuildingAreasOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class DeleteBuildingAreaTypePayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'building_area_type', 'deleted_building_area_type_node_id', 'query', 'building_area_type_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + building_area_type = sgqlc.types.Field('BuildingAreaType', graphql_name='buildingAreaType') + deleted_building_area_type_node_id = sgqlc.types.Field(ID, graphql_name='deletedBuildingAreaTypeNodeId') + query = sgqlc.types.Field('Query', graphql_name='query') + building_area_type_edge = sgqlc.types.Field(BuildingAreaTypesEdge, graphql_name='buildingAreaTypeEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(BuildingAreaTypesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class DeleteComponentPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'component', 'deleted_component_node_id', 'query', 'machine_user', 'facility', 'component_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + component = sgqlc.types.Field('Component', graphql_name='component') + deleted_component_node_id = sgqlc.types.Field(ID, graphql_name='deletedComponentNodeId') + query = sgqlc.types.Field('Query', graphql_name='query') + machine_user = sgqlc.types.Field('MachineUser', graphql_name='machineUser') + facility = sgqlc.types.Field('Facility', graphql_name='facility') + component_edge = sgqlc.types.Field(ComponentsEdge, graphql_name='componentEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ComponentsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class DeleteControlEventLogPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'control_event_log', 'deleted_control_event_log_node_id', 'query', 'control_event', 'control_event_log_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + control_event_log = sgqlc.types.Field('ControlEventLog', graphql_name='controlEventLog') + deleted_control_event_log_node_id = sgqlc.types.Field(ID, graphql_name='deletedControlEventLogNodeId') + query = sgqlc.types.Field('Query', graphql_name='query') + control_event = sgqlc.types.Field('ControlEvent', graphql_name='controlEvent') + control_event_log_edge = sgqlc.types.Field(ControlEventLogsEdge, graphql_name='controlEventLogEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ControlEventLogsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class DeleteControlEventPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'control_event', 'deleted_control_event_node_id', 'query', 'component', 'control_event_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + control_event = sgqlc.types.Field('ControlEvent', graphql_name='controlEvent') + deleted_control_event_node_id = sgqlc.types.Field(ID, graphql_name='deletedControlEventNodeId') + query = sgqlc.types.Field('Query', graphql_name='query') + component = sgqlc.types.Field('Component', graphql_name='component') + control_event_edge = sgqlc.types.Field(ControlEventsEdge, graphql_name='controlEventEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ControlEventsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class DeleteDataPointPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'data_point', 'deleted_data_point_node_id', 'query', 'data_source_by_data_source_name', 'data_point_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + data_point = sgqlc.types.Field('DataPoint', graphql_name='dataPoint') + deleted_data_point_node_id = sgqlc.types.Field(ID, graphql_name='deletedDataPointNodeId') + query = sgqlc.types.Field('Query', graphql_name='query') + data_source_by_data_source_name = sgqlc.types.Field('DataSource', graphql_name='dataSourceByDataSourceName') + data_point_edge = sgqlc.types.Field(DataPointsEdge, graphql_name='dataPointEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(DataPointsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class DeleteDataSourcePayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'data_source', 'deleted_data_source_node_id', 'query', 'data_source_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + data_source = sgqlc.types.Field('DataSource', graphql_name='dataSource') + deleted_data_source_node_id = sgqlc.types.Field(ID, graphql_name='deletedDataSourceNodeId') + query = sgqlc.types.Field('Query', graphql_name='query') + data_source_edge = sgqlc.types.Field(DataSourcesEdge, graphql_name='dataSourceEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(DataSourcesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class DeleteDependencyPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'dependency', 'deleted_dependency_node_id', 'query', 'dependency_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + dependency = sgqlc.types.Field('Dependency', graphql_name='dependency') + deleted_dependency_node_id = sgqlc.types.Field(ID, graphql_name='deletedDependencyNodeId') + query = sgqlc.types.Field('Query', graphql_name='query') + dependency_edge = sgqlc.types.Field('DependenciesEdge', graphql_name='dependencyEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(DependenciesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class DeleteFacilityDataSourcePayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'facility_data_source', 'deleted_facility_data_source_node_id', 'query', 'facility', 'data_source_by_data_source_name', 'facility_data_source_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + facility_data_source = sgqlc.types.Field('FacilityDataSource', graphql_name='facilityDataSource') + deleted_facility_data_source_node_id = sgqlc.types.Field(ID, graphql_name='deletedFacilityDataSourceNodeId') + query = sgqlc.types.Field('Query', graphql_name='query') + facility = sgqlc.types.Field('Facility', graphql_name='facility') + data_source_by_data_source_name = sgqlc.types.Field('DataSource', graphql_name='dataSourceByDataSourceName') + facility_data_source_edge = sgqlc.types.Field('FacilityDataSourcesEdge', graphql_name='facilityDataSourceEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(FacilityDataSourcesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class DeleteFacilityGroupPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'facility_group', 'deleted_facility_group_node_id', 'query', 'parent', 'facility_group_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + facility_group = sgqlc.types.Field('FacilityGroup', graphql_name='facilityGroup') + deleted_facility_group_node_id = sgqlc.types.Field(ID, graphql_name='deletedFacilityGroupNodeId') + query = sgqlc.types.Field('Query', graphql_name='query') + parent = sgqlc.types.Field('FacilityGroup', graphql_name='parent') + facility_group_edge = sgqlc.types.Field('FacilityGroupsEdge', graphql_name='facilityGroupEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(FacilityGroupsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class DeleteFacilityGroupsLinkerPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'facility_groups_linker', 'deleted_facility_groups_linker_node_id', 'query', 'facility', 'facility_grouping', 'facility_groups_linker_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + facility_groups_linker = sgqlc.types.Field('FacilityGroupsLinker', graphql_name='facilityGroupsLinker') + deleted_facility_groups_linker_node_id = sgqlc.types.Field(ID, graphql_name='deletedFacilityGroupsLinkerNodeId') + query = sgqlc.types.Field('Query', graphql_name='query') + facility = sgqlc.types.Field('Facility', graphql_name='facility') + facility_grouping = sgqlc.types.Field('FacilityGroup', graphql_name='facilityGrouping') + facility_groups_linker_edge = sgqlc.types.Field('FacilityGroupsLinkersEdge', graphql_name='facilityGroupsLinkerEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(FacilityGroupsLinkersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class DeleteFacilityPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'facility', 'deleted_facility_node_id', 'query', 'timezone', 'unit_group_by_unit_group', 'facility_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + facility = sgqlc.types.Field('Facility', graphql_name='facility') + deleted_facility_node_id = sgqlc.types.Field(ID, graphql_name='deletedFacilityNodeId') + query = sgqlc.types.Field('Query', graphql_name='query') + timezone = sgqlc.types.Field('Timezone', graphql_name='timezone') + unit_group_by_unit_group = sgqlc.types.Field('UnitGroup', graphql_name='unitGroupByUnitGroup') + facility_edge = sgqlc.types.Field('FacilitiesEdge', graphql_name='facilityEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(FacilitiesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class DeleteFieldGroupPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'field_group', 'deleted_field_group_node_id', 'query', 'field_group_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + field_group = sgqlc.types.Field('FieldGroup', graphql_name='fieldGroup') + deleted_field_group_node_id = sgqlc.types.Field(ID, graphql_name='deletedFieldGroupNodeId') + query = sgqlc.types.Field('Query', graphql_name='query') + field_group_edge = sgqlc.types.Field('FieldGroupsEdge', graphql_name='fieldGroupEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(FieldGroupsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class DeleteMachineUserPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'machine_user', 'deleted_machine_user_node_id', 'query', 'machine_user_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + machine_user = sgqlc.types.Field('MachineUser', graphql_name='machineUser') + deleted_machine_user_node_id = sgqlc.types.Field(ID, graphql_name='deletedMachineUserNodeId') + query = sgqlc.types.Field('Query', graphql_name='query') + machine_user_edge = sgqlc.types.Field('MachineUsersEdge', graphql_name='machineUserEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(MachineUsersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class DeleteMeterChargePayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'deleted', 'query') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + deleted = sgqlc.types.Field(Boolean, graphql_name='deleted') + query = sgqlc.types.Field('Query', graphql_name='query') + + +class DeleteMeterStatementPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'deleted', 'query') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + deleted = sgqlc.types.Field(Boolean, graphql_name='deleted') + query = sgqlc.types.Field('Query', graphql_name='query') + + +class DeleteMeterUsagePayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'deleted', 'query') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + deleted = sgqlc.types.Field(Boolean, graphql_name='deleted') + query = sgqlc.types.Field('Query', graphql_name='query') + + +class DeletePhoneNumberResponse(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('user', 'client_mutation_id') + user = sgqlc.types.Field(sgqlc.types.non_null('User'), graphql_name='user') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + + +class DeleteProgramPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'program', 'deleted_program_node_id', 'query', 'project_type', 'program_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + program = sgqlc.types.Field('Program', graphql_name='program') + deleted_program_node_id = sgqlc.types.Field(ID, graphql_name='deletedProgramNodeId') + query = sgqlc.types.Field('Query', graphql_name='query') + project_type = sgqlc.types.Field('ProjectType', graphql_name='projectType') + program_edge = sgqlc.types.Field('ProgramsEdge', graphql_name='programEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProgramsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class DeleteProjectComponentPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'project_component', 'deleted_project_component_node_id', 'query', 'project', 'component', 'project_component_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + project_component = sgqlc.types.Field('ProjectComponent', graphql_name='projectComponent') + deleted_project_component_node_id = sgqlc.types.Field(ID, graphql_name='deletedProjectComponentNodeId') + query = sgqlc.types.Field('Query', graphql_name='query') + project = sgqlc.types.Field('Project', graphql_name='project') + component = sgqlc.types.Field('Component', graphql_name='component') + project_component_edge = sgqlc.types.Field('ProjectComponentsEdge', graphql_name='projectComponentEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProjectComponentsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class DeleteProjectFieldPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'project_field', 'deleted_project_field_node_id', 'query', 'project', 'group', 'data_point', 'project_field_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + project_field = sgqlc.types.Field('ProjectField', graphql_name='projectField') + deleted_project_field_node_id = sgqlc.types.Field(ID, graphql_name='deletedProjectFieldNodeId') + query = sgqlc.types.Field('Query', graphql_name='query') + project = sgqlc.types.Field('Project', graphql_name='project') + group = sgqlc.types.Field('FieldGroup', graphql_name='group') + data_point = sgqlc.types.Field('DataPoint', graphql_name='dataPoint') + project_field_edge = sgqlc.types.Field('ProjectFieldsEdge', graphql_name='projectFieldEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProjectFieldsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class DeleteProjectPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'project', 'deleted_project_node_id', 'query', 'facility', 'project_type', 'program', 'project_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + project = sgqlc.types.Field('Project', graphql_name='project') + deleted_project_node_id = sgqlc.types.Field(ID, graphql_name='deletedProjectNodeId') + query = sgqlc.types.Field('Query', graphql_name='query') + facility = sgqlc.types.Field('Facility', graphql_name='facility') + project_type = sgqlc.types.Field('ProjectType', graphql_name='projectType') + program = sgqlc.types.Field('Program', graphql_name='program') + project_edge = sgqlc.types.Field('ProjectsEdge', graphql_name='projectEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProjectsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class DeleteProjectWatcherPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'project_watcher', 'deleted_project_watcher_node_id', 'query', 'project', 'user', 'project_watcher_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + project_watcher = sgqlc.types.Field('ProjectWatcher', graphql_name='projectWatcher') + deleted_project_watcher_node_id = sgqlc.types.Field(ID, graphql_name='deletedProjectWatcherNodeId') + query = sgqlc.types.Field('Query', graphql_name='query') + project = sgqlc.types.Field('Project', graphql_name='project') + user = sgqlc.types.Field('User', graphql_name='user') + project_watcher_edge = sgqlc.types.Field('ProjectWatchersEdge', graphql_name='projectWatcherEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProjectWatchersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class DeleteReportExecutionPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'report_execution', 'deleted_report_execution_node_id', 'query', 'report', 'report_execution_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + report_execution = sgqlc.types.Field('ReportExecution', graphql_name='reportExecution') + deleted_report_execution_node_id = sgqlc.types.Field(ID, graphql_name='deletedReportExecutionNodeId') + query = sgqlc.types.Field('Query', graphql_name='query') + report = sgqlc.types.Field('Report', graphql_name='report') + report_execution_edge = sgqlc.types.Field('ReportExecutionsEdge', graphql_name='reportExecutionEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ReportExecutionsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class DeleteSavingsEventPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'savings_event', 'deleted_savings_event_node_id', 'query', 'project', 'savings_event_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + savings_event = sgqlc.types.Field('SavingsEvent', graphql_name='savingsEvent') + deleted_savings_event_node_id = sgqlc.types.Field(ID, graphql_name='deletedSavingsEventNodeId') + query = sgqlc.types.Field('Query', graphql_name='query') + project = sgqlc.types.Field('Project', graphql_name='project') + savings_event_edge = sgqlc.types.Field('SavingsEventsEdge', graphql_name='savingsEventEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(SavingsEventsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class DeleteSuggestionControlEventPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'suggestion_control_event', 'deleted_suggestion_control_event_node_id', 'query', 'suggestion', 'control_event') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + suggestion_control_event = sgqlc.types.Field('SuggestionControlEvent', graphql_name='suggestionControlEvent') + deleted_suggestion_control_event_node_id = sgqlc.types.Field(ID, graphql_name='deletedSuggestionControlEventNodeId') + query = sgqlc.types.Field('Query', graphql_name='query') + suggestion = sgqlc.types.Field('Suggestion', graphql_name='suggestion') + control_event = sgqlc.types.Field('ControlEvent', graphql_name='controlEvent') + + +class DeleteUserPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'user', 'deleted_user_node_id', 'query', 'user_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + user = sgqlc.types.Field('User', graphql_name='user') + deleted_user_node_id = sgqlc.types.Field(ID, graphql_name='deletedUserNodeId') + query = sgqlc.types.Field('Query', graphql_name='query') + user_edge = sgqlc.types.Field('UsersEdge', graphql_name='userEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UsersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class DeleteUtilityAccountPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'deleted', 'query') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + deleted = sgqlc.types.Field(Boolean, graphql_name='deleted') + query = sgqlc.types.Field('Query', graphql_name='query') + + +class DeleteUtilityMeterPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'deleted', 'query') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + deleted = sgqlc.types.Field(Boolean, graphql_name='deleted') + query = sgqlc.types.Field('Query', graphql_name='query') + + +class DeleteUtilityProviderPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'utility_provider', 'deleted_utility_provider_node_id', 'query', 'utility_provider_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + utility_provider = sgqlc.types.Field('UtilityProvider', graphql_name='utilityProvider') + deleted_utility_provider_node_id = sgqlc.types.Field(ID, graphql_name='deletedUtilityProviderNodeId') + query = sgqlc.types.Field('Query', graphql_name='query') + utility_provider_edge = sgqlc.types.Field('UtilityProvidersEdge', graphql_name='utilityProviderEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityProvidersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class DeleteVendorUserMachineUserPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'vendor_user_machine_user', 'deleted_vendor_user_machine_user_node_id', 'query') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + vendor_user_machine_user = sgqlc.types.Field('VendorUserMachineUser', graphql_name='vendorUserMachineUser') + deleted_vendor_user_machine_user_node_id = sgqlc.types.Field(ID, graphql_name='deletedVendorUserMachineUserNodeId') + query = sgqlc.types.Field('Query', graphql_name='query') + + +class DeleteVendorUserPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'vendor_user', 'deleted_vendor_user_node_id', 'query', 'vendor_user_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + vendor_user = sgqlc.types.Field('VendorUser', graphql_name='vendorUser') + deleted_vendor_user_node_id = sgqlc.types.Field(ID, graphql_name='deletedVendorUserNodeId') + query = sgqlc.types.Field('Query', graphql_name='query') + vendor_user_edge = sgqlc.types.Field('VendorUsersEdge', graphql_name='vendorUserEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(VendorUsersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class DeleteVirtualPointIntervalPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'virtual_point_interval', 'deleted_virtual_point_interval_node_id', 'query', 'parent', 'child', 'virtual_point_interval_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + virtual_point_interval = sgqlc.types.Field('VirtualPointInterval', graphql_name='virtualPointInterval') + deleted_virtual_point_interval_node_id = sgqlc.types.Field(ID, graphql_name='deletedVirtualPointIntervalNodeId') + query = sgqlc.types.Field('Query', graphql_name='query') + parent = sgqlc.types.Field('DataPoint', graphql_name='parent') + child = sgqlc.types.Field('DataPoint', graphql_name='child') + virtual_point_interval_edge = sgqlc.types.Field('VirtualPointIntervalsEdge', graphql_name='virtualPointIntervalEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(VirtualPointIntervalsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class DependenciesConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('Dependency'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('DependenciesEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class DependenciesEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('Dependency'), graphql_name='node') + + +class DerivedStatementDate(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('statement_date', 'statement_year', 'statement_month') + statement_date = sgqlc.types.Field(Date, graphql_name='statementDate') + statement_year = sgqlc.types.Field(Int, graphql_name='statementYear') + statement_month = sgqlc.types.Field(Int, graphql_name='statementMonth') + + +class EventHandlerEventTypesByEventHandlerMetadatumHandlerAndTypeManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('EventType'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('EventHandlerEventTypesByEventHandlerMetadatumHandlerAndTypeManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class EventHandlerEventTypesByEventHandlerMetadatumHandlerAndTypeManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'event') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('EventType'), graphql_name='node') + event = sgqlc.types.Field(sgqlc.types.non_null(JSON), graphql_name='event') + + +class EventTypeEventHandlersByEventHandlerMetadatumTypeAndHandlerManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('EventHandler'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('EventTypeEventHandlersByEventHandlerMetadatumTypeAndHandlerManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class EventTypeEventHandlersByEventHandlerMetadatumTypeAndHandlerManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'event') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('EventHandler'), graphql_name='node') + event = sgqlc.types.Field(sgqlc.types.non_null(JSON), graphql_name='event') + + +class EventTypeFacilitiesByEventTypeAndFacilityIdManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count', 'aggregates', 'grouped_aggregates', 'metric_data') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('Facility'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('EventTypeFacilitiesByEventTypeAndFacilityIdManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + aggregates = sgqlc.types.Field('FacilityAggregates', graphql_name='aggregates') + grouped_aggregates = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('FacilityAggregates')), graphql_name='groupedAggregates', args=sgqlc.types.ArgDict(( + ('group_by', sgqlc.types.Arg(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(FacilitiesGroupBy))), graphql_name='groupBy', default=None)), + ('having', sgqlc.types.Arg(FacilitiesHavingInput, graphql_name='having', default=None)), +)) + ) + metric_data = sgqlc.types.Field('MetricDataConnection', graphql_name='metricData', args=sgqlc.types.ArgDict(( + ('label', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='label', default=None)), + ('from_', sgqlc.types.Arg(String, graphql_name='from', default=None)), + ('to', sgqlc.types.Arg(String, graphql_name='to', default=None)), + ('aggregation', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataAggregationMethod), graphql_name='aggregation', default='SUM')), + ('window', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='window', default='1 day')), + ('sampling_window', sgqlc.types.Arg(String, graphql_name='samplingWindow', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataOrderBy), graphql_name='orderBy', default='TIME_ASC')), + ('unit', sgqlc.types.Arg(String, graphql_name='unit', default=None)), + ('unit_group', sgqlc.types.Arg(String, graphql_name='unitGroup', default=None)), +)) + ) + + +class EventTypeFacilitiesByEventTypeAndFacilityIdManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'events') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('Facility'), graphql_name='node') + events = sgqlc.types.Field(sgqlc.types.non_null('EventsConnection'), graphql_name='events', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(EventsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(EventCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(EventFilter, graphql_name='filter', default=None)), +)) + ) + + +class EventsConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('Event'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('EventsEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class EventsEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('Event'), graphql_name='node') + + +class FacilitiesConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count', 'aggregates', 'grouped_aggregates', 'metric_data') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('Facility'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('FacilitiesEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + aggregates = sgqlc.types.Field('FacilityAggregates', graphql_name='aggregates') + grouped_aggregates = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('FacilityAggregates')), graphql_name='groupedAggregates', args=sgqlc.types.ArgDict(( + ('group_by', sgqlc.types.Arg(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(FacilitiesGroupBy))), graphql_name='groupBy', default=None)), + ('having', sgqlc.types.Arg(FacilitiesHavingInput, graphql_name='having', default=None)), +)) + ) + metric_data = sgqlc.types.Field('MetricDataConnection', graphql_name='metricData', args=sgqlc.types.ArgDict(( + ('label', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='label', default=None)), + ('from_', sgqlc.types.Arg(String, graphql_name='from', default=None)), + ('to', sgqlc.types.Arg(String, graphql_name='to', default=None)), + ('aggregation', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataAggregationMethod), graphql_name='aggregation', default='SUM')), + ('window', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='window', default='1 day')), + ('sampling_window', sgqlc.types.Arg(String, graphql_name='samplingWindow', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataOrderBy), graphql_name='orderBy', default='TIME_ASC')), + ('unit', sgqlc.types.Arg(String, graphql_name='unit', default=None)), + ('unit_group', sgqlc.types.Arg(String, graphql_name='unitGroup', default=None)), +)) + ) + + +class FacilitiesEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('Facility'), graphql_name='node') + + +class FacilityAccountStatementsByUtilityMeterStatementFacilityIdAndAccountStatementIdManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('AccountStatement'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('FacilityAccountStatementsByUtilityMeterStatementFacilityIdAndAccountStatementIdManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class FacilityAccountStatementsByUtilityMeterStatementFacilityIdAndAccountStatementIdManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'utility_meter_statements') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('AccountStatement'), graphql_name='node') + utility_meter_statements = sgqlc.types.Field(sgqlc.types.non_null('UtilityMeterStatementsConnection'), graphql_name='utilityMeterStatements', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMeterStatementsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityMeterStatementCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityMeterStatementFilter, graphql_name='filter', default=None)), +)) + ) + + +class FacilityAggregates(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('keys', 'sum', 'distinct_count', 'min', 'max', 'average', 'stddev_sample', 'stddev_population', 'variance_sample', 'variance_population', 'distinct') + keys = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='keys') + sum = sgqlc.types.Field('FacilitySumAggregates', graphql_name='sum') + distinct_count = sgqlc.types.Field('FacilityDistinctCountAggregates', graphql_name='distinctCount') + min = sgqlc.types.Field('FacilityMinAggregates', graphql_name='min') + max = sgqlc.types.Field('FacilityMaxAggregates', graphql_name='max') + average = sgqlc.types.Field('FacilityAverageAggregates', graphql_name='average') + stddev_sample = sgqlc.types.Field('FacilityStddevSampleAggregates', graphql_name='stddevSample') + stddev_population = sgqlc.types.Field('FacilityStddevPopulationAggregates', graphql_name='stddevPopulation') + variance_sample = sgqlc.types.Field('FacilityVarianceSampleAggregates', graphql_name='varianceSample') + variance_population = sgqlc.types.Field('FacilityVariancePopulationAggregates', graphql_name='variancePopulation') + distinct = sgqlc.types.Field('FacilityDistinctAggregates', graphql_name='distinct') + + +class FacilityAverageAggregates(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('id', 'latitude', 'longitude') + id = sgqlc.types.Field(BigFloat, graphql_name='id') + latitude = sgqlc.types.Field(Float, graphql_name='latitude') + longitude = sgqlc.types.Field(Float, graphql_name='longitude') + + +class FacilityBuildingAreaTypesByBuildingAreaFacilityIdAndBuildingAreaTypeIdManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('BuildingAreaType'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('FacilityBuildingAreaTypesByBuildingAreaFacilityIdAndBuildingAreaTypeIdManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class FacilityBuildingAreaTypesByBuildingAreaFacilityIdAndBuildingAreaTypeIdManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'building_areas') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('BuildingAreaType'), graphql_name='node') + building_areas = sgqlc.types.Field(sgqlc.types.non_null(BuildingAreasConnection), graphql_name='buildingAreas', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(BuildingAreasOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(BuildingAreaCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(BuildingAreaFilter, graphql_name='filter', default=None)), +)) + ) + + +class FacilityCommunicationsConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('FacilityCommunication'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('FacilityCommunicationsEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class FacilityCommunicationsEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('FacilityCommunication'), graphql_name='node') + + +class FacilityDataSourcesConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('FacilityDataSource'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('FacilityDataSourcesEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class FacilityDataSourcesEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('FacilityDataSource'), graphql_name='node') + + +class FacilityDataSourcesManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('DataSource'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('FacilityDataSourcesManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class FacilityDataSourcesManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('DataSource'), graphql_name='node') + + +class FacilityDistinctAggregates(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('id', 'name', 'slug', 'address', 'city', 'state', 'zip', 'created_at', 'updated_at', 'timezone_name', 'unit_group', 'country', 'config', 'geometry', 'retired_at', 'facility_contacts', 'latitude', 'longitude', 'n_sight2_active', 'n_sight_active', 'real_time_enabled', 'bonus_ltr', 'commodity', 'go_live_date', 'link_active', 'metrics_one_active', 'pre_bonus_ebitda', 'suppresse_financials', 'type', 'wms', 'cost_center', 'active_communication') + id = sgqlc.types.Field(sgqlc.types.list_of(Int), graphql_name='id') + name = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='name') + slug = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='slug') + address = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='address') + city = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='city') + state = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='state') + zip = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='zip') + created_at = sgqlc.types.Field(JSON, graphql_name='createdAt') + updated_at = sgqlc.types.Field(JSON, graphql_name='updatedAt') + timezone_name = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='timezoneName') + unit_group = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='unitGroup') + country = sgqlc.types.Field(JSON, graphql_name='country') + config = sgqlc.types.Field(JSON, graphql_name='config') + geometry = sgqlc.types.Field(JSON, graphql_name='geometry') + retired_at = sgqlc.types.Field(JSON, graphql_name='retiredAt') + facility_contacts = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='facilityContacts') + latitude = sgqlc.types.Field(sgqlc.types.list_of(Float), graphql_name='latitude') + longitude = sgqlc.types.Field(sgqlc.types.list_of(Float), graphql_name='longitude') + n_sight2_active = sgqlc.types.Field(JSON, graphql_name='nSight2Active') + n_sight_active = sgqlc.types.Field(JSON, graphql_name='nSightActive') + real_time_enabled = sgqlc.types.Field(JSON, graphql_name='realTimeEnabled') + bonus_ltr = sgqlc.types.Field(JSON, graphql_name='bonusLtr') + commodity = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='commodity') + go_live_date = sgqlc.types.Field(JSON, graphql_name='goLiveDate') + link_active = sgqlc.types.Field(JSON, graphql_name='linkActive') + metrics_one_active = sgqlc.types.Field(JSON, graphql_name='metricsOneActive') + pre_bonus_ebitda = sgqlc.types.Field(JSON, graphql_name='preBonusEbitda') + suppresse_financials = sgqlc.types.Field(JSON, graphql_name='suppresseFinancials') + type = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='type') + wms = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='wms') + cost_center = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='costCenter') + active_communication = sgqlc.types.Field(JSON, graphql_name='activeCommunication') + + +class FacilityDistinctCountAggregates(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('id', 'name', 'slug', 'address', 'city', 'state', 'zip', 'created_at', 'updated_at', 'timezone_name', 'unit_group', 'country', 'config', 'geometry', 'retired_at', 'facility_contacts', 'latitude', 'longitude', 'n_sight2_active', 'n_sight_active', 'real_time_enabled', 'bonus_ltr', 'commodity', 'go_live_date', 'link_active', 'metrics_one_active', 'pre_bonus_ebitda', 'suppresse_financials', 'type', 'wms', 'cost_center', 'active_communication') + id = sgqlc.types.Field(BigInt, graphql_name='id') + name = sgqlc.types.Field(BigInt, graphql_name='name') + slug = sgqlc.types.Field(BigInt, graphql_name='slug') + address = sgqlc.types.Field(BigInt, graphql_name='address') + city = sgqlc.types.Field(BigInt, graphql_name='city') + state = sgqlc.types.Field(BigInt, graphql_name='state') + zip = sgqlc.types.Field(BigInt, graphql_name='zip') + created_at = sgqlc.types.Field(BigInt, graphql_name='createdAt') + updated_at = sgqlc.types.Field(BigInt, graphql_name='updatedAt') + timezone_name = sgqlc.types.Field(BigInt, graphql_name='timezoneName') + unit_group = sgqlc.types.Field(BigInt, graphql_name='unitGroup') + country = sgqlc.types.Field(BigInt, graphql_name='country') + config = sgqlc.types.Field(BigInt, graphql_name='config') + geometry = sgqlc.types.Field(BigInt, graphql_name='geometry') + retired_at = sgqlc.types.Field(BigInt, graphql_name='retiredAt') + facility_contacts = sgqlc.types.Field(BigInt, graphql_name='facilityContacts') + latitude = sgqlc.types.Field(BigInt, graphql_name='latitude') + longitude = sgqlc.types.Field(BigInt, graphql_name='longitude') + n_sight2_active = sgqlc.types.Field(BigInt, graphql_name='nSight2Active') + n_sight_active = sgqlc.types.Field(BigInt, graphql_name='nSightActive') + real_time_enabled = sgqlc.types.Field(BigInt, graphql_name='realTimeEnabled') + bonus_ltr = sgqlc.types.Field(BigInt, graphql_name='bonusLtr') + commodity = sgqlc.types.Field(BigInt, graphql_name='commodity') + go_live_date = sgqlc.types.Field(BigInt, graphql_name='goLiveDate') + link_active = sgqlc.types.Field(BigInt, graphql_name='linkActive') + metrics_one_active = sgqlc.types.Field(BigInt, graphql_name='metricsOneActive') + pre_bonus_ebitda = sgqlc.types.Field(BigInt, graphql_name='preBonusEbitda') + suppresse_financials = sgqlc.types.Field(BigInt, graphql_name='suppresseFinancials') + type = sgqlc.types.Field(BigInt, graphql_name='type') + wms = sgqlc.types.Field(BigInt, graphql_name='wms') + cost_center = sgqlc.types.Field(BigInt, graphql_name='costCenter') + active_communication = sgqlc.types.Field(BigInt, graphql_name='activeCommunication') + + +class FacilityEventTypesByEventFacilityIdAndTypeManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('EventType'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('FacilityEventTypesByEventFacilityIdAndTypeManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class FacilityEventTypesByEventFacilityIdAndTypeManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'events_by_type') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('EventType'), graphql_name='node') + events_by_type = sgqlc.types.Field(sgqlc.types.non_null(EventsConnection), graphql_name='eventsByType', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(EventsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(EventCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(EventFilter, graphql_name='filter', default=None)), +)) + ) + + +class FacilityFacilityGroupsManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('FacilityGroup'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('FacilityFacilityGroupsManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class FacilityFacilityGroupsManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('FacilityGroup'), graphql_name='node') + + +class FacilityGroupFacilitiesManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count', 'aggregates', 'grouped_aggregates', 'metric_data') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('Facility'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('FacilityGroupFacilitiesManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + aggregates = sgqlc.types.Field(FacilityAggregates, graphql_name='aggregates') + grouped_aggregates = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(FacilityAggregates)), graphql_name='groupedAggregates', args=sgqlc.types.ArgDict(( + ('group_by', sgqlc.types.Arg(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(FacilitiesGroupBy))), graphql_name='groupBy', default=None)), + ('having', sgqlc.types.Arg(FacilitiesHavingInput, graphql_name='having', default=None)), +)) + ) + metric_data = sgqlc.types.Field('MetricDataConnection', graphql_name='metricData', args=sgqlc.types.ArgDict(( + ('label', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='label', default=None)), + ('from_', sgqlc.types.Arg(String, graphql_name='from', default=None)), + ('to', sgqlc.types.Arg(String, graphql_name='to', default=None)), + ('aggregation', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataAggregationMethod), graphql_name='aggregation', default='SUM')), + ('window', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='window', default='1 day')), + ('sampling_window', sgqlc.types.Arg(String, graphql_name='samplingWindow', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataOrderBy), graphql_name='orderBy', default='TIME_ASC')), + ('unit', sgqlc.types.Arg(String, graphql_name='unit', default=None)), + ('unit_group', sgqlc.types.Arg(String, graphql_name='unitGroup', default=None)), +)) + ) + + +class FacilityGroupFacilitiesManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('Facility'), graphql_name='node') + + +class FacilityGroupsConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('FacilityGroup'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('FacilityGroupsEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class FacilityGroupsEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('FacilityGroup'), graphql_name='node') + + +class FacilityGroupsLinkersConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('FacilityGroupsLinker'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('FacilityGroupsLinkersEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class FacilityGroupsLinkersEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('FacilityGroupsLinker'), graphql_name='node') + + +class FacilityMachineUsersByComponentFacilityIdAndMachineUserIdManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('MachineUser'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('FacilityMachineUsersByComponentFacilityIdAndMachineUserIdManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class FacilityMachineUsersByComponentFacilityIdAndMachineUserIdManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'components') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('MachineUser'), graphql_name='node') + components = sgqlc.types.Field(sgqlc.types.non_null(ComponentsConnection), graphql_name='components', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ComponentsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ComponentCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ComponentFilter, graphql_name='filter', default=None)), +)) + ) + + +class FacilityMaxAggregates(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('id', 'latitude', 'longitude') + id = sgqlc.types.Field(Int, graphql_name='id') + latitude = sgqlc.types.Field(Float, graphql_name='latitude') + longitude = sgqlc.types.Field(Float, graphql_name='longitude') + + +class FacilityMinAggregates(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('id', 'latitude', 'longitude') + id = sgqlc.types.Field(Int, graphql_name='id') + latitude = sgqlc.types.Field(Float, graphql_name='latitude') + longitude = sgqlc.types.Field(Float, graphql_name='longitude') + + +class FacilityProgramsByProjectFacilityIdAndProgramIdManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('Program'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('FacilityProgramsByProjectFacilityIdAndProgramIdManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class FacilityProgramsByProjectFacilityIdAndProgramIdManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'projects') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('Program'), graphql_name='node') + projects = sgqlc.types.Field(sgqlc.types.non_null('ProjectsConnection'), graphql_name='projects', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProjectsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ProjectCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ProjectFilter, graphql_name='filter', default=None)), +)) + ) + + +class FacilityProjectTypesByProjectFacilityIdAndProjectTypeIdManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ProjectType'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('FacilityProjectTypesByProjectFacilityIdAndProjectTypeIdManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class FacilityProjectTypesByProjectFacilityIdAndProjectTypeIdManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'projects') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('ProjectType'), graphql_name='node') + projects = sgqlc.types.Field(sgqlc.types.non_null('ProjectsConnection'), graphql_name='projects', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProjectsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ProjectCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ProjectFilter, graphql_name='filter', default=None)), +)) + ) + + +class FacilityStddevPopulationAggregates(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('id', 'latitude', 'longitude') + id = sgqlc.types.Field(BigFloat, graphql_name='id') + latitude = sgqlc.types.Field(Float, graphql_name='latitude') + longitude = sgqlc.types.Field(Float, graphql_name='longitude') + + +class FacilityStddevSampleAggregates(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('id', 'latitude', 'longitude') + id = sgqlc.types.Field(BigFloat, graphql_name='id') + latitude = sgqlc.types.Field(Float, graphql_name='latitude') + longitude = sgqlc.types.Field(Float, graphql_name='longitude') + + +class FacilitySumAggregates(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('id', 'latitude', 'longitude') + id = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='id') + latitude = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='latitude') + longitude = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='longitude') + + +class FacilityUtilityAccountsByUtilityMeterFacilityIdAndUtilityAccountIdManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UtilityAccount'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('FacilityUtilityAccountsByUtilityMeterFacilityIdAndUtilityAccountIdManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class FacilityUtilityAccountsByUtilityMeterFacilityIdAndUtilityAccountIdManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'utility_meters') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('UtilityAccount'), graphql_name='node') + utility_meters = sgqlc.types.Field(sgqlc.types.non_null('UtilityMetersConnection'), graphql_name='utilityMeters', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMetersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityMeterCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityMeterFilter, graphql_name='filter', default=None)), +)) + ) + + +class FacilityUtilityAccountsByUtilityMeterStatementFacilityIdAndUtilityAccountIdManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UtilityAccount'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('FacilityUtilityAccountsByUtilityMeterStatementFacilityIdAndUtilityAccountIdManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class FacilityUtilityAccountsByUtilityMeterStatementFacilityIdAndUtilityAccountIdManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'utility_meter_statements') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('UtilityAccount'), graphql_name='node') + utility_meter_statements = sgqlc.types.Field(sgqlc.types.non_null('UtilityMeterStatementsConnection'), graphql_name='utilityMeterStatements', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMeterStatementsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityMeterStatementCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityMeterStatementFilter, graphql_name='filter', default=None)), +)) + ) + + +class FacilityUtilityAccountsByUtilityMeterStatementRollupFacilityIdAndUtilityAccountIdManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UtilityAccount'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('FacilityUtilityAccountsByUtilityMeterStatementRollupFacilityIdAndUtilityAccountIdManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class FacilityUtilityAccountsByUtilityMeterStatementRollupFacilityIdAndUtilityAccountIdManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'utility_meter_statement_rollups') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('UtilityAccount'), graphql_name='node') + utility_meter_statement_rollups = sgqlc.types.Field(sgqlc.types.non_null('UtilityMeterStatementRollupsConnection'), graphql_name='utilityMeterStatementRollups', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMeterStatementRollupsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityMeterStatementRollupCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityMeterStatementRollupFilter, graphql_name='filter', default=None)), +)) + ) + + +class FacilityUtilityMetersByUtilityMeterStatementFacilityIdAndUtilityMeterIdManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UtilityMeter'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('FacilityUtilityMetersByUtilityMeterStatementFacilityIdAndUtilityMeterIdManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class FacilityUtilityMetersByUtilityMeterStatementFacilityIdAndUtilityMeterIdManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'utility_meter_statements') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('UtilityMeter'), graphql_name='node') + utility_meter_statements = sgqlc.types.Field(sgqlc.types.non_null('UtilityMeterStatementsConnection'), graphql_name='utilityMeterStatements', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMeterStatementsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityMeterStatementCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityMeterStatementFilter, graphql_name='filter', default=None)), +)) + ) + + +class FacilityUtilityMetersByUtilityMeterStatementRollupFacilityIdAndUtilityMeterIdManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UtilityMeter'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('FacilityUtilityMetersByUtilityMeterStatementRollupFacilityIdAndUtilityMeterIdManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class FacilityUtilityMetersByUtilityMeterStatementRollupFacilityIdAndUtilityMeterIdManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'utility_meter_statement_rollups') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('UtilityMeter'), graphql_name='node') + utility_meter_statement_rollups = sgqlc.types.Field(sgqlc.types.non_null('UtilityMeterStatementRollupsConnection'), graphql_name='utilityMeterStatementRollups', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMeterStatementRollupsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityMeterStatementRollupCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityMeterStatementRollupFilter, graphql_name='filter', default=None)), +)) + ) + + +class FacilityVariancePopulationAggregates(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('id', 'latitude', 'longitude') + id = sgqlc.types.Field(BigFloat, graphql_name='id') + latitude = sgqlc.types.Field(Float, graphql_name='latitude') + longitude = sgqlc.types.Field(Float, graphql_name='longitude') + + +class FacilityVarianceSampleAggregates(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('id', 'latitude', 'longitude') + id = sgqlc.types.Field(BigFloat, graphql_name='id') + latitude = sgqlc.types.Field(Float, graphql_name='latitude') + longitude = sgqlc.types.Field(Float, graphql_name='longitude') + + +class FieldGroupDataPointsByProjectFieldGroupIdAndDataPointIdManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('DataPoint'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('FieldGroupDataPointsByProjectFieldGroupIdAndDataPointIdManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class FieldGroupDataPointsByProjectFieldGroupIdAndDataPointIdManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'project_fields') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('DataPoint'), graphql_name='node') + project_fields = sgqlc.types.Field(sgqlc.types.non_null('ProjectFieldsConnection'), graphql_name='projectFields', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProjectFieldsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ProjectFieldCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ProjectFieldFilter, graphql_name='filter', default=None)), +)) + ) + + +class FieldGroupProjectsByProjectFieldGroupIdAndProjectIdManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count', 'savings_event_data') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('Project'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('FieldGroupProjectsByProjectFieldGroupIdAndProjectIdManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + savings_event_data = sgqlc.types.Field('MetricDataConnection', graphql_name='savingsEventData', args=sgqlc.types.ArgDict(( + ('label', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='label', default=None)), + ('from_', sgqlc.types.Arg(String, graphql_name='from', default=None)), + ('to', sgqlc.types.Arg(String, graphql_name='to', default=None)), + ('aggregation', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataAggregationMethod), graphql_name='aggregation', default='SUM')), + ('window', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='window', default='1 day')), + ('sampling_window', sgqlc.types.Arg(String, graphql_name='samplingWindow', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataOrderBy), graphql_name='orderBy', default='TIME_ASC')), + ('unit', sgqlc.types.Arg(String, graphql_name='unit', default=None)), + ('unit_group', sgqlc.types.Arg(String, graphql_name='unitGroup', default=None)), +)) + ) + + +class FieldGroupProjectsByProjectFieldGroupIdAndProjectIdManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'project_fields') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('Project'), graphql_name='node') + project_fields = sgqlc.types.Field(sgqlc.types.non_null('ProjectFieldsConnection'), graphql_name='projectFields', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProjectFieldsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ProjectFieldCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ProjectFieldFilter, graphql_name='filter', default=None)), +)) + ) + + +class FieldGroupsConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('FieldGroup'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('FieldGroupsEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class FieldGroupsEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('FieldGroup'), graphql_name='node') + + +class GroupingEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(JSON, graphql_name='node') + + +class GroupingsConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(JSON)), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(GroupingEdge))), graphql_name='edges') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class GroupingsWithFacilitiesConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(JSON)), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('GroupingsWithFacilityEdge'))), graphql_name='edges') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class GroupingsWithFacilityEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(JSON, graphql_name='node') + + +class Interval(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('seconds', 'minutes', 'hours', 'days', 'months', 'years') + seconds = sgqlc.types.Field(Float, graphql_name='seconds') + minutes = sgqlc.types.Field(Int, graphql_name='minutes') + hours = sgqlc.types.Field(Int, graphql_name='hours') + days = sgqlc.types.Field(Int, graphql_name='days') + months = sgqlc.types.Field(Int, graphql_name='months') + years = sgqlc.types.Field(Int, graphql_name='years') + + +class MachineUserFacilitiesByComponentMachineUserIdAndFacilityIdManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count', 'aggregates', 'grouped_aggregates', 'metric_data') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('Facility'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('MachineUserFacilitiesByComponentMachineUserIdAndFacilityIdManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + aggregates = sgqlc.types.Field(FacilityAggregates, graphql_name='aggregates') + grouped_aggregates = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(FacilityAggregates)), graphql_name='groupedAggregates', args=sgqlc.types.ArgDict(( + ('group_by', sgqlc.types.Arg(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(FacilitiesGroupBy))), graphql_name='groupBy', default=None)), + ('having', sgqlc.types.Arg(FacilitiesHavingInput, graphql_name='having', default=None)), +)) + ) + metric_data = sgqlc.types.Field('MetricDataConnection', graphql_name='metricData', args=sgqlc.types.ArgDict(( + ('label', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='label', default=None)), + ('from_', sgqlc.types.Arg(String, graphql_name='from', default=None)), + ('to', sgqlc.types.Arg(String, graphql_name='to', default=None)), + ('aggregation', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataAggregationMethod), graphql_name='aggregation', default='SUM')), + ('window', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='window', default='1 day')), + ('sampling_window', sgqlc.types.Arg(String, graphql_name='samplingWindow', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataOrderBy), graphql_name='orderBy', default='TIME_ASC')), + ('unit', sgqlc.types.Arg(String, graphql_name='unit', default=None)), + ('unit_group', sgqlc.types.Arg(String, graphql_name='unitGroup', default=None)), +)) + ) + + +class MachineUserFacilitiesByComponentMachineUserIdAndFacilityIdManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'components') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('Facility'), graphql_name='node') + components = sgqlc.types.Field(sgqlc.types.non_null(ComponentsConnection), graphql_name='components', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ComponentsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ComponentCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ComponentFilter, graphql_name='filter', default=None)), +)) + ) + + +class MachineUserPermissions(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('can_write',) + can_write = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='canWrite') + + +class MachineUsersConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('MachineUser'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('MachineUsersEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class MachineUsersEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('MachineUser'), graphql_name='node') + + +class MainServicesConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('MainService'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('MainServicesEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class MainServicesEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('MainService'), graphql_name='node') + + +class MeterChargesConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('MeterCharge'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('MeterChargesEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class MeterChargesEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('MeterCharge'), graphql_name='node') + + +class MeterStatementHistoriesConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('MeterStatementHistory'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('MeterStatementHistoriesEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class MeterStatementHistoriesEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('MeterStatementHistory'), graphql_name='node') + + +class MeterStatementHistory(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('meter_statement_id', 'description', 'created_at', 'meter_statement') + meter_statement_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='meterStatementId') + description = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='description') + created_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='createdAt') + meter_statement = sgqlc.types.Field('MeterStatement', graphql_name='meterStatement') + + +class MeterStatementsChargeEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('MeterStatementsChargesRecord'), graphql_name='node') + + +class MeterStatementsChargesConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('MeterStatementsChargesRecord'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(MeterStatementsChargeEdge))), graphql_name='edges') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class MeterStatementsChargesRecord(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('category', 'value') + category = sgqlc.types.Field(UtilityMeterChargeCategory, graphql_name='category') + value = sgqlc.types.Field(Float, graphql_name='value') + + +class MeterStatementsConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('MeterStatement'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('MeterStatementsEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class MeterStatementsEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('MeterStatement'), graphql_name='node') + + +class MeterStatementsNormalizedChargeEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('MeterStatementsNormalizedChargesRecord'), graphql_name='node') + + +class MeterStatementsNormalizedChargesConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('MeterStatementsNormalizedChargesRecord'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(MeterStatementsNormalizedChargeEdge))), graphql_name='edges') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class MeterStatementsNormalizedChargesRecord(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('category', 'value') + category = sgqlc.types.Field(UtilityMeterChargeCategory, graphql_name='category') + value = sgqlc.types.Field(Float, graphql_name='value') + + +class MeterUsagesConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('MeterUsage'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('MeterUsagesEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class MeterUsagesEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('MeterUsage'), graphql_name='node') + + +class MetricAggregate(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('avg', 'count', 'first', 'last', 'max', 'median', 'min', 'sum') + avg = sgqlc.types.Field(JSON, graphql_name='AVG') + count = sgqlc.types.Field(JSON, graphql_name='COUNT') + first = sgqlc.types.Field(JSON, graphql_name='FIRST') + last = sgqlc.types.Field(JSON, graphql_name='LAST') + max = sgqlc.types.Field(JSON, graphql_name='MAX') + median = sgqlc.types.Field(JSON, graphql_name='MEDIAN') + min = sgqlc.types.Field(JSON, graphql_name='MIN') + sum = sgqlc.types.Field(JSON, graphql_name='SUM') + + +class MetricDataConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('edges', 'nodes', 'page_info', 'total_count', 'aggregates', 'explain') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('MetricDataEdge'))), graphql_name='edges') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('MetricData'))), graphql_name='nodes') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + aggregates = sgqlc.types.Field(MetricAggregate, graphql_name='aggregates') + explain = sgqlc.types.Field('MetricDataExplain', graphql_name='explain') + + +class MetricDataEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('MetricData'), graphql_name='node') + + +class MetricDataExplain(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('unit',) + unit = sgqlc.types.Field(String, graphql_name='unit') + + +class MetricMetadataConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('MetricMetadatum'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('MetricMetadataEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class MetricMetadataEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('MetricMetadatum'), graphql_name='node') + + +class Mutation(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('create_account_charge', 'create_account_statement_history', 'create_account_statement', 'create_balancing_authority', 'create_building_area_type', 'create_building_area', 'create_component', 'create_control_event_log', 'create_control_event', 'create_data_point', 'create_data_source', 'create_dependency', 'create_facility', 'create_facility_communication', 'create_facility_data_source', 'create_facility_group', 'create_facility_groups_linker', 'create_field_group', 'create_machine_user', 'create_meter_charge', 'create_meter_statement_history', 'create_meter_statement', 'create_meter_usage', 'create_program', 'create_project_component', 'create_project_field', 'create_project_watcher', 'create_project', 'create_report_execution', 'create_savings_event', 'create_suggestion_activity_log', 'create_suggestion_control_event', 'create_suggestion', 'create_utility_account', 'create_utility_meter', 'create_utility_provider', 'create_vendor_user_machine_user', 'create_vendor_user', 'create_virtual_point_interval', 'update_account_charge_by_node_id', 'update_account_charge', 'update_account_statement_by_node_id', 'update_account_statement', 'update_building_area_type_by_node_id', 'update_building_area_type', 'update_building_area_by_node_id', 'update_building_area', 'update_building_area_by_facility_id_and_label', 'update_component_by_node_id', 'update_component', 'update_control_event_log_by_node_id', 'update_control_event_log', 'update_control_event_by_node_id', 'update_control_event', 'update_data_point_by_node_id', 'update_data_point', 'update_data_point_by_data_source_name_and_name', 'update_dependency_by_node_id', 'update_dependency', 'update_dependency_by_path', 'update_facility_by_node_id', 'update_facility', 'update_facility_by_slug', 'update_facility_group_by_node_id', 'update_facility_group', 'update_facility_groups_linker_by_node_id', 'update_facility_groups_linker', 'update_field_group_by_node_id', 'update_field_group', 'update_machine_user_by_node_id', 'update_machine_user', 'update_meter_charge_by_node_id', 'update_meter_charge', 'update_meter_statement_by_node_id', 'update_meter_statement', 'update_meter_usage_by_node_id', 'update_meter_usage', 'update_program_by_node_id', 'update_program', 'update_program_by_project_type_id_and_name', 'update_project_component_by_node_id', 'update_project_component', 'update_project_field_by_node_id', 'update_project_field_by_project_id_and_field_id', 'update_project_field', 'update_project_watcher_by_node_id', 'update_project_watcher', 'update_project_by_node_id', 'update_project', 'update_report_execution_by_node_id', 'update_report_execution', 'update_savings_event_by_node_id', 'update_savings_event', 'update_savings_event_by_project_id_and_start_time_and_end_time', 'update_suggestion_control_event_by_node_id', 'update_suggestion_control_event', 'update_suggestion_control_event_by_control_event_id', 'update_suggestion_by_node_id', 'update_suggestion', 'update_user_by_node_id', 'update_user', 'update_utility_account_by_node_id', 'update_utility_account', 'update_utility_meter_by_node_id', 'update_utility_meter', 'update_utility_provider_by_node_id', 'update_utility_provider', 'update_utility_provider_by_name', 'update_vendor_user_machine_user_by_node_id', 'update_vendor_user_machine_user', 'update_vendor_user_machine_user_by_machine_user_id', 'update_vendor_user_by_node_id', 'update_vendor_user', 'update_vendor_user_by_email', 'update_virtual_point_interval_by_node_id', 'update_virtual_point_interval', 'delete_building_area_type_by_node_id', 'delete_building_area_type', 'delete_building_area_by_node_id', 'delete_building_area', 'delete_building_area_by_facility_id_and_label', 'delete_component_by_node_id', 'delete_component', 'delete_control_event_log_by_node_id', 'delete_control_event_log', 'delete_control_event_by_node_id', 'delete_control_event', 'delete_data_point_by_node_id', 'delete_data_point', 'delete_data_point_by_data_source_name_and_name', 'delete_data_source_by_node_id', 'delete_data_source', 'delete_dependency_by_node_id', 'delete_dependency', 'delete_dependency_by_path', 'delete_facility_by_node_id', 'delete_facility', 'delete_facility_by_slug', 'delete_facility_data_source_by_node_id', 'delete_facility_data_source', 'delete_facility_group_by_node_id', 'delete_facility_group', 'delete_facility_groups_linker_by_node_id', 'delete_facility_groups_linker', 'delete_field_group_by_node_id', 'delete_field_group', 'delete_machine_user_by_node_id', 'delete_machine_user', 'delete_program_by_node_id', 'delete_program', 'delete_program_by_project_type_id_and_name', 'delete_project_component_by_node_id', 'delete_project_component', 'delete_project_field_by_node_id', 'delete_project_field_by_project_id_and_field_id', 'delete_project_field', 'delete_project_watcher_by_node_id', 'delete_project_watcher', 'delete_project_by_node_id', 'delete_project', 'delete_report_execution_by_node_id', 'delete_report_execution', 'delete_savings_event_by_node_id', 'delete_savings_event', 'delete_savings_event_by_project_id_and_start_time_and_end_time', 'delete_suggestion_control_event_by_node_id', 'delete_suggestion_control_event', 'delete_suggestion_control_event_by_control_event_id', 'delete_user_by_node_id', 'delete_user', 'delete_utility_provider_by_node_id', 'delete_utility_provider', 'delete_utility_provider_by_name', 'delete_vendor_user_machine_user_by_node_id', 'delete_vendor_user_machine_user', 'delete_vendor_user_machine_user_by_machine_user_id', 'delete_vendor_user_by_node_id', 'delete_vendor_user', 'delete_vendor_user_by_email', 'delete_virtual_point_interval_by_node_id', 'delete_virtual_point_interval', 'add_favorite_facility', 'add_metric_metadata_dependency', 'clear_facility_communication', 'delete_account_charge', 'delete_account_statement', 'delete_meter_charge', 'delete_meter_statement', 'delete_meter_usage', 'delete_utility_account', 'delete_utility_meter', 'patch_control_event_remote_metadata', 'remove_favorite_facility', 'remove_metric_metadata_dependency', 'reparent_meter_statement', 'upsert_project_subscription', 'upsert_urjanet_utility_provider', 'upsert_account_charge', 'upsert_account_statement', 'upsert_balancing_authority', 'upsert_building_area_type', 'upsert_building_area', 'upsert_data_point', 'upsert_dependency', 'upsert_field_group', 'upsert_machine_user', 'upsert_meter_charge', 'upsert_meter_statement', 'upsert_meter_usage', 'upsert_program', 'upsert_project_component', 'upsert_project_field', 'upsert_project_watcher', 'upsert_report_execution', 'upsert_report_query', 'upsert_savings_event', 'upsert_suggestion_control_event', 'upsert_utility_account', 'upsert_utility_meter', 'upsert_utility_provider', 'upsert_vendor_user_machine_user', 'upsert_virtual_point_interval', 'update_phone_number', 'delete_phone_number', 'delete_mutable_metric_data', 'delete_facility_mutable_metric_data', 'update_mutable_metric_data', 'update_facility_mutable_metric_data', 'add_project_controller', 'remove_project_controller', 'withdraw_suggestion', 'acknowledge_suggestion', 'transition_control_event', 'acknowledge_control_event', 'extend', 'create_user_access_token', 'create_machine_access_token', 'revoke_access_token', 'regenerate_access_token', 'run_report', 'trigger_phone_number_verification', 'set_machine_user_capability') + create_account_charge = sgqlc.types.Field(CreateAccountChargePayload, graphql_name='createAccountCharge', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(CreateAccountChargeInput), graphql_name='input', default=None)), +)) + ) + create_account_statement_history = sgqlc.types.Field(CreateAccountStatementHistoryPayload, graphql_name='createAccountStatementHistory', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(CreateAccountStatementHistoryInput), graphql_name='input', default=None)), +)) + ) + create_account_statement = sgqlc.types.Field(CreateAccountStatementPayload, graphql_name='createAccountStatement', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(CreateAccountStatementInput), graphql_name='input', default=None)), +)) + ) + create_balancing_authority = sgqlc.types.Field(CreateBalancingAuthorityPayload, graphql_name='createBalancingAuthority', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(CreateBalancingAuthorityInput), graphql_name='input', default=None)), +)) + ) + create_building_area_type = sgqlc.types.Field(CreateBuildingAreaTypePayload, graphql_name='createBuildingAreaType', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(CreateBuildingAreaTypeInput), graphql_name='input', default=None)), +)) + ) + create_building_area = sgqlc.types.Field(CreateBuildingAreaPayload, graphql_name='createBuildingArea', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(CreateBuildingAreaInput), graphql_name='input', default=None)), +)) + ) + create_component = sgqlc.types.Field(CreateComponentPayload, graphql_name='createComponent', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(CreateComponentInput), graphql_name='input', default=None)), +)) + ) + create_control_event_log = sgqlc.types.Field(CreateControlEventLogPayload, graphql_name='createControlEventLog', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(CreateControlEventLogInput), graphql_name='input', default=None)), +)) + ) + create_control_event = sgqlc.types.Field(CreateControlEventPayload, graphql_name='createControlEvent', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(CreateControlEventInput), graphql_name='input', default=None)), +)) + ) + create_data_point = sgqlc.types.Field(CreateDataPointPayload, graphql_name='createDataPoint', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(CreateDataPointInput), graphql_name='input', default=None)), +)) + ) + create_data_source = sgqlc.types.Field(CreateDataSourcePayload, graphql_name='createDataSource', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(CreateDataSourceInput), graphql_name='input', default=None)), +)) + ) + create_dependency = sgqlc.types.Field(CreateDependencyPayload, graphql_name='createDependency', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(CreateDependencyInput), graphql_name='input', default=None)), +)) + ) + create_facility = sgqlc.types.Field(CreateFacilityPayload, graphql_name='createFacility', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(CreateFacilityInput), graphql_name='input', default=None)), +)) + ) + create_facility_communication = sgqlc.types.Field(CreateFacilityCommunicationPayload, graphql_name='createFacilityCommunication', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(CreateFacilityCommunicationInput), graphql_name='input', default=None)), +)) + ) + create_facility_data_source = sgqlc.types.Field(CreateFacilityDataSourcePayload, graphql_name='createFacilityDataSource', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(CreateFacilityDataSourceInput), graphql_name='input', default=None)), +)) + ) + create_facility_group = sgqlc.types.Field(CreateFacilityGroupPayload, graphql_name='createFacilityGroup', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(CreateFacilityGroupInput), graphql_name='input', default=None)), +)) + ) + create_facility_groups_linker = sgqlc.types.Field(CreateFacilityGroupsLinkerPayload, graphql_name='createFacilityGroupsLinker', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(CreateFacilityGroupsLinkerInput), graphql_name='input', default=None)), +)) + ) + create_field_group = sgqlc.types.Field(CreateFieldGroupPayload, graphql_name='createFieldGroup', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(CreateFieldGroupInput), graphql_name='input', default=None)), +)) + ) + create_machine_user = sgqlc.types.Field(CreateMachineUserPayload, graphql_name='createMachineUser', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(CreateMachineUserInput), graphql_name='input', default=None)), +)) + ) + create_meter_charge = sgqlc.types.Field(CreateMeterChargePayload, graphql_name='createMeterCharge', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(CreateMeterChargeInput), graphql_name='input', default=None)), +)) + ) + create_meter_statement_history = sgqlc.types.Field(CreateMeterStatementHistoryPayload, graphql_name='createMeterStatementHistory', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(CreateMeterStatementHistoryInput), graphql_name='input', default=None)), +)) + ) + create_meter_statement = sgqlc.types.Field(CreateMeterStatementPayload, graphql_name='createMeterStatement', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(CreateMeterStatementInput), graphql_name='input', default=None)), +)) + ) + create_meter_usage = sgqlc.types.Field(CreateMeterUsagePayload, graphql_name='createMeterUsage', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(CreateMeterUsageInput), graphql_name='input', default=None)), +)) + ) + create_program = sgqlc.types.Field(CreateProgramPayload, graphql_name='createProgram', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(CreateProgramInput), graphql_name='input', default=None)), +)) + ) + create_project_component = sgqlc.types.Field(CreateProjectComponentPayload, graphql_name='createProjectComponent', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(CreateProjectComponentInput), graphql_name='input', default=None)), +)) + ) + create_project_field = sgqlc.types.Field(CreateProjectFieldPayload, graphql_name='createProjectField', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(CreateProjectFieldInput), graphql_name='input', default=None)), +)) + ) + create_project_watcher = sgqlc.types.Field(CreateProjectWatcherPayload, graphql_name='createProjectWatcher', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(CreateProjectWatcherInput), graphql_name='input', default=None)), +)) + ) + create_project = sgqlc.types.Field(CreateProjectPayload, graphql_name='createProject', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(CreateProjectInput), graphql_name='input', default=None)), +)) + ) + create_report_execution = sgqlc.types.Field(CreateReportExecutionPayload, graphql_name='createReportExecution', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(CreateReportExecutionInput), graphql_name='input', default=None)), +)) + ) + create_savings_event = sgqlc.types.Field(CreateSavingsEventPayload, graphql_name='createSavingsEvent', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(CreateSavingsEventInput), graphql_name='input', default=None)), +)) + ) + create_suggestion_activity_log = sgqlc.types.Field(CreateSuggestionActivityLogPayload, graphql_name='createSuggestionActivityLog', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(CreateSuggestionActivityLogInput), graphql_name='input', default=None)), +)) + ) + create_suggestion_control_event = sgqlc.types.Field(CreateSuggestionControlEventPayload, graphql_name='createSuggestionControlEvent', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(CreateSuggestionControlEventInput), graphql_name='input', default=None)), +)) + ) + create_suggestion = sgqlc.types.Field(CreateSuggestionPayload, graphql_name='createSuggestion', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(CreateSuggestionInput), graphql_name='input', default=None)), +)) + ) + create_utility_account = sgqlc.types.Field(CreateUtilityAccountPayload, graphql_name='createUtilityAccount', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(CreateUtilityAccountInput), graphql_name='input', default=None)), +)) + ) + create_utility_meter = sgqlc.types.Field(CreateUtilityMeterPayload, graphql_name='createUtilityMeter', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(CreateUtilityMeterInput), graphql_name='input', default=None)), +)) + ) + create_utility_provider = sgqlc.types.Field(CreateUtilityProviderPayload, graphql_name='createUtilityProvider', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(CreateUtilityProviderInput), graphql_name='input', default=None)), +)) + ) + create_vendor_user_machine_user = sgqlc.types.Field(CreateVendorUserMachineUserPayload, graphql_name='createVendorUserMachineUser', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(CreateVendorUserMachineUserInput), graphql_name='input', default=None)), +)) + ) + create_vendor_user = sgqlc.types.Field(CreateVendorUserPayload, graphql_name='createVendorUser', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(CreateVendorUserInput), graphql_name='input', default=None)), +)) + ) + create_virtual_point_interval = sgqlc.types.Field(CreateVirtualPointIntervalPayload, graphql_name='createVirtualPointInterval', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(CreateVirtualPointIntervalInput), graphql_name='input', default=None)), +)) + ) + update_account_charge_by_node_id = sgqlc.types.Field('UpdateAccountChargePayload', graphql_name='updateAccountChargeByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateAccountChargeByNodeIdInput), graphql_name='input', default=None)), +)) + ) + update_account_charge = sgqlc.types.Field('UpdateAccountChargePayload', graphql_name='updateAccountCharge', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateAccountChargeInput), graphql_name='input', default=None)), +)) + ) + update_account_statement_by_node_id = sgqlc.types.Field('UpdateAccountStatementPayload', graphql_name='updateAccountStatementByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateAccountStatementByNodeIdInput), graphql_name='input', default=None)), +)) + ) + update_account_statement = sgqlc.types.Field('UpdateAccountStatementPayload', graphql_name='updateAccountStatement', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateAccountStatementInput), graphql_name='input', default=None)), +)) + ) + update_building_area_type_by_node_id = sgqlc.types.Field('UpdateBuildingAreaTypePayload', graphql_name='updateBuildingAreaTypeByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateBuildingAreaTypeByNodeIdInput), graphql_name='input', default=None)), +)) + ) + update_building_area_type = sgqlc.types.Field('UpdateBuildingAreaTypePayload', graphql_name='updateBuildingAreaType', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateBuildingAreaTypeInput), graphql_name='input', default=None)), +)) + ) + update_building_area_by_node_id = sgqlc.types.Field('UpdateBuildingAreaPayload', graphql_name='updateBuildingAreaByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateBuildingAreaByNodeIdInput), graphql_name='input', default=None)), +)) + ) + update_building_area = sgqlc.types.Field('UpdateBuildingAreaPayload', graphql_name='updateBuildingArea', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateBuildingAreaInput), graphql_name='input', default=None)), +)) + ) + update_building_area_by_facility_id_and_label = sgqlc.types.Field('UpdateBuildingAreaPayload', graphql_name='updateBuildingAreaByFacilityIdAndLabel', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateBuildingAreaByFacilityIdAndLabelInput), graphql_name='input', default=None)), +)) + ) + update_component_by_node_id = sgqlc.types.Field('UpdateComponentPayload', graphql_name='updateComponentByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateComponentByNodeIdInput), graphql_name='input', default=None)), +)) + ) + update_component = sgqlc.types.Field('UpdateComponentPayload', graphql_name='updateComponent', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateComponentInput), graphql_name='input', default=None)), +)) + ) + update_control_event_log_by_node_id = sgqlc.types.Field('UpdateControlEventLogPayload', graphql_name='updateControlEventLogByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateControlEventLogByNodeIdInput), graphql_name='input', default=None)), +)) + ) + update_control_event_log = sgqlc.types.Field('UpdateControlEventLogPayload', graphql_name='updateControlEventLog', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateControlEventLogInput), graphql_name='input', default=None)), +)) + ) + update_control_event_by_node_id = sgqlc.types.Field('UpdateControlEventPayload', graphql_name='updateControlEventByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateControlEventByNodeIdInput), graphql_name='input', default=None)), +)) + ) + update_control_event = sgqlc.types.Field('UpdateControlEventPayload', graphql_name='updateControlEvent', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateControlEventInput), graphql_name='input', default=None)), +)) + ) + update_data_point_by_node_id = sgqlc.types.Field('UpdateDataPointPayload', graphql_name='updateDataPointByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateDataPointByNodeIdInput), graphql_name='input', default=None)), +)) + ) + update_data_point = sgqlc.types.Field('UpdateDataPointPayload', graphql_name='updateDataPoint', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateDataPointInput), graphql_name='input', default=None)), +)) + ) + update_data_point_by_data_source_name_and_name = sgqlc.types.Field('UpdateDataPointPayload', graphql_name='updateDataPointByDataSourceNameAndName', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateDataPointByDataSourceNameAndNameInput), graphql_name='input', default=None)), +)) + ) + update_dependency_by_node_id = sgqlc.types.Field('UpdateDependencyPayload', graphql_name='updateDependencyByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateDependencyByNodeIdInput), graphql_name='input', default=None)), +)) + ) + update_dependency = sgqlc.types.Field('UpdateDependencyPayload', graphql_name='updateDependency', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateDependencyInput), graphql_name='input', default=None)), +)) + ) + update_dependency_by_path = sgqlc.types.Field('UpdateDependencyPayload', graphql_name='updateDependencyByPath', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateDependencyByPathInput), graphql_name='input', default=None)), +)) + ) + update_facility_by_node_id = sgqlc.types.Field('UpdateFacilityPayload', graphql_name='updateFacilityByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateFacilityByNodeIdInput), graphql_name='input', default=None)), +)) + ) + update_facility = sgqlc.types.Field('UpdateFacilityPayload', graphql_name='updateFacility', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateFacilityInput), graphql_name='input', default=None)), +)) + ) + update_facility_by_slug = sgqlc.types.Field('UpdateFacilityPayload', graphql_name='updateFacilityBySlug', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateFacilityBySlugInput), graphql_name='input', default=None)), +)) + ) + update_facility_group_by_node_id = sgqlc.types.Field('UpdateFacilityGroupPayload', graphql_name='updateFacilityGroupByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateFacilityGroupByNodeIdInput), graphql_name='input', default=None)), +)) + ) + update_facility_group = sgqlc.types.Field('UpdateFacilityGroupPayload', graphql_name='updateFacilityGroup', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateFacilityGroupInput), graphql_name='input', default=None)), +)) + ) + update_facility_groups_linker_by_node_id = sgqlc.types.Field('UpdateFacilityGroupsLinkerPayload', graphql_name='updateFacilityGroupsLinkerByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateFacilityGroupsLinkerByNodeIdInput), graphql_name='input', default=None)), +)) + ) + update_facility_groups_linker = sgqlc.types.Field('UpdateFacilityGroupsLinkerPayload', graphql_name='updateFacilityGroupsLinker', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateFacilityGroupsLinkerInput), graphql_name='input', default=None)), +)) + ) + update_field_group_by_node_id = sgqlc.types.Field('UpdateFieldGroupPayload', graphql_name='updateFieldGroupByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateFieldGroupByNodeIdInput), graphql_name='input', default=None)), +)) + ) + update_field_group = sgqlc.types.Field('UpdateFieldGroupPayload', graphql_name='updateFieldGroup', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateFieldGroupInput), graphql_name='input', default=None)), +)) + ) + update_machine_user_by_node_id = sgqlc.types.Field('UpdateMachineUserPayload', graphql_name='updateMachineUserByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateMachineUserByNodeIdInput), graphql_name='input', default=None)), +)) + ) + update_machine_user = sgqlc.types.Field('UpdateMachineUserPayload', graphql_name='updateMachineUser', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateMachineUserInput), graphql_name='input', default=None)), +)) + ) + update_meter_charge_by_node_id = sgqlc.types.Field('UpdateMeterChargePayload', graphql_name='updateMeterChargeByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateMeterChargeByNodeIdInput), graphql_name='input', default=None)), +)) + ) + update_meter_charge = sgqlc.types.Field('UpdateMeterChargePayload', graphql_name='updateMeterCharge', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateMeterChargeInput), graphql_name='input', default=None)), +)) + ) + update_meter_statement_by_node_id = sgqlc.types.Field('UpdateMeterStatementPayload', graphql_name='updateMeterStatementByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateMeterStatementByNodeIdInput), graphql_name='input', default=None)), +)) + ) + update_meter_statement = sgqlc.types.Field('UpdateMeterStatementPayload', graphql_name='updateMeterStatement', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateMeterStatementInput), graphql_name='input', default=None)), +)) + ) + update_meter_usage_by_node_id = sgqlc.types.Field('UpdateMeterUsagePayload', graphql_name='updateMeterUsageByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateMeterUsageByNodeIdInput), graphql_name='input', default=None)), +)) + ) + update_meter_usage = sgqlc.types.Field('UpdateMeterUsagePayload', graphql_name='updateMeterUsage', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateMeterUsageInput), graphql_name='input', default=None)), +)) + ) + update_program_by_node_id = sgqlc.types.Field('UpdateProgramPayload', graphql_name='updateProgramByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateProgramByNodeIdInput), graphql_name='input', default=None)), +)) + ) + update_program = sgqlc.types.Field('UpdateProgramPayload', graphql_name='updateProgram', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateProgramInput), graphql_name='input', default=None)), +)) + ) + update_program_by_project_type_id_and_name = sgqlc.types.Field('UpdateProgramPayload', graphql_name='updateProgramByProjectTypeIdAndName', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateProgramByProjectTypeIdAndNameInput), graphql_name='input', default=None)), +)) + ) + update_project_component_by_node_id = sgqlc.types.Field('UpdateProjectComponentPayload', graphql_name='updateProjectComponentByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateProjectComponentByNodeIdInput), graphql_name='input', default=None)), +)) + ) + update_project_component = sgqlc.types.Field('UpdateProjectComponentPayload', graphql_name='updateProjectComponent', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateProjectComponentInput), graphql_name='input', default=None)), +)) + ) + update_project_field_by_node_id = sgqlc.types.Field('UpdateProjectFieldPayload', graphql_name='updateProjectFieldByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateProjectFieldByNodeIdInput), graphql_name='input', default=None)), +)) + ) + update_project_field_by_project_id_and_field_id = sgqlc.types.Field('UpdateProjectFieldPayload', graphql_name='updateProjectFieldByProjectIdAndFieldId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateProjectFieldByProjectIdAndFieldIdInput), graphql_name='input', default=None)), +)) + ) + update_project_field = sgqlc.types.Field('UpdateProjectFieldPayload', graphql_name='updateProjectField', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateProjectFieldInput), graphql_name='input', default=None)), +)) + ) + update_project_watcher_by_node_id = sgqlc.types.Field('UpdateProjectWatcherPayload', graphql_name='updateProjectWatcherByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateProjectWatcherByNodeIdInput), graphql_name='input', default=None)), +)) + ) + update_project_watcher = sgqlc.types.Field('UpdateProjectWatcherPayload', graphql_name='updateProjectWatcher', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateProjectWatcherInput), graphql_name='input', default=None)), +)) + ) + update_project_by_node_id = sgqlc.types.Field('UpdateProjectPayload', graphql_name='updateProjectByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateProjectByNodeIdInput), graphql_name='input', default=None)), +)) + ) + update_project = sgqlc.types.Field('UpdateProjectPayload', graphql_name='updateProject', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateProjectInput), graphql_name='input', default=None)), +)) + ) + update_report_execution_by_node_id = sgqlc.types.Field('UpdateReportExecutionPayload', graphql_name='updateReportExecutionByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateReportExecutionByNodeIdInput), graphql_name='input', default=None)), +)) + ) + update_report_execution = sgqlc.types.Field('UpdateReportExecutionPayload', graphql_name='updateReportExecution', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateReportExecutionInput), graphql_name='input', default=None)), +)) + ) + update_savings_event_by_node_id = sgqlc.types.Field('UpdateSavingsEventPayload', graphql_name='updateSavingsEventByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateSavingsEventByNodeIdInput), graphql_name='input', default=None)), +)) + ) + update_savings_event = sgqlc.types.Field('UpdateSavingsEventPayload', graphql_name='updateSavingsEvent', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateSavingsEventInput), graphql_name='input', default=None)), +)) + ) + update_savings_event_by_project_id_and_start_time_and_end_time = sgqlc.types.Field('UpdateSavingsEventPayload', graphql_name='updateSavingsEventByProjectIdAndStartTimeAndEndTime', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateSavingsEventByProjectIdAndStartTimeAndEndTimeInput), graphql_name='input', default=None)), +)) + ) + update_suggestion_control_event_by_node_id = sgqlc.types.Field('UpdateSuggestionControlEventPayload', graphql_name='updateSuggestionControlEventByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateSuggestionControlEventByNodeIdInput), graphql_name='input', default=None)), +)) + ) + update_suggestion_control_event = sgqlc.types.Field('UpdateSuggestionControlEventPayload', graphql_name='updateSuggestionControlEvent', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateSuggestionControlEventInput), graphql_name='input', default=None)), +)) + ) + update_suggestion_control_event_by_control_event_id = sgqlc.types.Field('UpdateSuggestionControlEventPayload', graphql_name='updateSuggestionControlEventByControlEventId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateSuggestionControlEventByControlEventIdInput), graphql_name='input', default=None)), +)) + ) + update_suggestion_by_node_id = sgqlc.types.Field('UpdateSuggestionPayload', graphql_name='updateSuggestionByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateSuggestionByNodeIdInput), graphql_name='input', default=None)), +)) + ) + update_suggestion = sgqlc.types.Field('UpdateSuggestionPayload', graphql_name='updateSuggestion', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateSuggestionInput), graphql_name='input', default=None)), +)) + ) + update_user_by_node_id = sgqlc.types.Field('UpdateUserPayload', graphql_name='updateUserByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateUserByNodeIdInput), graphql_name='input', default=None)), +)) + ) + update_user = sgqlc.types.Field('UpdateUserPayload', graphql_name='updateUser', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateUserInput), graphql_name='input', default=None)), +)) + ) + update_utility_account_by_node_id = sgqlc.types.Field('UpdateUtilityAccountPayload', graphql_name='updateUtilityAccountByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateUtilityAccountByNodeIdInput), graphql_name='input', default=None)), +)) + ) + update_utility_account = sgqlc.types.Field('UpdateUtilityAccountPayload', graphql_name='updateUtilityAccount', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateUtilityAccountInput), graphql_name='input', default=None)), +)) + ) + update_utility_meter_by_node_id = sgqlc.types.Field('UpdateUtilityMeterPayload', graphql_name='updateUtilityMeterByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateUtilityMeterByNodeIdInput), graphql_name='input', default=None)), +)) + ) + update_utility_meter = sgqlc.types.Field('UpdateUtilityMeterPayload', graphql_name='updateUtilityMeter', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateUtilityMeterInput), graphql_name='input', default=None)), +)) + ) + update_utility_provider_by_node_id = sgqlc.types.Field('UpdateUtilityProviderPayload', graphql_name='updateUtilityProviderByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateUtilityProviderByNodeIdInput), graphql_name='input', default=None)), +)) + ) + update_utility_provider = sgqlc.types.Field('UpdateUtilityProviderPayload', graphql_name='updateUtilityProvider', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateUtilityProviderInput), graphql_name='input', default=None)), +)) + ) + update_utility_provider_by_name = sgqlc.types.Field('UpdateUtilityProviderPayload', graphql_name='updateUtilityProviderByName', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateUtilityProviderByNameInput), graphql_name='input', default=None)), +)) + ) + update_vendor_user_machine_user_by_node_id = sgqlc.types.Field('UpdateVendorUserMachineUserPayload', graphql_name='updateVendorUserMachineUserByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateVendorUserMachineUserByNodeIdInput), graphql_name='input', default=None)), +)) + ) + update_vendor_user_machine_user = sgqlc.types.Field('UpdateVendorUserMachineUserPayload', graphql_name='updateVendorUserMachineUser', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateVendorUserMachineUserInput), graphql_name='input', default=None)), +)) + ) + update_vendor_user_machine_user_by_machine_user_id = sgqlc.types.Field('UpdateVendorUserMachineUserPayload', graphql_name='updateVendorUserMachineUserByMachineUserId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateVendorUserMachineUserByMachineUserIdInput), graphql_name='input', default=None)), +)) + ) + update_vendor_user_by_node_id = sgqlc.types.Field('UpdateVendorUserPayload', graphql_name='updateVendorUserByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateVendorUserByNodeIdInput), graphql_name='input', default=None)), +)) + ) + update_vendor_user = sgqlc.types.Field('UpdateVendorUserPayload', graphql_name='updateVendorUser', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateVendorUserInput), graphql_name='input', default=None)), +)) + ) + update_vendor_user_by_email = sgqlc.types.Field('UpdateVendorUserPayload', graphql_name='updateVendorUserByEmail', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateVendorUserByEmailInput), graphql_name='input', default=None)), +)) + ) + update_virtual_point_interval_by_node_id = sgqlc.types.Field('UpdateVirtualPointIntervalPayload', graphql_name='updateVirtualPointIntervalByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateVirtualPointIntervalByNodeIdInput), graphql_name='input', default=None)), +)) + ) + update_virtual_point_interval = sgqlc.types.Field('UpdateVirtualPointIntervalPayload', graphql_name='updateVirtualPointInterval', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateVirtualPointIntervalInput), graphql_name='input', default=None)), +)) + ) + delete_building_area_type_by_node_id = sgqlc.types.Field(DeleteBuildingAreaTypePayload, graphql_name='deleteBuildingAreaTypeByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteBuildingAreaTypeByNodeIdInput), graphql_name='input', default=None)), +)) + ) + delete_building_area_type = sgqlc.types.Field(DeleteBuildingAreaTypePayload, graphql_name='deleteBuildingAreaType', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteBuildingAreaTypeInput), graphql_name='input', default=None)), +)) + ) + delete_building_area_by_node_id = sgqlc.types.Field(DeleteBuildingAreaPayload, graphql_name='deleteBuildingAreaByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteBuildingAreaByNodeIdInput), graphql_name='input', default=None)), +)) + ) + delete_building_area = sgqlc.types.Field(DeleteBuildingAreaPayload, graphql_name='deleteBuildingArea', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteBuildingAreaInput), graphql_name='input', default=None)), +)) + ) + delete_building_area_by_facility_id_and_label = sgqlc.types.Field(DeleteBuildingAreaPayload, graphql_name='deleteBuildingAreaByFacilityIdAndLabel', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteBuildingAreaByFacilityIdAndLabelInput), graphql_name='input', default=None)), +)) + ) + delete_component_by_node_id = sgqlc.types.Field(DeleteComponentPayload, graphql_name='deleteComponentByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteComponentByNodeIdInput), graphql_name='input', default=None)), +)) + ) + delete_component = sgqlc.types.Field(DeleteComponentPayload, graphql_name='deleteComponent', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteComponentInput), graphql_name='input', default=None)), +)) + ) + delete_control_event_log_by_node_id = sgqlc.types.Field(DeleteControlEventLogPayload, graphql_name='deleteControlEventLogByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteControlEventLogByNodeIdInput), graphql_name='input', default=None)), +)) + ) + delete_control_event_log = sgqlc.types.Field(DeleteControlEventLogPayload, graphql_name='deleteControlEventLog', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteControlEventLogInput), graphql_name='input', default=None)), +)) + ) + delete_control_event_by_node_id = sgqlc.types.Field(DeleteControlEventPayload, graphql_name='deleteControlEventByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteControlEventByNodeIdInput), graphql_name='input', default=None)), +)) + ) + delete_control_event = sgqlc.types.Field(DeleteControlEventPayload, graphql_name='deleteControlEvent', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteControlEventInput), graphql_name='input', default=None)), +)) + ) + delete_data_point_by_node_id = sgqlc.types.Field(DeleteDataPointPayload, graphql_name='deleteDataPointByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteDataPointByNodeIdInput), graphql_name='input', default=None)), +)) + ) + delete_data_point = sgqlc.types.Field(DeleteDataPointPayload, graphql_name='deleteDataPoint', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteDataPointInput), graphql_name='input', default=None)), +)) + ) + delete_data_point_by_data_source_name_and_name = sgqlc.types.Field(DeleteDataPointPayload, graphql_name='deleteDataPointByDataSourceNameAndName', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteDataPointByDataSourceNameAndNameInput), graphql_name='input', default=None)), +)) + ) + delete_data_source_by_node_id = sgqlc.types.Field(DeleteDataSourcePayload, graphql_name='deleteDataSourceByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteDataSourceByNodeIdInput), graphql_name='input', default=None)), +)) + ) + delete_data_source = sgqlc.types.Field(DeleteDataSourcePayload, graphql_name='deleteDataSource', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteDataSourceInput), graphql_name='input', default=None)), +)) + ) + delete_dependency_by_node_id = sgqlc.types.Field(DeleteDependencyPayload, graphql_name='deleteDependencyByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteDependencyByNodeIdInput), graphql_name='input', default=None)), +)) + ) + delete_dependency = sgqlc.types.Field(DeleteDependencyPayload, graphql_name='deleteDependency', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteDependencyInput), graphql_name='input', default=None)), +)) + ) + delete_dependency_by_path = sgqlc.types.Field(DeleteDependencyPayload, graphql_name='deleteDependencyByPath', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteDependencyByPathInput), graphql_name='input', default=None)), +)) + ) + delete_facility_by_node_id = sgqlc.types.Field(DeleteFacilityPayload, graphql_name='deleteFacilityByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteFacilityByNodeIdInput), graphql_name='input', default=None)), +)) + ) + delete_facility = sgqlc.types.Field(DeleteFacilityPayload, graphql_name='deleteFacility', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteFacilityInput), graphql_name='input', default=None)), +)) + ) + delete_facility_by_slug = sgqlc.types.Field(DeleteFacilityPayload, graphql_name='deleteFacilityBySlug', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteFacilityBySlugInput), graphql_name='input', default=None)), +)) + ) + delete_facility_data_source_by_node_id = sgqlc.types.Field(DeleteFacilityDataSourcePayload, graphql_name='deleteFacilityDataSourceByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteFacilityDataSourceByNodeIdInput), graphql_name='input', default=None)), +)) + ) + delete_facility_data_source = sgqlc.types.Field(DeleteFacilityDataSourcePayload, graphql_name='deleteFacilityDataSource', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteFacilityDataSourceInput), graphql_name='input', default=None)), +)) + ) + delete_facility_group_by_node_id = sgqlc.types.Field(DeleteFacilityGroupPayload, graphql_name='deleteFacilityGroupByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteFacilityGroupByNodeIdInput), graphql_name='input', default=None)), +)) + ) + delete_facility_group = sgqlc.types.Field(DeleteFacilityGroupPayload, graphql_name='deleteFacilityGroup', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteFacilityGroupInput), graphql_name='input', default=None)), +)) + ) + delete_facility_groups_linker_by_node_id = sgqlc.types.Field(DeleteFacilityGroupsLinkerPayload, graphql_name='deleteFacilityGroupsLinkerByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteFacilityGroupsLinkerByNodeIdInput), graphql_name='input', default=None)), +)) + ) + delete_facility_groups_linker = sgqlc.types.Field(DeleteFacilityGroupsLinkerPayload, graphql_name='deleteFacilityGroupsLinker', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteFacilityGroupsLinkerInput), graphql_name='input', default=None)), +)) + ) + delete_field_group_by_node_id = sgqlc.types.Field(DeleteFieldGroupPayload, graphql_name='deleteFieldGroupByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteFieldGroupByNodeIdInput), graphql_name='input', default=None)), +)) + ) + delete_field_group = sgqlc.types.Field(DeleteFieldGroupPayload, graphql_name='deleteFieldGroup', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteFieldGroupInput), graphql_name='input', default=None)), +)) + ) + delete_machine_user_by_node_id = sgqlc.types.Field(DeleteMachineUserPayload, graphql_name='deleteMachineUserByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteMachineUserByNodeIdInput), graphql_name='input', default=None)), +)) + ) + delete_machine_user = sgqlc.types.Field(DeleteMachineUserPayload, graphql_name='deleteMachineUser', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteMachineUserInput), graphql_name='input', default=None)), +)) + ) + delete_program_by_node_id = sgqlc.types.Field(DeleteProgramPayload, graphql_name='deleteProgramByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteProgramByNodeIdInput), graphql_name='input', default=None)), +)) + ) + delete_program = sgqlc.types.Field(DeleteProgramPayload, graphql_name='deleteProgram', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteProgramInput), graphql_name='input', default=None)), +)) + ) + delete_program_by_project_type_id_and_name = sgqlc.types.Field(DeleteProgramPayload, graphql_name='deleteProgramByProjectTypeIdAndName', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteProgramByProjectTypeIdAndNameInput), graphql_name='input', default=None)), +)) + ) + delete_project_component_by_node_id = sgqlc.types.Field(DeleteProjectComponentPayload, graphql_name='deleteProjectComponentByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteProjectComponentByNodeIdInput), graphql_name='input', default=None)), +)) + ) + delete_project_component = sgqlc.types.Field(DeleteProjectComponentPayload, graphql_name='deleteProjectComponent', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteProjectComponentInput), graphql_name='input', default=None)), +)) + ) + delete_project_field_by_node_id = sgqlc.types.Field(DeleteProjectFieldPayload, graphql_name='deleteProjectFieldByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteProjectFieldByNodeIdInput), graphql_name='input', default=None)), +)) + ) + delete_project_field_by_project_id_and_field_id = sgqlc.types.Field(DeleteProjectFieldPayload, graphql_name='deleteProjectFieldByProjectIdAndFieldId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteProjectFieldByProjectIdAndFieldIdInput), graphql_name='input', default=None)), +)) + ) + delete_project_field = sgqlc.types.Field(DeleteProjectFieldPayload, graphql_name='deleteProjectField', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteProjectFieldInput), graphql_name='input', default=None)), +)) + ) + delete_project_watcher_by_node_id = sgqlc.types.Field(DeleteProjectWatcherPayload, graphql_name='deleteProjectWatcherByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteProjectWatcherByNodeIdInput), graphql_name='input', default=None)), +)) + ) + delete_project_watcher = sgqlc.types.Field(DeleteProjectWatcherPayload, graphql_name='deleteProjectWatcher', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteProjectWatcherInput), graphql_name='input', default=None)), +)) + ) + delete_project_by_node_id = sgqlc.types.Field(DeleteProjectPayload, graphql_name='deleteProjectByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteProjectByNodeIdInput), graphql_name='input', default=None)), +)) + ) + delete_project = sgqlc.types.Field(DeleteProjectPayload, graphql_name='deleteProject', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteProjectInput), graphql_name='input', default=None)), +)) + ) + delete_report_execution_by_node_id = sgqlc.types.Field(DeleteReportExecutionPayload, graphql_name='deleteReportExecutionByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteReportExecutionByNodeIdInput), graphql_name='input', default=None)), +)) + ) + delete_report_execution = sgqlc.types.Field(DeleteReportExecutionPayload, graphql_name='deleteReportExecution', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteReportExecutionInput), graphql_name='input', default=None)), +)) + ) + delete_savings_event_by_node_id = sgqlc.types.Field(DeleteSavingsEventPayload, graphql_name='deleteSavingsEventByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteSavingsEventByNodeIdInput), graphql_name='input', default=None)), +)) + ) + delete_savings_event = sgqlc.types.Field(DeleteSavingsEventPayload, graphql_name='deleteSavingsEvent', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteSavingsEventInput), graphql_name='input', default=None)), +)) + ) + delete_savings_event_by_project_id_and_start_time_and_end_time = sgqlc.types.Field(DeleteSavingsEventPayload, graphql_name='deleteSavingsEventByProjectIdAndStartTimeAndEndTime', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteSavingsEventByProjectIdAndStartTimeAndEndTimeInput), graphql_name='input', default=None)), +)) + ) + delete_suggestion_control_event_by_node_id = sgqlc.types.Field(DeleteSuggestionControlEventPayload, graphql_name='deleteSuggestionControlEventByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteSuggestionControlEventByNodeIdInput), graphql_name='input', default=None)), +)) + ) + delete_suggestion_control_event = sgqlc.types.Field(DeleteSuggestionControlEventPayload, graphql_name='deleteSuggestionControlEvent', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteSuggestionControlEventInput), graphql_name='input', default=None)), +)) + ) + delete_suggestion_control_event_by_control_event_id = sgqlc.types.Field(DeleteSuggestionControlEventPayload, graphql_name='deleteSuggestionControlEventByControlEventId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteSuggestionControlEventByControlEventIdInput), graphql_name='input', default=None)), +)) + ) + delete_user_by_node_id = sgqlc.types.Field(DeleteUserPayload, graphql_name='deleteUserByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteUserByNodeIdInput), graphql_name='input', default=None)), +)) + ) + delete_user = sgqlc.types.Field(DeleteUserPayload, graphql_name='deleteUser', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteUserInput), graphql_name='input', default=None)), +)) + ) + delete_utility_provider_by_node_id = sgqlc.types.Field(DeleteUtilityProviderPayload, graphql_name='deleteUtilityProviderByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteUtilityProviderByNodeIdInput), graphql_name='input', default=None)), +)) + ) + delete_utility_provider = sgqlc.types.Field(DeleteUtilityProviderPayload, graphql_name='deleteUtilityProvider', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteUtilityProviderInput), graphql_name='input', default=None)), +)) + ) + delete_utility_provider_by_name = sgqlc.types.Field(DeleteUtilityProviderPayload, graphql_name='deleteUtilityProviderByName', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteUtilityProviderByNameInput), graphql_name='input', default=None)), +)) + ) + delete_vendor_user_machine_user_by_node_id = sgqlc.types.Field(DeleteVendorUserMachineUserPayload, graphql_name='deleteVendorUserMachineUserByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteVendorUserMachineUserByNodeIdInput), graphql_name='input', default=None)), +)) + ) + delete_vendor_user_machine_user = sgqlc.types.Field(DeleteVendorUserMachineUserPayload, graphql_name='deleteVendorUserMachineUser', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteVendorUserMachineUserInput), graphql_name='input', default=None)), +)) + ) + delete_vendor_user_machine_user_by_machine_user_id = sgqlc.types.Field(DeleteVendorUserMachineUserPayload, graphql_name='deleteVendorUserMachineUserByMachineUserId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteVendorUserMachineUserByMachineUserIdInput), graphql_name='input', default=None)), +)) + ) + delete_vendor_user_by_node_id = sgqlc.types.Field(DeleteVendorUserPayload, graphql_name='deleteVendorUserByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteVendorUserByNodeIdInput), graphql_name='input', default=None)), +)) + ) + delete_vendor_user = sgqlc.types.Field(DeleteVendorUserPayload, graphql_name='deleteVendorUser', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteVendorUserInput), graphql_name='input', default=None)), +)) + ) + delete_vendor_user_by_email = sgqlc.types.Field(DeleteVendorUserPayload, graphql_name='deleteVendorUserByEmail', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteVendorUserByEmailInput), graphql_name='input', default=None)), +)) + ) + delete_virtual_point_interval_by_node_id = sgqlc.types.Field(DeleteVirtualPointIntervalPayload, graphql_name='deleteVirtualPointIntervalByNodeId', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteVirtualPointIntervalByNodeIdInput), graphql_name='input', default=None)), +)) + ) + delete_virtual_point_interval = sgqlc.types.Field(DeleteVirtualPointIntervalPayload, graphql_name='deleteVirtualPointInterval', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteVirtualPointIntervalInput), graphql_name='input', default=None)), +)) + ) + add_favorite_facility = sgqlc.types.Field(AddFavoriteFacilityPayload, graphql_name='addFavoriteFacility', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(AddFavoriteFacilityInput), graphql_name='input', default=None)), +)) + ) + add_metric_metadata_dependency = sgqlc.types.Field(AddMetricMetadataDependencyPayload, graphql_name='addMetricMetadataDependency', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(AddMetricMetadataDependencyInput), graphql_name='input', default=None)), +)) + ) + clear_facility_communication = sgqlc.types.Field(ClearFacilityCommunicationPayload, graphql_name='clearFacilityCommunication', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(ClearFacilityCommunicationInput), graphql_name='input', default=None)), +)) + ) + delete_account_charge = sgqlc.types.Field(DeleteAccountChargePayload, graphql_name='deleteAccountCharge', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteAccountChargeInput), graphql_name='input', default=None)), +)) + ) + delete_account_statement = sgqlc.types.Field(DeleteAccountStatementPayload, graphql_name='deleteAccountStatement', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteAccountStatementInput), graphql_name='input', default=None)), +)) + ) + delete_meter_charge = sgqlc.types.Field(DeleteMeterChargePayload, graphql_name='deleteMeterCharge', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteMeterChargeInput), graphql_name='input', default=None)), +)) + ) + delete_meter_statement = sgqlc.types.Field(DeleteMeterStatementPayload, graphql_name='deleteMeterStatement', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteMeterStatementInput), graphql_name='input', default=None)), +)) + ) + delete_meter_usage = sgqlc.types.Field(DeleteMeterUsagePayload, graphql_name='deleteMeterUsage', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteMeterUsageInput), graphql_name='input', default=None)), +)) + ) + delete_utility_account = sgqlc.types.Field(DeleteUtilityAccountPayload, graphql_name='deleteUtilityAccount', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteUtilityAccountInput), graphql_name='input', default=None)), +)) + ) + delete_utility_meter = sgqlc.types.Field(DeleteUtilityMeterPayload, graphql_name='deleteUtilityMeter', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteUtilityMeterInput), graphql_name='input', default=None)), +)) + ) + patch_control_event_remote_metadata = sgqlc.types.Field('PatchControlEventRemoteMetadataPayload', graphql_name='patchControlEventRemoteMetadata', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(PatchControlEventRemoteMetadataInput), graphql_name='input', default=None)), +)) + ) + remove_favorite_facility = sgqlc.types.Field('RemoveFavoriteFacilityPayload', graphql_name='removeFavoriteFacility', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(RemoveFavoriteFacilityInput), graphql_name='input', default=None)), +)) + ) + remove_metric_metadata_dependency = sgqlc.types.Field('RemoveMetricMetadataDependencyPayload', graphql_name='removeMetricMetadataDependency', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(RemoveMetricMetadataDependencyInput), graphql_name='input', default=None)), +)) + ) + reparent_meter_statement = sgqlc.types.Field('ReparentMeterStatementPayload', graphql_name='reparentMeterStatement', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(ReparentMeterStatementInput), graphql_name='input', default=None)), +)) + ) + upsert_project_subscription = sgqlc.types.Field('UpsertProjectSubscriptionPayload', graphql_name='upsertProjectSubscription', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpsertProjectSubscriptionInput), graphql_name='input', default=None)), +)) + ) + upsert_urjanet_utility_provider = sgqlc.types.Field('UpsertUrjanetUtilityProviderPayload', graphql_name='upsertUrjanetUtilityProvider', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpsertUrjanetUtilityProviderInput), graphql_name='input', default=None)), +)) + ) + upsert_account_charge = sgqlc.types.Field('UpsertAccountChargePayload', graphql_name='upsertAccountCharge', args=sgqlc.types.ArgDict(( + ('where', sgqlc.types.Arg(UpsertAccountChargeWhere, graphql_name='where', default=None)), + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpsertAccountChargeInput), graphql_name='input', default=None)), +)) + ) + upsert_account_statement = sgqlc.types.Field('UpsertAccountStatementPayload', graphql_name='upsertAccountStatement', args=sgqlc.types.ArgDict(( + ('where', sgqlc.types.Arg(UpsertAccountStatementWhere, graphql_name='where', default=None)), + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpsertAccountStatementInput), graphql_name='input', default=None)), +)) + ) + upsert_balancing_authority = sgqlc.types.Field('UpsertBalancingAuthorityPayload', graphql_name='upsertBalancingAuthority', args=sgqlc.types.ArgDict(( + ('where', sgqlc.types.Arg(UpsertBalancingAuthorityWhere, graphql_name='where', default=None)), + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpsertBalancingAuthorityInput), graphql_name='input', default=None)), +)) + ) + upsert_building_area_type = sgqlc.types.Field('UpsertBuildingAreaTypePayload', graphql_name='upsertBuildingAreaType', args=sgqlc.types.ArgDict(( + ('where', sgqlc.types.Arg(UpsertBuildingAreaTypeWhere, graphql_name='where', default=None)), + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpsertBuildingAreaTypeInput), graphql_name='input', default=None)), +)) + ) + upsert_building_area = sgqlc.types.Field('UpsertBuildingAreaPayload', graphql_name='upsertBuildingArea', args=sgqlc.types.ArgDict(( + ('where', sgqlc.types.Arg(UpsertBuildingAreaWhere, graphql_name='where', default=None)), + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpsertBuildingAreaInput), graphql_name='input', default=None)), +)) + ) + upsert_data_point = sgqlc.types.Field('UpsertDataPointPayload', graphql_name='upsertDataPoint', args=sgqlc.types.ArgDict(( + ('where', sgqlc.types.Arg(UpsertDataPointWhere, graphql_name='where', default=None)), + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpsertDataPointInput), graphql_name='input', default=None)), +)) + ) + upsert_dependency = sgqlc.types.Field('UpsertDependencyPayload', graphql_name='upsertDependency', args=sgqlc.types.ArgDict(( + ('where', sgqlc.types.Arg(UpsertDependencyWhere, graphql_name='where', default=None)), + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpsertDependencyInput), graphql_name='input', default=None)), +)) + ) + upsert_field_group = sgqlc.types.Field('UpsertFieldGroupPayload', graphql_name='upsertFieldGroup', args=sgqlc.types.ArgDict(( + ('where', sgqlc.types.Arg(UpsertFieldGroupWhere, graphql_name='where', default=None)), + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpsertFieldGroupInput), graphql_name='input', default=None)), +)) + ) + upsert_machine_user = sgqlc.types.Field('UpsertMachineUserPayload', graphql_name='upsertMachineUser', args=sgqlc.types.ArgDict(( + ('where', sgqlc.types.Arg(UpsertMachineUserWhere, graphql_name='where', default=None)), + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpsertMachineUserInput), graphql_name='input', default=None)), +)) + ) + upsert_meter_charge = sgqlc.types.Field('UpsertMeterChargePayload', graphql_name='upsertMeterCharge', args=sgqlc.types.ArgDict(( + ('where', sgqlc.types.Arg(UpsertMeterChargeWhere, graphql_name='where', default=None)), + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpsertMeterChargeInput), graphql_name='input', default=None)), +)) + ) + upsert_meter_statement = sgqlc.types.Field('UpsertMeterStatementPayload', graphql_name='upsertMeterStatement', args=sgqlc.types.ArgDict(( + ('where', sgqlc.types.Arg(UpsertMeterStatementWhere, graphql_name='where', default=None)), + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpsertMeterStatementInput), graphql_name='input', default=None)), +)) + ) + upsert_meter_usage = sgqlc.types.Field('UpsertMeterUsagePayload', graphql_name='upsertMeterUsage', args=sgqlc.types.ArgDict(( + ('where', sgqlc.types.Arg(UpsertMeterUsageWhere, graphql_name='where', default=None)), + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpsertMeterUsageInput), graphql_name='input', default=None)), +)) + ) + upsert_program = sgqlc.types.Field('UpsertProgramPayload', graphql_name='upsertProgram', args=sgqlc.types.ArgDict(( + ('where', sgqlc.types.Arg(UpsertProgramWhere, graphql_name='where', default=None)), + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpsertProgramInput), graphql_name='input', default=None)), +)) + ) + upsert_project_component = sgqlc.types.Field('UpsertProjectComponentPayload', graphql_name='upsertProjectComponent', args=sgqlc.types.ArgDict(( + ('where', sgqlc.types.Arg(UpsertProjectComponentWhere, graphql_name='where', default=None)), + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpsertProjectComponentInput), graphql_name='input', default=None)), +)) + ) + upsert_project_field = sgqlc.types.Field('UpsertProjectFieldPayload', graphql_name='upsertProjectField', args=sgqlc.types.ArgDict(( + ('where', sgqlc.types.Arg(UpsertProjectFieldWhere, graphql_name='where', default=None)), + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpsertProjectFieldInput), graphql_name='input', default=None)), +)) + ) + upsert_project_watcher = sgqlc.types.Field('UpsertProjectWatcherPayload', graphql_name='upsertProjectWatcher', args=sgqlc.types.ArgDict(( + ('where', sgqlc.types.Arg(UpsertProjectWatcherWhere, graphql_name='where', default=None)), + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpsertProjectWatcherInput), graphql_name='input', default=None)), +)) + ) + upsert_report_execution = sgqlc.types.Field('UpsertReportExecutionPayload', graphql_name='upsertReportExecution', args=sgqlc.types.ArgDict(( + ('where', sgqlc.types.Arg(UpsertReportExecutionWhere, graphql_name='where', default=None)), + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpsertReportExecutionInput), graphql_name='input', default=None)), +)) + ) + upsert_report_query = sgqlc.types.Field('UpsertReportQueryPayload', graphql_name='upsertReportQuery', args=sgqlc.types.ArgDict(( + ('where', sgqlc.types.Arg(UpsertReportQueryWhere, graphql_name='where', default=None)), + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpsertReportQueryInput), graphql_name='input', default=None)), +)) + ) + upsert_savings_event = sgqlc.types.Field('UpsertSavingsEventPayload', graphql_name='upsertSavingsEvent', args=sgqlc.types.ArgDict(( + ('where', sgqlc.types.Arg(UpsertSavingsEventWhere, graphql_name='where', default=None)), + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpsertSavingsEventInput), graphql_name='input', default=None)), +)) + ) + upsert_suggestion_control_event = sgqlc.types.Field('UpsertSuggestionControlEventPayload', graphql_name='upsertSuggestionControlEvent', args=sgqlc.types.ArgDict(( + ('where', sgqlc.types.Arg(UpsertSuggestionControlEventWhere, graphql_name='where', default=None)), + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpsertSuggestionControlEventInput), graphql_name='input', default=None)), +)) + ) + upsert_utility_account = sgqlc.types.Field('UpsertUtilityAccountPayload', graphql_name='upsertUtilityAccount', args=sgqlc.types.ArgDict(( + ('where', sgqlc.types.Arg(UpsertUtilityAccountWhere, graphql_name='where', default=None)), + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpsertUtilityAccountInput), graphql_name='input', default=None)), +)) + ) + upsert_utility_meter = sgqlc.types.Field('UpsertUtilityMeterPayload', graphql_name='upsertUtilityMeter', args=sgqlc.types.ArgDict(( + ('where', sgqlc.types.Arg(UpsertUtilityMeterWhere, graphql_name='where', default=None)), + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpsertUtilityMeterInput), graphql_name='input', default=None)), +)) + ) + upsert_utility_provider = sgqlc.types.Field('UpsertUtilityProviderPayload', graphql_name='upsertUtilityProvider', args=sgqlc.types.ArgDict(( + ('where', sgqlc.types.Arg(UpsertUtilityProviderWhere, graphql_name='where', default=None)), + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpsertUtilityProviderInput), graphql_name='input', default=None)), +)) + ) + upsert_vendor_user_machine_user = sgqlc.types.Field('UpsertVendorUserMachineUserPayload', graphql_name='upsertVendorUserMachineUser', args=sgqlc.types.ArgDict(( + ('where', sgqlc.types.Arg(UpsertVendorUserMachineUserWhere, graphql_name='where', default=None)), + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpsertVendorUserMachineUserInput), graphql_name='input', default=None)), +)) + ) + upsert_virtual_point_interval = sgqlc.types.Field('UpsertVirtualPointIntervalPayload', graphql_name='upsertVirtualPointInterval', args=sgqlc.types.ArgDict(( + ('where', sgqlc.types.Arg(UpsertVirtualPointIntervalWhere, graphql_name='where', default=None)), + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpsertVirtualPointIntervalInput), graphql_name='input', default=None)), +)) + ) + update_phone_number = sgqlc.types.Field(sgqlc.types.non_null('UpdatePhoneNumberResponse'), graphql_name='updatePhoneNumber', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdatePhoneNumberInput), graphql_name='input', default=None)), +)) + ) + delete_phone_number = sgqlc.types.Field(sgqlc.types.non_null(DeletePhoneNumberResponse), graphql_name='deletePhoneNumber', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(DeletePhoneNumberInput, graphql_name='input', default=None)), +)) + ) + delete_mutable_metric_data = sgqlc.types.Field(Int, graphql_name='deleteMutableMetricData', args=sgqlc.types.ArgDict(( + ('label', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='label', default=None)), + ('source_id', sgqlc.types.Arg(String, graphql_name='sourceId', default=None)), + ('from_', sgqlc.types.Arg(Datetime, graphql_name='from', default=None)), + ('to', sgqlc.types.Arg(Datetime, graphql_name='to', default=None)), +)) + ) + delete_facility_mutable_metric_data = sgqlc.types.Field(Int, graphql_name='deleteFacilityMutableMetricData', args=sgqlc.types.ArgDict(( + ('facility_id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='facilityId', default=None)), + ('label', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='label', default=None)), + ('from_', sgqlc.types.Arg(Datetime, graphql_name='from', default=None)), + ('to', sgqlc.types.Arg(Datetime, graphql_name='to', default=None)), +)) + ) + update_mutable_metric_data = sgqlc.types.Field(Int, graphql_name='updateMutableMetricData', args=sgqlc.types.ArgDict(( + ('metric_data', sgqlc.types.Arg(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(InputMetricData))), graphql_name='metricData', default=None)), + ('delete_existing', sgqlc.types.Arg(Boolean, graphql_name='deleteExisting', default=None)), +)) + ) + update_facility_mutable_metric_data = sgqlc.types.Field(Int, graphql_name='updateFacilityMutableMetricData', args=sgqlc.types.ArgDict(( + ('metric_data', sgqlc.types.Arg(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(InputFacilityMetricData))), graphql_name='metricData', default=None)), + ('delete_existing', sgqlc.types.Arg(Boolean, graphql_name='deleteExisting', default=None)), +)) + ) + add_project_controller = sgqlc.types.Field(AddProjectControllerPayload, graphql_name='addProjectController', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(AddProjectControllerInput), graphql_name='input', default=None)), +)) + ) + remove_project_controller = sgqlc.types.Field('RemoveProjectControllerPayload', graphql_name='removeProjectController', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(RemoveProjectControllerInput), graphql_name='input', default=None)), +)) + ) + withdraw_suggestion = sgqlc.types.Field('Suggestion', graphql_name='withdrawSuggestion', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(WithdrawSuggestionInput), graphql_name='input', default=None)), +)) + ) + acknowledge_suggestion = sgqlc.types.Field('Suggestion', graphql_name='acknowledgeSuggestion', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(AcknowledgeSuggestionInput), graphql_name='input', default=None)), +)) + ) + transition_control_event = sgqlc.types.Field('ControlEvent', graphql_name='transitionControlEvent', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(TransitionControlEventInput), graphql_name='input', default=None)), +)) + ) + acknowledge_control_event = sgqlc.types.Field('ControlEvent', graphql_name='acknowledgeControlEvent', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(AcknowledgeControlEventInput), graphql_name='input', default=None)), +)) + ) + extend = sgqlc.types.Field(Boolean, graphql_name='extend', args=sgqlc.types.ArgDict(( + ('payload', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='payload', default=None)), + ('fail_on_exists', sgqlc.types.Arg(Boolean, graphql_name='failOnExists', default=False)), +)) + ) + create_user_access_token = sgqlc.types.Field('CreateUserAccessTokenPayload', graphql_name='createUserAccessToken', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(CreateUserAccessTokenInput), graphql_name='input', default=None)), +)) + ) + create_machine_access_token = sgqlc.types.Field('CreateMachineAccessTokenPayload', graphql_name='createMachineAccessToken', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(CreateMachineAccessTokenInput), graphql_name='input', default=None)), +)) + ) + revoke_access_token = sgqlc.types.Field(Boolean, graphql_name='revokeAccessToken', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(RevokeAccessTokenInput), graphql_name='input', default=None)), +)) + ) + regenerate_access_token = sgqlc.types.Field(CreateAccessTokenPayload, graphql_name='regenerateAccessToken', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(RegenerateAccessTokenInput), graphql_name='input', default=None)), +)) + ) + run_report = sgqlc.types.Field('ReportExecution', graphql_name='runReport', args=sgqlc.types.ArgDict(( + ('report_id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='reportId', default=None)), + ('parameters', sgqlc.types.Arg(JSON, graphql_name='parameters', default=None)), +)) + ) + trigger_phone_number_verification = sgqlc.types.Field(sgqlc.types.non_null('VerifyPhoneNumberResponse'), graphql_name='triggerPhoneNumberVerification', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(VerifyPhoneNumberInput), graphql_name='input', default=None)), +)) + ) + set_machine_user_capability = sgqlc.types.Field('SetMachineUserCapabilityPayload', graphql_name='setMachineUserCapability', args=sgqlc.types.ArgDict(( + ('input', sgqlc.types.Arg(sgqlc.types.non_null(SetMachineUserCapabilityInput), graphql_name='input', default=None)), +)) + ) + + +class PageInfo(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('has_next_page', 'has_previous_page', 'start_cursor', 'end_cursor') + has_next_page = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='hasNextPage') + has_previous_page = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='hasPreviousPage') + start_cursor = sgqlc.types.Field(Cursor, graphql_name='startCursor') + end_cursor = sgqlc.types.Field(Cursor, graphql_name='endCursor') + + +class PatchControlEventRemoteMetadataPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'control_event', 'query', 'component', 'control_event_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + control_event = sgqlc.types.Field('ControlEvent', graphql_name='controlEvent') + query = sgqlc.types.Field('Query', graphql_name='query') + component = sgqlc.types.Field('Component', graphql_name='component') + control_event_edge = sgqlc.types.Field(ControlEventsEdge, graphql_name='controlEventEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ControlEventsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class PlatformAccessToken(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('id', 'type', 'description', 'owner_id', 'created_at', 'expires_at', 'machine_user', 'user') + id = sgqlc.types.Field(BigInt, graphql_name='id') + type = sgqlc.types.Field(AccessTokenType, graphql_name='type') + description = sgqlc.types.Field(String, graphql_name='description') + owner_id = sgqlc.types.Field(String, graphql_name='ownerId') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + expires_at = sgqlc.types.Field(Datetime, graphql_name='expiresAt') + machine_user = sgqlc.types.Field('MachineUser', graphql_name='machineUser') + user = sgqlc.types.Field('User', graphql_name='user') + + +class PlatformAccessTokensConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(PlatformAccessToken))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('PlatformAccessTokensEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class PlatformAccessTokensEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null(PlatformAccessToken), graphql_name='node') + + +class PlatformCapabilityAccess(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('capability', 'can_write', 'can_read') + capability = sgqlc.types.Field(sgqlc.types.non_null(PlatformCapability), graphql_name='capability') + can_write = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='canWrite') + can_read = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='canRead') + + +class ProgramFacilitiesByProjectProgramIdAndFacilityIdManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count', 'aggregates', 'grouped_aggregates', 'metric_data') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('Facility'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ProgramFacilitiesByProjectProgramIdAndFacilityIdManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + aggregates = sgqlc.types.Field(FacilityAggregates, graphql_name='aggregates') + grouped_aggregates = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(FacilityAggregates)), graphql_name='groupedAggregates', args=sgqlc.types.ArgDict(( + ('group_by', sgqlc.types.Arg(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(FacilitiesGroupBy))), graphql_name='groupBy', default=None)), + ('having', sgqlc.types.Arg(FacilitiesHavingInput, graphql_name='having', default=None)), +)) + ) + metric_data = sgqlc.types.Field(MetricDataConnection, graphql_name='metricData', args=sgqlc.types.ArgDict(( + ('label', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='label', default=None)), + ('from_', sgqlc.types.Arg(String, graphql_name='from', default=None)), + ('to', sgqlc.types.Arg(String, graphql_name='to', default=None)), + ('aggregation', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataAggregationMethod), graphql_name='aggregation', default='SUM')), + ('window', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='window', default='1 day')), + ('sampling_window', sgqlc.types.Arg(String, graphql_name='samplingWindow', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataOrderBy), graphql_name='orderBy', default='TIME_ASC')), + ('unit', sgqlc.types.Arg(String, graphql_name='unit', default=None)), + ('unit_group', sgqlc.types.Arg(String, graphql_name='unitGroup', default=None)), +)) + ) + + +class ProgramFacilitiesByProjectProgramIdAndFacilityIdManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'projects') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('Facility'), graphql_name='node') + projects = sgqlc.types.Field(sgqlc.types.non_null('ProjectsConnection'), graphql_name='projects', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProjectsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ProjectCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ProjectFilter, graphql_name='filter', default=None)), +)) + ) + + +class ProgramProjectTypesByProjectProgramIdAndProjectTypeIdManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ProjectType'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ProgramProjectTypesByProjectProgramIdAndProjectTypeIdManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class ProgramProjectTypesByProjectProgramIdAndProjectTypeIdManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'projects') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('ProjectType'), graphql_name='node') + projects = sgqlc.types.Field(sgqlc.types.non_null('ProjectsConnection'), graphql_name='projects', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProjectsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ProjectCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ProjectFilter, graphql_name='filter', default=None)), +)) + ) + + +class ProgramsConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('Program'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ProgramsEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class ProgramsEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('Program'), graphql_name='node') + + +class ProjectComponentsConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ProjectComponent'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ProjectComponentsEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class ProjectComponentsEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('ProjectComponent'), graphql_name='node') + + +class ProjectComponentsManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('Component'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ProjectComponentsManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class ProjectComponentsManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'startup_offset') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('Component'), graphql_name='node') + startup_offset = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='startupOffset') + + +class ProjectDataPointsByProjectFieldProjectIdAndDataPointIdManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('DataPoint'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ProjectDataPointsByProjectFieldProjectIdAndDataPointIdManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class ProjectDataPointsByProjectFieldProjectIdAndDataPointIdManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'project_fields') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('DataPoint'), graphql_name='node') + project_fields = sgqlc.types.Field(sgqlc.types.non_null('ProjectFieldsConnection'), graphql_name='projectFields', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProjectFieldsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ProjectFieldCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ProjectFieldFilter, graphql_name='filter', default=None)), +)) + ) + + +class ProjectFieldGroupsByProjectFieldProjectIdAndGroupIdManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('FieldGroup'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ProjectFieldGroupsByProjectFieldProjectIdAndGroupIdManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class ProjectFieldGroupsByProjectFieldProjectIdAndGroupIdManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'project_fields_by_group_id') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('FieldGroup'), graphql_name='node') + project_fields_by_group_id = sgqlc.types.Field(sgqlc.types.non_null('ProjectFieldsConnection'), graphql_name='projectFieldsByGroupId', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProjectFieldsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ProjectFieldCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ProjectFieldFilter, graphql_name='filter', default=None)), +)) + ) + + +class ProjectFieldsConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ProjectField'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ProjectFieldsEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class ProjectFieldsEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('ProjectField'), graphql_name='node') + + +class ProjectPermissions(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('can_control',) + can_control = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='canControl') + + +class ProjectSavingsEventsBySuggestionProjectIdAndSavingsEventIdManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count', 'savings_event_data') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('SavingsEvent'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ProjectSavingsEventsBySuggestionProjectIdAndSavingsEventIdManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + savings_event_data = sgqlc.types.Field(MetricDataConnection, graphql_name='savingsEventData', args=sgqlc.types.ArgDict(( + ('label', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='label', default=None)), + ('from_', sgqlc.types.Arg(String, graphql_name='from', default=None)), + ('to', sgqlc.types.Arg(String, graphql_name='to', default=None)), + ('aggregation', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataAggregationMethod), graphql_name='aggregation', default='SUM')), + ('window', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='window', default='1 day')), + ('sampling_window', sgqlc.types.Arg(String, graphql_name='samplingWindow', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataOrderBy), graphql_name='orderBy', default='TIME_ASC')), + ('unit', sgqlc.types.Arg(String, graphql_name='unit', default=None)), + ('unit_group', sgqlc.types.Arg(String, graphql_name='unitGroup', default=None)), +)) + ) + + +class ProjectSavingsEventsBySuggestionProjectIdAndSavingsEventIdManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'suggestions') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('SavingsEvent'), graphql_name='node') + suggestions = sgqlc.types.Field(sgqlc.types.non_null('SuggestionsConnection'), graphql_name='suggestions', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(SuggestionsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(SuggestionCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(SuggestionFilter, graphql_name='filter', default=None)), +)) + ) + + +class ProjectTypeFacilitiesByProjectProjectTypeIdAndFacilityIdManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count', 'aggregates', 'grouped_aggregates', 'metric_data') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('Facility'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ProjectTypeFacilitiesByProjectProjectTypeIdAndFacilityIdManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + aggregates = sgqlc.types.Field(FacilityAggregates, graphql_name='aggregates') + grouped_aggregates = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(FacilityAggregates)), graphql_name='groupedAggregates', args=sgqlc.types.ArgDict(( + ('group_by', sgqlc.types.Arg(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(FacilitiesGroupBy))), graphql_name='groupBy', default=None)), + ('having', sgqlc.types.Arg(FacilitiesHavingInput, graphql_name='having', default=None)), +)) + ) + metric_data = sgqlc.types.Field(MetricDataConnection, graphql_name='metricData', args=sgqlc.types.ArgDict(( + ('label', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='label', default=None)), + ('from_', sgqlc.types.Arg(String, graphql_name='from', default=None)), + ('to', sgqlc.types.Arg(String, graphql_name='to', default=None)), + ('aggregation', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataAggregationMethod), graphql_name='aggregation', default='SUM')), + ('window', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='window', default='1 day')), + ('sampling_window', sgqlc.types.Arg(String, graphql_name='samplingWindow', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataOrderBy), graphql_name='orderBy', default='TIME_ASC')), + ('unit', sgqlc.types.Arg(String, graphql_name='unit', default=None)), + ('unit_group', sgqlc.types.Arg(String, graphql_name='unitGroup', default=None)), +)) + ) + + +class ProjectTypeFacilitiesByProjectProjectTypeIdAndFacilityIdManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'projects') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('Facility'), graphql_name='node') + projects = sgqlc.types.Field(sgqlc.types.non_null('ProjectsConnection'), graphql_name='projects', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProjectsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ProjectCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ProjectFilter, graphql_name='filter', default=None)), +)) + ) + + +class ProjectTypeProgramsByProjectProjectTypeIdAndProgramIdManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('Program'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ProjectTypeProgramsByProjectProjectTypeIdAndProgramIdManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class ProjectTypeProgramsByProjectProjectTypeIdAndProgramIdManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'projects') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('Program'), graphql_name='node') + projects = sgqlc.types.Field(sgqlc.types.non_null('ProjectsConnection'), graphql_name='projects', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProjectsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ProjectCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ProjectFilter, graphql_name='filter', default=None)), +)) + ) + + +class ProjectTypesConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ProjectType'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ProjectTypesEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class ProjectTypesEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('ProjectType'), graphql_name='node') + + +class ProjectWatchersConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ProjectWatcher'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ProjectWatchersEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class ProjectWatchersEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('ProjectWatcher'), graphql_name='node') + + +class ProjectWatchersManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('User'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ProjectWatchersManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class ProjectWatchersManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('User'), graphql_name='node') + + +class ProjectsConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count', 'savings_event_data') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('Project'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ProjectsEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + savings_event_data = sgqlc.types.Field(MetricDataConnection, graphql_name='savingsEventData', args=sgqlc.types.ArgDict(( + ('label', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='label', default=None)), + ('from_', sgqlc.types.Arg(String, graphql_name='from', default=None)), + ('to', sgqlc.types.Arg(String, graphql_name='to', default=None)), + ('aggregation', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataAggregationMethod), graphql_name='aggregation', default='SUM')), + ('window', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='window', default='1 day')), + ('sampling_window', sgqlc.types.Arg(String, graphql_name='samplingWindow', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataOrderBy), graphql_name='orderBy', default='TIME_ASC')), + ('unit', sgqlc.types.Arg(String, graphql_name='unit', default=None)), + ('unit_group', sgqlc.types.Arg(String, graphql_name='unitGroup', default=None)), +)) + ) + + +class ProjectsEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('Project'), graphql_name='node') + + +class RemoveFavoriteFacilityPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'user', 'query', 'user_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + user = sgqlc.types.Field('User', graphql_name='user') + query = sgqlc.types.Field('Query', graphql_name='query') + user_edge = sgqlc.types.Field('UsersEdge', graphql_name='userEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UsersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class RemoveMetricMetadataDependencyPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'metric_metadata', 'query') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + metric_metadata = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('MetricMetadatum')), graphql_name='metricMetadata') + query = sgqlc.types.Field('Query', graphql_name='query') + + +class RemoveProjectControllerPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'project', 'user') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + project = sgqlc.types.Field(sgqlc.types.non_null('Project'), graphql_name='project') + user = sgqlc.types.Field(sgqlc.types.non_null('User'), graphql_name='user') + + +class ReparentMeterStatementPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'meter_statement', 'query', 'utility_meter', 'account_statement', 'meter_statement_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + meter_statement = sgqlc.types.Field('MeterStatement', graphql_name='meterStatement') + query = sgqlc.types.Field('Query', graphql_name='query') + utility_meter = sgqlc.types.Field('UtilityMeter', graphql_name='utilityMeter') + account_statement = sgqlc.types.Field('AccountStatement', graphql_name='accountStatement') + meter_statement_edge = sgqlc.types.Field(MeterStatementsEdge, graphql_name='meterStatementEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(MeterStatementsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class ReportExecutionsConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ReportExecution'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ReportExecutionsEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class ReportExecutionsEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('ReportExecution'), graphql_name='node') + + +class ReportQueriesConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ReportQuery'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ReportQueriesEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class ReportQueriesEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('ReportQuery'), graphql_name='node') + + +class ReportsConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('Report'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ReportsEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class ReportsEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('Report'), graphql_name='node') + + +class SavingsEventProjectsBySuggestionSavingsEventIdAndProjectIdManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count', 'savings_event_data') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('Project'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('SavingsEventProjectsBySuggestionSavingsEventIdAndProjectIdManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + savings_event_data = sgqlc.types.Field(MetricDataConnection, graphql_name='savingsEventData', args=sgqlc.types.ArgDict(( + ('label', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='label', default=None)), + ('from_', sgqlc.types.Arg(String, graphql_name='from', default=None)), + ('to', sgqlc.types.Arg(String, graphql_name='to', default=None)), + ('aggregation', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataAggregationMethod), graphql_name='aggregation', default='SUM')), + ('window', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='window', default='1 day')), + ('sampling_window', sgqlc.types.Arg(String, graphql_name='samplingWindow', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataOrderBy), graphql_name='orderBy', default='TIME_ASC')), + ('unit', sgqlc.types.Arg(String, graphql_name='unit', default=None)), + ('unit_group', sgqlc.types.Arg(String, graphql_name='unitGroup', default=None)), +)) + ) + + +class SavingsEventProjectsBySuggestionSavingsEventIdAndProjectIdManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'suggestions') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('Project'), graphql_name='node') + suggestions = sgqlc.types.Field(sgqlc.types.non_null('SuggestionsConnection'), graphql_name='suggestions', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(SuggestionsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(SuggestionCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(SuggestionFilter, graphql_name='filter', default=None)), +)) + ) + + +class SavingsEventsConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count', 'savings_event_data') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('SavingsEvent'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('SavingsEventsEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + savings_event_data = sgqlc.types.Field(MetricDataConnection, graphql_name='savingsEventData', args=sgqlc.types.ArgDict(( + ('label', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='label', default=None)), + ('from_', sgqlc.types.Arg(String, graphql_name='from', default=None)), + ('to', sgqlc.types.Arg(String, graphql_name='to', default=None)), + ('aggregation', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataAggregationMethod), graphql_name='aggregation', default='SUM')), + ('window', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='window', default='1 day')), + ('sampling_window', sgqlc.types.Arg(String, graphql_name='samplingWindow', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataOrderBy), graphql_name='orderBy', default='TIME_ASC')), + ('unit', sgqlc.types.Arg(String, graphql_name='unit', default=None)), + ('unit_group', sgqlc.types.Arg(String, graphql_name='unitGroup', default=None)), +)) + ) + + +class SavingsEventsEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('SavingsEvent'), graphql_name='node') + + +class SetMachineUserCapabilityPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'machine_user') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + machine_user = sgqlc.types.Field('MachineUser', graphql_name='machineUser') + + +class SuggestionActivityLog(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('suggestion_id', 'created_at', 'type', 'actor', 'metadata', 'suggestion') + suggestion_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='suggestionId') + created_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='createdAt') + type = sgqlc.types.Field(sgqlc.types.non_null(SuggestionActivityType), graphql_name='type') + actor = sgqlc.types.Field(Actor, graphql_name='actor') + metadata = sgqlc.types.Field(sgqlc.types.non_null(JSON), graphql_name='metadata') + suggestion = sgqlc.types.Field('Suggestion', graphql_name='suggestion') + + +class SuggestionActivityLogsConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(SuggestionActivityLog))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('SuggestionActivityLogsEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class SuggestionActivityLogsEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null(SuggestionActivityLog), graphql_name='node') + + +class SuggestionPermissions(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('can_control',) + can_control = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='canControl') + + +class SuggestionsConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('Suggestion'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('SuggestionsEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class SuggestionsEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('Suggestion'), graphql_name='node') + + +class TemperatureSensor(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('id', 'facility_id', 'label', 'geometry', 'metadata', 'short_link', 'battery_id', 'signal_id', 'temperature_id', 'created_at', 'updated_at') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + facility_id = sgqlc.types.Field(Int, graphql_name='facilityId') + label = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='label') + geometry = sgqlc.types.Field(GeometryInterface, graphql_name='geometry') + metadata = sgqlc.types.Field(JSON, graphql_name='metadata') + short_link = sgqlc.types.Field(String, graphql_name='shortLink') + battery_id = sgqlc.types.Field(BigInt, graphql_name='batteryId') + signal_id = sgqlc.types.Field(BigInt, graphql_name='signalId') + temperature_id = sgqlc.types.Field(BigInt, graphql_name='temperatureId') + created_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='createdAt') + updated_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='updatedAt') + + +class TemperatureSensorsConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(TemperatureSensor))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('TemperatureSensorsEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class TemperatureSensorsEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null(TemperatureSensor), graphql_name='node') + + +class TimezoneUnitGroupsByFacilityTimezoneNameAndUnitGroupManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UnitGroup'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('TimezoneUnitGroupsByFacilityTimezoneNameAndUnitGroupManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class TimezoneUnitGroupsByFacilityTimezoneNameAndUnitGroupManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'facilities_by_unit_group') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('UnitGroup'), graphql_name='node') + facilities_by_unit_group = sgqlc.types.Field(sgqlc.types.non_null(FacilitiesConnection), graphql_name='facilitiesByUnitGroup', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(FacilitiesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(FacilityCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(FacilityFilter, graphql_name='filter', default=None)), +)) + ) + + +class TimezonesConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('Timezone'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('TimezonesEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class TimezonesEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('Timezone'), graphql_name='node') + + +class UnitDimensionUnitGroupsByUnitGroupDimensionUnitDimensionAndUnitGroupManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UnitGroup'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UnitDimensionUnitGroupsByUnitGroupDimensionUnitDimensionAndUnitGroupManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class UnitDimensionUnitGroupsByUnitGroupDimensionUnitDimensionAndUnitGroupManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'unit', 'created_at', 'updated_at') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('UnitGroup'), graphql_name='node') + unit = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='unit') + created_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='createdAt') + updated_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='updatedAt') + + +class UnitDimensionsConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UnitDimension'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UnitDimensionsEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class UnitDimensionsEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('UnitDimension'), graphql_name='node') + + +class UnitGroupDimensionsConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UnitGroupDimension'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UnitGroupDimensionsEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class UnitGroupDimensionsEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('UnitGroupDimension'), graphql_name='node') + + +class UnitGroupTimezonesByFacilityUnitGroupAndTimezoneNameManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('Timezone'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UnitGroupTimezonesByFacilityUnitGroupAndTimezoneNameManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class UnitGroupTimezonesByFacilityUnitGroupAndTimezoneNameManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'facilities_by_timezone_name') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('Timezone'), graphql_name='node') + facilities_by_timezone_name = sgqlc.types.Field(sgqlc.types.non_null(FacilitiesConnection), graphql_name='facilitiesByTimezoneName', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(FacilitiesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(FacilityCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(FacilityFilter, graphql_name='filter', default=None)), +)) + ) + + +class UnitGroupUnitDimensionsByUnitGroupDimensionUnitGroupAndUnitDimensionManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UnitDimension'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UnitGroupUnitDimensionsByUnitGroupDimensionUnitGroupAndUnitDimensionManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class UnitGroupUnitDimensionsByUnitGroupDimensionUnitGroupAndUnitDimensionManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'unit', 'created_at', 'updated_at') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('UnitDimension'), graphql_name='node') + unit = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='unit') + created_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='createdAt') + updated_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='updatedAt') + + +class UnitGroupsConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UnitGroup'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UnitGroupsEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class UnitGroupsEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('UnitGroup'), graphql_name='node') + + +class UpdateAccountChargePayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'account_charge', 'query', 'account_statement', 'account_charge_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + account_charge = sgqlc.types.Field('AccountCharge', graphql_name='accountCharge') + query = sgqlc.types.Field('Query', graphql_name='query') + account_statement = sgqlc.types.Field('AccountStatement', graphql_name='accountStatement') + account_charge_edge = sgqlc.types.Field(AccountChargesEdge, graphql_name='accountChargeEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(AccountChargesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpdateAccountStatementPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'account_statement', 'query', 'utility_account', 'account_statement_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + account_statement = sgqlc.types.Field('AccountStatement', graphql_name='accountStatement') + query = sgqlc.types.Field('Query', graphql_name='query') + utility_account = sgqlc.types.Field('UtilityAccount', graphql_name='utilityAccount') + account_statement_edge = sgqlc.types.Field(AccountStatementsEdge, graphql_name='accountStatementEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(AccountStatementsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpdateBuildingAreaPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'building_area', 'query', 'building_area_type', 'facility', 'building_area_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + building_area = sgqlc.types.Field('BuildingArea', graphql_name='buildingArea') + query = sgqlc.types.Field('Query', graphql_name='query') + building_area_type = sgqlc.types.Field('BuildingAreaType', graphql_name='buildingAreaType') + facility = sgqlc.types.Field('Facility', graphql_name='facility') + building_area_edge = sgqlc.types.Field(BuildingAreasEdge, graphql_name='buildingAreaEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(BuildingAreasOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpdateBuildingAreaTypePayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'building_area_type', 'query', 'building_area_type_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + building_area_type = sgqlc.types.Field('BuildingAreaType', graphql_name='buildingAreaType') + query = sgqlc.types.Field('Query', graphql_name='query') + building_area_type_edge = sgqlc.types.Field(BuildingAreaTypesEdge, graphql_name='buildingAreaTypeEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(BuildingAreaTypesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpdateComponentPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'component', 'query', 'machine_user', 'facility', 'component_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + component = sgqlc.types.Field('Component', graphql_name='component') + query = sgqlc.types.Field('Query', graphql_name='query') + machine_user = sgqlc.types.Field('MachineUser', graphql_name='machineUser') + facility = sgqlc.types.Field('Facility', graphql_name='facility') + component_edge = sgqlc.types.Field(ComponentsEdge, graphql_name='componentEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ComponentsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpdateControlEventLogPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'control_event_log', 'query', 'control_event', 'control_event_log_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + control_event_log = sgqlc.types.Field('ControlEventLog', graphql_name='controlEventLog') + query = sgqlc.types.Field('Query', graphql_name='query') + control_event = sgqlc.types.Field('ControlEvent', graphql_name='controlEvent') + control_event_log_edge = sgqlc.types.Field(ControlEventLogsEdge, graphql_name='controlEventLogEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ControlEventLogsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpdateControlEventPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'control_event', 'query', 'component', 'control_event_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + control_event = sgqlc.types.Field('ControlEvent', graphql_name='controlEvent') + query = sgqlc.types.Field('Query', graphql_name='query') + component = sgqlc.types.Field('Component', graphql_name='component') + control_event_edge = sgqlc.types.Field(ControlEventsEdge, graphql_name='controlEventEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ControlEventsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpdateDataPointPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'data_point', 'query', 'data_source_by_data_source_name', 'data_point_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + data_point = sgqlc.types.Field('DataPoint', graphql_name='dataPoint') + query = sgqlc.types.Field('Query', graphql_name='query') + data_source_by_data_source_name = sgqlc.types.Field('DataSource', graphql_name='dataSourceByDataSourceName') + data_point_edge = sgqlc.types.Field(DataPointsEdge, graphql_name='dataPointEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(DataPointsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpdateDependencyPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'dependency', 'query', 'dependency_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + dependency = sgqlc.types.Field('Dependency', graphql_name='dependency') + query = sgqlc.types.Field('Query', graphql_name='query') + dependency_edge = sgqlc.types.Field(DependenciesEdge, graphql_name='dependencyEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(DependenciesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpdateFacilityGroupPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'facility_group', 'query', 'parent', 'facility_group_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + facility_group = sgqlc.types.Field('FacilityGroup', graphql_name='facilityGroup') + query = sgqlc.types.Field('Query', graphql_name='query') + parent = sgqlc.types.Field('FacilityGroup', graphql_name='parent') + facility_group_edge = sgqlc.types.Field(FacilityGroupsEdge, graphql_name='facilityGroupEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(FacilityGroupsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpdateFacilityGroupsLinkerPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'facility_groups_linker', 'query', 'facility', 'facility_grouping', 'facility_groups_linker_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + facility_groups_linker = sgqlc.types.Field('FacilityGroupsLinker', graphql_name='facilityGroupsLinker') + query = sgqlc.types.Field('Query', graphql_name='query') + facility = sgqlc.types.Field('Facility', graphql_name='facility') + facility_grouping = sgqlc.types.Field('FacilityGroup', graphql_name='facilityGrouping') + facility_groups_linker_edge = sgqlc.types.Field(FacilityGroupsLinkersEdge, graphql_name='facilityGroupsLinkerEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(FacilityGroupsLinkersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpdateFacilityPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'facility', 'query', 'timezone', 'unit_group_by_unit_group', 'facility_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + facility = sgqlc.types.Field('Facility', graphql_name='facility') + query = sgqlc.types.Field('Query', graphql_name='query') + timezone = sgqlc.types.Field('Timezone', graphql_name='timezone') + unit_group_by_unit_group = sgqlc.types.Field('UnitGroup', graphql_name='unitGroupByUnitGroup') + facility_edge = sgqlc.types.Field(FacilitiesEdge, graphql_name='facilityEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(FacilitiesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpdateFieldGroupPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'field_group', 'query', 'field_group_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + field_group = sgqlc.types.Field('FieldGroup', graphql_name='fieldGroup') + query = sgqlc.types.Field('Query', graphql_name='query') + field_group_edge = sgqlc.types.Field(FieldGroupsEdge, graphql_name='fieldGroupEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(FieldGroupsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpdateMachineUserPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'machine_user', 'query', 'machine_user_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + machine_user = sgqlc.types.Field('MachineUser', graphql_name='machineUser') + query = sgqlc.types.Field('Query', graphql_name='query') + machine_user_edge = sgqlc.types.Field(MachineUsersEdge, graphql_name='machineUserEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(MachineUsersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpdateMeterChargePayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'meter_charge', 'query', 'meter_statement', 'meter_charge_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + meter_charge = sgqlc.types.Field('MeterCharge', graphql_name='meterCharge') + query = sgqlc.types.Field('Query', graphql_name='query') + meter_statement = sgqlc.types.Field('MeterStatement', graphql_name='meterStatement') + meter_charge_edge = sgqlc.types.Field(MeterChargesEdge, graphql_name='meterChargeEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(MeterChargesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpdateMeterStatementPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'meter_statement', 'query', 'utility_meter', 'account_statement', 'meter_statement_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + meter_statement = sgqlc.types.Field('MeterStatement', graphql_name='meterStatement') + query = sgqlc.types.Field('Query', graphql_name='query') + utility_meter = sgqlc.types.Field('UtilityMeter', graphql_name='utilityMeter') + account_statement = sgqlc.types.Field('AccountStatement', graphql_name='accountStatement') + meter_statement_edge = sgqlc.types.Field(MeterStatementsEdge, graphql_name='meterStatementEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(MeterStatementsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpdateMeterUsagePayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'meter_usage', 'query', 'meter_statement', 'meter_usage_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + meter_usage = sgqlc.types.Field('MeterUsage', graphql_name='meterUsage') + query = sgqlc.types.Field('Query', graphql_name='query') + meter_statement = sgqlc.types.Field('MeterStatement', graphql_name='meterStatement') + meter_usage_edge = sgqlc.types.Field(MeterUsagesEdge, graphql_name='meterUsageEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(MeterUsagesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpdatePhoneNumberResponse(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('user', 'client_mutation_id') + user = sgqlc.types.Field(sgqlc.types.non_null('User'), graphql_name='user') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + + +class UpdateProgramPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'program', 'query', 'project_type', 'program_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + program = sgqlc.types.Field('Program', graphql_name='program') + query = sgqlc.types.Field('Query', graphql_name='query') + project_type = sgqlc.types.Field('ProjectType', graphql_name='projectType') + program_edge = sgqlc.types.Field(ProgramsEdge, graphql_name='programEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProgramsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpdateProjectComponentPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'project_component', 'query', 'project', 'component', 'project_component_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + project_component = sgqlc.types.Field('ProjectComponent', graphql_name='projectComponent') + query = sgqlc.types.Field('Query', graphql_name='query') + project = sgqlc.types.Field('Project', graphql_name='project') + component = sgqlc.types.Field('Component', graphql_name='component') + project_component_edge = sgqlc.types.Field(ProjectComponentsEdge, graphql_name='projectComponentEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProjectComponentsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpdateProjectFieldPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'project_field', 'query', 'project', 'group', 'data_point', 'project_field_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + project_field = sgqlc.types.Field('ProjectField', graphql_name='projectField') + query = sgqlc.types.Field('Query', graphql_name='query') + project = sgqlc.types.Field('Project', graphql_name='project') + group = sgqlc.types.Field('FieldGroup', graphql_name='group') + data_point = sgqlc.types.Field('DataPoint', graphql_name='dataPoint') + project_field_edge = sgqlc.types.Field(ProjectFieldsEdge, graphql_name='projectFieldEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProjectFieldsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpdateProjectPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'project', 'query', 'facility', 'project_type', 'program', 'project_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + project = sgqlc.types.Field('Project', graphql_name='project') + query = sgqlc.types.Field('Query', graphql_name='query') + facility = sgqlc.types.Field('Facility', graphql_name='facility') + project_type = sgqlc.types.Field('ProjectType', graphql_name='projectType') + program = sgqlc.types.Field('Program', graphql_name='program') + project_edge = sgqlc.types.Field(ProjectsEdge, graphql_name='projectEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProjectsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpdateProjectWatcherPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'project_watcher', 'query', 'project', 'user', 'project_watcher_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + project_watcher = sgqlc.types.Field('ProjectWatcher', graphql_name='projectWatcher') + query = sgqlc.types.Field('Query', graphql_name='query') + project = sgqlc.types.Field('Project', graphql_name='project') + user = sgqlc.types.Field('User', graphql_name='user') + project_watcher_edge = sgqlc.types.Field(ProjectWatchersEdge, graphql_name='projectWatcherEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProjectWatchersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpdateReportExecutionPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'report_execution', 'query', 'report', 'report_execution_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + report_execution = sgqlc.types.Field('ReportExecution', graphql_name='reportExecution') + query = sgqlc.types.Field('Query', graphql_name='query') + report = sgqlc.types.Field('Report', graphql_name='report') + report_execution_edge = sgqlc.types.Field(ReportExecutionsEdge, graphql_name='reportExecutionEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ReportExecutionsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpdateSavingsEventPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'savings_event', 'query', 'project', 'savings_event_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + savings_event = sgqlc.types.Field('SavingsEvent', graphql_name='savingsEvent') + query = sgqlc.types.Field('Query', graphql_name='query') + project = sgqlc.types.Field('Project', graphql_name='project') + savings_event_edge = sgqlc.types.Field(SavingsEventsEdge, graphql_name='savingsEventEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(SavingsEventsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpdateSuggestionControlEventPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'suggestion_control_event', 'query', 'suggestion', 'control_event') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + suggestion_control_event = sgqlc.types.Field('SuggestionControlEvent', graphql_name='suggestionControlEvent') + query = sgqlc.types.Field('Query', graphql_name='query') + suggestion = sgqlc.types.Field('Suggestion', graphql_name='suggestion') + control_event = sgqlc.types.Field('ControlEvent', graphql_name='controlEvent') + + +class UpdateSuggestionPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'suggestion', 'query', 'project', 'savings_event', 'suggestion_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + suggestion = sgqlc.types.Field('Suggestion', graphql_name='suggestion') + query = sgqlc.types.Field('Query', graphql_name='query') + project = sgqlc.types.Field('Project', graphql_name='project') + savings_event = sgqlc.types.Field('SavingsEvent', graphql_name='savingsEvent') + suggestion_edge = sgqlc.types.Field(SuggestionsEdge, graphql_name='suggestionEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(SuggestionsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpdateUserPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'user', 'query', 'user_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + user = sgqlc.types.Field('User', graphql_name='user') + query = sgqlc.types.Field('Query', graphql_name='query') + user_edge = sgqlc.types.Field('UsersEdge', graphql_name='userEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UsersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpdateUtilityAccountPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'utility_account', 'query', 'utility_provider', 'utility_account_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + utility_account = sgqlc.types.Field('UtilityAccount', graphql_name='utilityAccount') + query = sgqlc.types.Field('Query', graphql_name='query') + utility_provider = sgqlc.types.Field('UtilityProvider', graphql_name='utilityProvider') + utility_account_edge = sgqlc.types.Field('UtilityAccountsEdge', graphql_name='utilityAccountEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityAccountsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpdateUtilityMeterPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'utility_meter', 'query', 'utility_account', 'facility', 'utility_meter_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + utility_meter = sgqlc.types.Field('UtilityMeter', graphql_name='utilityMeter') + query = sgqlc.types.Field('Query', graphql_name='query') + utility_account = sgqlc.types.Field('UtilityAccount', graphql_name='utilityAccount') + facility = sgqlc.types.Field('Facility', graphql_name='facility') + utility_meter_edge = sgqlc.types.Field('UtilityMetersEdge', graphql_name='utilityMeterEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMetersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpdateUtilityProviderPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'utility_provider', 'query', 'utility_provider_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + utility_provider = sgqlc.types.Field('UtilityProvider', graphql_name='utilityProvider') + query = sgqlc.types.Field('Query', graphql_name='query') + utility_provider_edge = sgqlc.types.Field('UtilityProvidersEdge', graphql_name='utilityProviderEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityProvidersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpdateVendorUserMachineUserPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'vendor_user_machine_user', 'query') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + vendor_user_machine_user = sgqlc.types.Field('VendorUserMachineUser', graphql_name='vendorUserMachineUser') + query = sgqlc.types.Field('Query', graphql_name='query') + + +class UpdateVendorUserPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'vendor_user', 'query', 'vendor_user_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + vendor_user = sgqlc.types.Field('VendorUser', graphql_name='vendorUser') + query = sgqlc.types.Field('Query', graphql_name='query') + vendor_user_edge = sgqlc.types.Field('VendorUsersEdge', graphql_name='vendorUserEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(VendorUsersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpdateVirtualPointIntervalPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'virtual_point_interval', 'query', 'parent', 'child', 'virtual_point_interval_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + virtual_point_interval = sgqlc.types.Field('VirtualPointInterval', graphql_name='virtualPointInterval') + query = sgqlc.types.Field('Query', graphql_name='query') + parent = sgqlc.types.Field('DataPoint', graphql_name='parent') + child = sgqlc.types.Field('DataPoint', graphql_name='child') + virtual_point_interval_edge = sgqlc.types.Field('VirtualPointIntervalsEdge', graphql_name='virtualPointIntervalEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(VirtualPointIntervalsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpsertAccountChargePayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'account_charge', 'query', 'account_statement', 'account_charge_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + account_charge = sgqlc.types.Field('AccountCharge', graphql_name='accountCharge') + query = sgqlc.types.Field('Query', graphql_name='query') + account_statement = sgqlc.types.Field('AccountStatement', graphql_name='accountStatement') + account_charge_edge = sgqlc.types.Field(AccountChargesEdge, graphql_name='accountChargeEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(AccountChargesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpsertAccountStatementPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'account_statement', 'query', 'utility_account', 'account_statement_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + account_statement = sgqlc.types.Field('AccountStatement', graphql_name='accountStatement') + query = sgqlc.types.Field('Query', graphql_name='query') + utility_account = sgqlc.types.Field('UtilityAccount', graphql_name='utilityAccount') + account_statement_edge = sgqlc.types.Field(AccountStatementsEdge, graphql_name='accountStatementEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(AccountStatementsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpsertBalancingAuthorityPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'balancing_authority', 'query', 'balancing_authority_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + balancing_authority = sgqlc.types.Field('BalancingAuthority', graphql_name='balancingAuthority') + query = sgqlc.types.Field('Query', graphql_name='query') + balancing_authority_edge = sgqlc.types.Field(BalancingAuthoritiesEdge, graphql_name='balancingAuthorityEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(BalancingAuthoritiesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpsertBuildingAreaPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'building_area', 'query', 'building_area_type', 'facility', 'building_area_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + building_area = sgqlc.types.Field('BuildingArea', graphql_name='buildingArea') + query = sgqlc.types.Field('Query', graphql_name='query') + building_area_type = sgqlc.types.Field('BuildingAreaType', graphql_name='buildingAreaType') + facility = sgqlc.types.Field('Facility', graphql_name='facility') + building_area_edge = sgqlc.types.Field(BuildingAreasEdge, graphql_name='buildingAreaEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(BuildingAreasOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpsertBuildingAreaTypePayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'building_area_type', 'query', 'building_area_type_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + building_area_type = sgqlc.types.Field('BuildingAreaType', graphql_name='buildingAreaType') + query = sgqlc.types.Field('Query', graphql_name='query') + building_area_type_edge = sgqlc.types.Field(BuildingAreaTypesEdge, graphql_name='buildingAreaTypeEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(BuildingAreaTypesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpsertDataPointPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'data_point', 'query', 'data_source_by_data_source_name', 'data_point_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + data_point = sgqlc.types.Field('DataPoint', graphql_name='dataPoint') + query = sgqlc.types.Field('Query', graphql_name='query') + data_source_by_data_source_name = sgqlc.types.Field('DataSource', graphql_name='dataSourceByDataSourceName') + data_point_edge = sgqlc.types.Field(DataPointsEdge, graphql_name='dataPointEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(DataPointsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpsertDependencyPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'dependency', 'query', 'dependency_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + dependency = sgqlc.types.Field('Dependency', graphql_name='dependency') + query = sgqlc.types.Field('Query', graphql_name='query') + dependency_edge = sgqlc.types.Field(DependenciesEdge, graphql_name='dependencyEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(DependenciesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpsertFieldGroupPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'field_group', 'query', 'field_group_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + field_group = sgqlc.types.Field('FieldGroup', graphql_name='fieldGroup') + query = sgqlc.types.Field('Query', graphql_name='query') + field_group_edge = sgqlc.types.Field(FieldGroupsEdge, graphql_name='fieldGroupEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(FieldGroupsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpsertMachineUserPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'machine_user', 'query', 'machine_user_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + machine_user = sgqlc.types.Field('MachineUser', graphql_name='machineUser') + query = sgqlc.types.Field('Query', graphql_name='query') + machine_user_edge = sgqlc.types.Field(MachineUsersEdge, graphql_name='machineUserEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(MachineUsersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpsertMeterChargePayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'meter_charge', 'query', 'meter_statement', 'meter_charge_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + meter_charge = sgqlc.types.Field('MeterCharge', graphql_name='meterCharge') + query = sgqlc.types.Field('Query', graphql_name='query') + meter_statement = sgqlc.types.Field('MeterStatement', graphql_name='meterStatement') + meter_charge_edge = sgqlc.types.Field(MeterChargesEdge, graphql_name='meterChargeEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(MeterChargesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpsertMeterStatementPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'meter_statement', 'query', 'utility_meter', 'account_statement', 'meter_statement_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + meter_statement = sgqlc.types.Field('MeterStatement', graphql_name='meterStatement') + query = sgqlc.types.Field('Query', graphql_name='query') + utility_meter = sgqlc.types.Field('UtilityMeter', graphql_name='utilityMeter') + account_statement = sgqlc.types.Field('AccountStatement', graphql_name='accountStatement') + meter_statement_edge = sgqlc.types.Field(MeterStatementsEdge, graphql_name='meterStatementEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(MeterStatementsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpsertMeterUsagePayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'meter_usage', 'query', 'meter_statement', 'meter_usage_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + meter_usage = sgqlc.types.Field('MeterUsage', graphql_name='meterUsage') + query = sgqlc.types.Field('Query', graphql_name='query') + meter_statement = sgqlc.types.Field('MeterStatement', graphql_name='meterStatement') + meter_usage_edge = sgqlc.types.Field(MeterUsagesEdge, graphql_name='meterUsageEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(MeterUsagesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpsertProgramPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'program', 'query', 'project_type', 'program_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + program = sgqlc.types.Field('Program', graphql_name='program') + query = sgqlc.types.Field('Query', graphql_name='query') + project_type = sgqlc.types.Field('ProjectType', graphql_name='projectType') + program_edge = sgqlc.types.Field(ProgramsEdge, graphql_name='programEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProgramsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpsertProjectComponentPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'project_component', 'query', 'project', 'component', 'project_component_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + project_component = sgqlc.types.Field('ProjectComponent', graphql_name='projectComponent') + query = sgqlc.types.Field('Query', graphql_name='query') + project = sgqlc.types.Field('Project', graphql_name='project') + component = sgqlc.types.Field('Component', graphql_name='component') + project_component_edge = sgqlc.types.Field(ProjectComponentsEdge, graphql_name='projectComponentEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProjectComponentsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpsertProjectFieldPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'project_field', 'query', 'project', 'group', 'data_point', 'project_field_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + project_field = sgqlc.types.Field('ProjectField', graphql_name='projectField') + query = sgqlc.types.Field('Query', graphql_name='query') + project = sgqlc.types.Field('Project', graphql_name='project') + group = sgqlc.types.Field('FieldGroup', graphql_name='group') + data_point = sgqlc.types.Field('DataPoint', graphql_name='dataPoint') + project_field_edge = sgqlc.types.Field(ProjectFieldsEdge, graphql_name='projectFieldEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProjectFieldsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpsertProjectSubscriptionPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'user_subscriptions', 'query') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + user_subscriptions = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('UserSubscription')), graphql_name='userSubscriptions') + query = sgqlc.types.Field('Query', graphql_name='query') + + +class UpsertProjectWatcherPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'project_watcher', 'query', 'project', 'user', 'project_watcher_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + project_watcher = sgqlc.types.Field('ProjectWatcher', graphql_name='projectWatcher') + query = sgqlc.types.Field('Query', graphql_name='query') + project = sgqlc.types.Field('Project', graphql_name='project') + user = sgqlc.types.Field('User', graphql_name='user') + project_watcher_edge = sgqlc.types.Field(ProjectWatchersEdge, graphql_name='projectWatcherEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProjectWatchersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpsertReportExecutionPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'report_execution', 'query', 'report', 'report_execution_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + report_execution = sgqlc.types.Field('ReportExecution', graphql_name='reportExecution') + query = sgqlc.types.Field('Query', graphql_name='query') + report = sgqlc.types.Field('Report', graphql_name='report') + report_execution_edge = sgqlc.types.Field(ReportExecutionsEdge, graphql_name='reportExecutionEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ReportExecutionsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpsertReportQueryPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'report_query', 'query', 'report', 'report_query_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + report_query = sgqlc.types.Field('ReportQuery', graphql_name='reportQuery') + query = sgqlc.types.Field('Query', graphql_name='query') + report = sgqlc.types.Field('Report', graphql_name='report') + report_query_edge = sgqlc.types.Field(ReportQueriesEdge, graphql_name='reportQueryEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ReportQueriesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpsertSavingsEventPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'savings_event', 'query', 'project', 'savings_event_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + savings_event = sgqlc.types.Field('SavingsEvent', graphql_name='savingsEvent') + query = sgqlc.types.Field('Query', graphql_name='query') + project = sgqlc.types.Field('Project', graphql_name='project') + savings_event_edge = sgqlc.types.Field(SavingsEventsEdge, graphql_name='savingsEventEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(SavingsEventsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpsertSuggestionControlEventPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'suggestion_control_event', 'query', 'suggestion', 'control_event') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + suggestion_control_event = sgqlc.types.Field('SuggestionControlEvent', graphql_name='suggestionControlEvent') + query = sgqlc.types.Field('Query', graphql_name='query') + suggestion = sgqlc.types.Field('Suggestion', graphql_name='suggestion') + control_event = sgqlc.types.Field('ControlEvent', graphql_name='controlEvent') + + +class UpsertUrjanetUtilityProviderPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'record_id', 'query') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + record_id = sgqlc.types.Field(Int, graphql_name='recordId') + query = sgqlc.types.Field('Query', graphql_name='query') + + +class UpsertUtilityAccountPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'utility_account', 'query', 'utility_provider', 'utility_account_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + utility_account = sgqlc.types.Field('UtilityAccount', graphql_name='utilityAccount') + query = sgqlc.types.Field('Query', graphql_name='query') + utility_provider = sgqlc.types.Field('UtilityProvider', graphql_name='utilityProvider') + utility_account_edge = sgqlc.types.Field('UtilityAccountsEdge', graphql_name='utilityAccountEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityAccountsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpsertUtilityMeterPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'utility_meter', 'query', 'utility_account', 'facility', 'utility_meter_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + utility_meter = sgqlc.types.Field('UtilityMeter', graphql_name='utilityMeter') + query = sgqlc.types.Field('Query', graphql_name='query') + utility_account = sgqlc.types.Field('UtilityAccount', graphql_name='utilityAccount') + facility = sgqlc.types.Field('Facility', graphql_name='facility') + utility_meter_edge = sgqlc.types.Field('UtilityMetersEdge', graphql_name='utilityMeterEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMetersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpsertUtilityProviderPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'utility_provider', 'query', 'utility_provider_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + utility_provider = sgqlc.types.Field('UtilityProvider', graphql_name='utilityProvider') + query = sgqlc.types.Field('Query', graphql_name='query') + utility_provider_edge = sgqlc.types.Field('UtilityProvidersEdge', graphql_name='utilityProviderEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityProvidersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UpsertVendorUserMachineUserPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'vendor_user_machine_user', 'query') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + vendor_user_machine_user = sgqlc.types.Field('VendorUserMachineUser', graphql_name='vendorUserMachineUser') + query = sgqlc.types.Field('Query', graphql_name='query') + + +class UpsertVirtualPointIntervalPayload(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('client_mutation_id', 'virtual_point_interval', 'query', 'parent', 'child', 'virtual_point_interval_edge') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + virtual_point_interval = sgqlc.types.Field('VirtualPointInterval', graphql_name='virtualPointInterval') + query = sgqlc.types.Field('Query', graphql_name='query') + parent = sgqlc.types.Field('DataPoint', graphql_name='parent') + child = sgqlc.types.Field('DataPoint', graphql_name='child') + virtual_point_interval_edge = sgqlc.types.Field('VirtualPointIntervalsEdge', graphql_name='virtualPointIntervalEdge', args=sgqlc.types.ArgDict(( + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(VirtualPointIntervalsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), +)) + ) + + +class UserPermissions(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('can_edit',) + can_edit = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='canEdit') + + +class UserProjectsManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count', 'savings_event_data') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('Project'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UserProjectsManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + savings_event_data = sgqlc.types.Field(MetricDataConnection, graphql_name='savingsEventData', args=sgqlc.types.ArgDict(( + ('label', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='label', default=None)), + ('from_', sgqlc.types.Arg(String, graphql_name='from', default=None)), + ('to', sgqlc.types.Arg(String, graphql_name='to', default=None)), + ('aggregation', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataAggregationMethod), graphql_name='aggregation', default='SUM')), + ('window', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='window', default='1 day')), + ('sampling_window', sgqlc.types.Arg(String, graphql_name='samplingWindow', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataOrderBy), graphql_name='orderBy', default='TIME_ASC')), + ('unit', sgqlc.types.Arg(String, graphql_name='unit', default=None)), + ('unit_group', sgqlc.types.Arg(String, graphql_name='unitGroup', default=None)), +)) + ) + + +class UserProjectsManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('Project'), graphql_name='node') + + +class UserSubscriptionsConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UserSubscription'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UserSubscriptionsEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class UserSubscriptionsEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('UserSubscription'), graphql_name='node') + + +class UsersConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('User'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UsersEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class UsersEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('User'), graphql_name='node') + + +class UtilityAccountAccountStatementsByUtilityMeterStatementUtilityAccountIdAndAccountStatementIdManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('AccountStatement'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UtilityAccountAccountStatementsByUtilityMeterStatementUtilityAccountIdAndAccountStatementIdManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class UtilityAccountAccountStatementsByUtilityMeterStatementUtilityAccountIdAndAccountStatementIdManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'utility_meter_statements') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('AccountStatement'), graphql_name='node') + utility_meter_statements = sgqlc.types.Field(sgqlc.types.non_null('UtilityMeterStatementsConnection'), graphql_name='utilityMeterStatements', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMeterStatementsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityMeterStatementCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityMeterStatementFilter, graphql_name='filter', default=None)), +)) + ) + + +class UtilityAccountFacilitiesByUtilityMeterStatementRollupUtilityAccountIdAndFacilityIdManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count', 'aggregates', 'grouped_aggregates', 'metric_data') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('Facility'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UtilityAccountFacilitiesByUtilityMeterStatementRollupUtilityAccountIdAndFacilityIdManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + aggregates = sgqlc.types.Field(FacilityAggregates, graphql_name='aggregates') + grouped_aggregates = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(FacilityAggregates)), graphql_name='groupedAggregates', args=sgqlc.types.ArgDict(( + ('group_by', sgqlc.types.Arg(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(FacilitiesGroupBy))), graphql_name='groupBy', default=None)), + ('having', sgqlc.types.Arg(FacilitiesHavingInput, graphql_name='having', default=None)), +)) + ) + metric_data = sgqlc.types.Field(MetricDataConnection, graphql_name='metricData', args=sgqlc.types.ArgDict(( + ('label', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='label', default=None)), + ('from_', sgqlc.types.Arg(String, graphql_name='from', default=None)), + ('to', sgqlc.types.Arg(String, graphql_name='to', default=None)), + ('aggregation', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataAggregationMethod), graphql_name='aggregation', default='SUM')), + ('window', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='window', default='1 day')), + ('sampling_window', sgqlc.types.Arg(String, graphql_name='samplingWindow', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataOrderBy), graphql_name='orderBy', default='TIME_ASC')), + ('unit', sgqlc.types.Arg(String, graphql_name='unit', default=None)), + ('unit_group', sgqlc.types.Arg(String, graphql_name='unitGroup', default=None)), +)) + ) + + +class UtilityAccountFacilitiesByUtilityMeterStatementRollupUtilityAccountIdAndFacilityIdManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'utility_meter_statement_rollups') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('Facility'), graphql_name='node') + utility_meter_statement_rollups = sgqlc.types.Field(sgqlc.types.non_null('UtilityMeterStatementRollupsConnection'), graphql_name='utilityMeterStatementRollups', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMeterStatementRollupsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityMeterStatementRollupCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityMeterStatementRollupFilter, graphql_name='filter', default=None)), +)) + ) + + +class UtilityAccountFacilitiesByUtilityMeterStatementUtilityAccountIdAndFacilityIdManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count', 'aggregates', 'grouped_aggregates', 'metric_data') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('Facility'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UtilityAccountFacilitiesByUtilityMeterStatementUtilityAccountIdAndFacilityIdManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + aggregates = sgqlc.types.Field(FacilityAggregates, graphql_name='aggregates') + grouped_aggregates = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(FacilityAggregates)), graphql_name='groupedAggregates', args=sgqlc.types.ArgDict(( + ('group_by', sgqlc.types.Arg(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(FacilitiesGroupBy))), graphql_name='groupBy', default=None)), + ('having', sgqlc.types.Arg(FacilitiesHavingInput, graphql_name='having', default=None)), +)) + ) + metric_data = sgqlc.types.Field(MetricDataConnection, graphql_name='metricData', args=sgqlc.types.ArgDict(( + ('label', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='label', default=None)), + ('from_', sgqlc.types.Arg(String, graphql_name='from', default=None)), + ('to', sgqlc.types.Arg(String, graphql_name='to', default=None)), + ('aggregation', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataAggregationMethod), graphql_name='aggregation', default='SUM')), + ('window', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='window', default='1 day')), + ('sampling_window', sgqlc.types.Arg(String, graphql_name='samplingWindow', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataOrderBy), graphql_name='orderBy', default='TIME_ASC')), + ('unit', sgqlc.types.Arg(String, graphql_name='unit', default=None)), + ('unit_group', sgqlc.types.Arg(String, graphql_name='unitGroup', default=None)), +)) + ) + + +class UtilityAccountFacilitiesByUtilityMeterStatementUtilityAccountIdAndFacilityIdManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'utility_meter_statements') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('Facility'), graphql_name='node') + utility_meter_statements = sgqlc.types.Field(sgqlc.types.non_null('UtilityMeterStatementsConnection'), graphql_name='utilityMeterStatements', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMeterStatementsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityMeterStatementCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityMeterStatementFilter, graphql_name='filter', default=None)), +)) + ) + + +class UtilityAccountFacilitiesByUtilityMeterUtilityAccountIdAndFacilityIdManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count', 'aggregates', 'grouped_aggregates', 'metric_data') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('Facility'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UtilityAccountFacilitiesByUtilityMeterUtilityAccountIdAndFacilityIdManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + aggregates = sgqlc.types.Field(FacilityAggregates, graphql_name='aggregates') + grouped_aggregates = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(FacilityAggregates)), graphql_name='groupedAggregates', args=sgqlc.types.ArgDict(( + ('group_by', sgqlc.types.Arg(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(FacilitiesGroupBy))), graphql_name='groupBy', default=None)), + ('having', sgqlc.types.Arg(FacilitiesHavingInput, graphql_name='having', default=None)), +)) + ) + metric_data = sgqlc.types.Field(MetricDataConnection, graphql_name='metricData', args=sgqlc.types.ArgDict(( + ('label', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='label', default=None)), + ('from_', sgqlc.types.Arg(String, graphql_name='from', default=None)), + ('to', sgqlc.types.Arg(String, graphql_name='to', default=None)), + ('aggregation', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataAggregationMethod), graphql_name='aggregation', default='SUM')), + ('window', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='window', default='1 day')), + ('sampling_window', sgqlc.types.Arg(String, graphql_name='samplingWindow', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataOrderBy), graphql_name='orderBy', default='TIME_ASC')), + ('unit', sgqlc.types.Arg(String, graphql_name='unit', default=None)), + ('unit_group', sgqlc.types.Arg(String, graphql_name='unitGroup', default=None)), +)) + ) + + +class UtilityAccountFacilitiesByUtilityMeterUtilityAccountIdAndFacilityIdManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'utility_meters') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('Facility'), graphql_name='node') + utility_meters = sgqlc.types.Field(sgqlc.types.non_null('UtilityMetersConnection'), graphql_name='utilityMeters', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMetersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityMeterCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityMeterFilter, graphql_name='filter', default=None)), +)) + ) + + +class UtilityAccountStatementRollupAggregates(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('keys', 'sum', 'distinct_count', 'min', 'max', 'average', 'stddev_sample', 'stddev_population', 'variance_sample', 'variance_population', 'distinct') + keys = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='keys') + sum = sgqlc.types.Field('UtilityAccountStatementRollupSumAggregates', graphql_name='sum') + distinct_count = sgqlc.types.Field('UtilityAccountStatementRollupDistinctCountAggregates', graphql_name='distinctCount') + min = sgqlc.types.Field('UtilityAccountStatementRollupMinAggregates', graphql_name='min') + max = sgqlc.types.Field('UtilityAccountStatementRollupMaxAggregates', graphql_name='max') + average = sgqlc.types.Field('UtilityAccountStatementRollupAverageAggregates', graphql_name='average') + stddev_sample = sgqlc.types.Field('UtilityAccountStatementRollupStddevSampleAggregates', graphql_name='stddevSample') + stddev_population = sgqlc.types.Field('UtilityAccountStatementRollupStddevPopulationAggregates', graphql_name='stddevPopulation') + variance_sample = sgqlc.types.Field('UtilityAccountStatementRollupVarianceSampleAggregates', graphql_name='varianceSample') + variance_population = sgqlc.types.Field('UtilityAccountStatementRollupVariancePopulationAggregates', graphql_name='variancePopulation') + distinct = sgqlc.types.Field('UtilityAccountStatementRollupDistinctAggregates', graphql_name='distinct') + + +class UtilityAccountStatementRollupAverageAggregates(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('utility_account_id', 'account_statement_id', 'statement_year', 'statement_month', 'bill_cost', 'bill_usage_cost', 'bill_demand_cost', 'fees', 'taxes', 'credits', 'percent_change') + utility_account_id = sgqlc.types.Field(BigFloat, graphql_name='utilityAccountId') + account_statement_id = sgqlc.types.Field(BigFloat, graphql_name='accountStatementId') + statement_year = sgqlc.types.Field(BigFloat, graphql_name='statementYear') + statement_month = sgqlc.types.Field(BigFloat, graphql_name='statementMonth') + bill_cost = sgqlc.types.Field(Float, graphql_name='billCost') + bill_usage_cost = sgqlc.types.Field(Float, graphql_name='billUsageCost') + bill_demand_cost = sgqlc.types.Field(Float, graphql_name='billDemandCost') + fees = sgqlc.types.Field(Float, graphql_name='fees') + taxes = sgqlc.types.Field(Float, graphql_name='taxes') + credits = sgqlc.types.Field(Float, graphql_name='credits') + percent_change = sgqlc.types.Field(Float, graphql_name='percentChange') + + +class UtilityAccountStatementRollupDistinctAggregates(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('utility_account_id', 'account_label', 'provider', 'account_statement_id', 'statement_year', 'statement_month', 'interval_start', 'interval_end', 'bill_arrival_date', 'bill_cost', 'bill_usage_cost', 'bill_demand_cost', 'fees', 'taxes', 'credits', 'percent_change', 'currency_code', 'service_types') + utility_account_id = sgqlc.types.Field(sgqlc.types.list_of(Int), graphql_name='utilityAccountId') + account_label = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='accountLabel') + provider = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='provider') + account_statement_id = sgqlc.types.Field(sgqlc.types.list_of(Int), graphql_name='accountStatementId') + statement_year = sgqlc.types.Field(sgqlc.types.list_of(Int), graphql_name='statementYear') + statement_month = sgqlc.types.Field(sgqlc.types.list_of(Int), graphql_name='statementMonth') + interval_start = sgqlc.types.Field(JSON, graphql_name='intervalStart') + interval_end = sgqlc.types.Field(JSON, graphql_name='intervalEnd') + bill_arrival_date = sgqlc.types.Field(JSON, graphql_name='billArrivalDate') + bill_cost = sgqlc.types.Field(sgqlc.types.list_of(Float), graphql_name='billCost') + bill_usage_cost = sgqlc.types.Field(sgqlc.types.list_of(Float), graphql_name='billUsageCost') + bill_demand_cost = sgqlc.types.Field(sgqlc.types.list_of(Float), graphql_name='billDemandCost') + fees = sgqlc.types.Field(sgqlc.types.list_of(Float), graphql_name='fees') + taxes = sgqlc.types.Field(sgqlc.types.list_of(Float), graphql_name='taxes') + credits = sgqlc.types.Field(sgqlc.types.list_of(Float), graphql_name='credits') + percent_change = sgqlc.types.Field(sgqlc.types.list_of(Float), graphql_name='percentChange') + currency_code = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='currencyCode') + service_types = sgqlc.types.Field(JSON, graphql_name='serviceTypes') + + +class UtilityAccountStatementRollupDistinctCountAggregates(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('utility_account_id', 'account_label', 'provider', 'account_statement_id', 'statement_year', 'statement_month', 'interval_start', 'interval_end', 'bill_arrival_date', 'bill_cost', 'bill_usage_cost', 'bill_demand_cost', 'fees', 'taxes', 'credits', 'percent_change', 'currency_code', 'service_types') + utility_account_id = sgqlc.types.Field(BigInt, graphql_name='utilityAccountId') + account_label = sgqlc.types.Field(BigInt, graphql_name='accountLabel') + provider = sgqlc.types.Field(BigInt, graphql_name='provider') + account_statement_id = sgqlc.types.Field(BigInt, graphql_name='accountStatementId') + statement_year = sgqlc.types.Field(BigInt, graphql_name='statementYear') + statement_month = sgqlc.types.Field(BigInt, graphql_name='statementMonth') + interval_start = sgqlc.types.Field(BigInt, graphql_name='intervalStart') + interval_end = sgqlc.types.Field(BigInt, graphql_name='intervalEnd') + bill_arrival_date = sgqlc.types.Field(BigInt, graphql_name='billArrivalDate') + bill_cost = sgqlc.types.Field(BigInt, graphql_name='billCost') + bill_usage_cost = sgqlc.types.Field(BigInt, graphql_name='billUsageCost') + bill_demand_cost = sgqlc.types.Field(BigInt, graphql_name='billDemandCost') + fees = sgqlc.types.Field(BigInt, graphql_name='fees') + taxes = sgqlc.types.Field(BigInt, graphql_name='taxes') + credits = sgqlc.types.Field(BigInt, graphql_name='credits') + percent_change = sgqlc.types.Field(BigInt, graphql_name='percentChange') + currency_code = sgqlc.types.Field(BigInt, graphql_name='currencyCode') + service_types = sgqlc.types.Field(BigInt, graphql_name='serviceTypes') + + +class UtilityAccountStatementRollupMaxAggregates(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('utility_account_id', 'account_statement_id', 'statement_year', 'statement_month', 'bill_cost', 'bill_usage_cost', 'bill_demand_cost', 'fees', 'taxes', 'credits', 'percent_change') + utility_account_id = sgqlc.types.Field(Int, graphql_name='utilityAccountId') + account_statement_id = sgqlc.types.Field(Int, graphql_name='accountStatementId') + statement_year = sgqlc.types.Field(Int, graphql_name='statementYear') + statement_month = sgqlc.types.Field(Int, graphql_name='statementMonth') + bill_cost = sgqlc.types.Field(Float, graphql_name='billCost') + bill_usage_cost = sgqlc.types.Field(Float, graphql_name='billUsageCost') + bill_demand_cost = sgqlc.types.Field(Float, graphql_name='billDemandCost') + fees = sgqlc.types.Field(Float, graphql_name='fees') + taxes = sgqlc.types.Field(Float, graphql_name='taxes') + credits = sgqlc.types.Field(Float, graphql_name='credits') + percent_change = sgqlc.types.Field(Float, graphql_name='percentChange') + + +class UtilityAccountStatementRollupMinAggregates(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('utility_account_id', 'account_statement_id', 'statement_year', 'statement_month', 'bill_cost', 'bill_usage_cost', 'bill_demand_cost', 'fees', 'taxes', 'credits', 'percent_change') + utility_account_id = sgqlc.types.Field(Int, graphql_name='utilityAccountId') + account_statement_id = sgqlc.types.Field(Int, graphql_name='accountStatementId') + statement_year = sgqlc.types.Field(Int, graphql_name='statementYear') + statement_month = sgqlc.types.Field(Int, graphql_name='statementMonth') + bill_cost = sgqlc.types.Field(Float, graphql_name='billCost') + bill_usage_cost = sgqlc.types.Field(Float, graphql_name='billUsageCost') + bill_demand_cost = sgqlc.types.Field(Float, graphql_name='billDemandCost') + fees = sgqlc.types.Field(Float, graphql_name='fees') + taxes = sgqlc.types.Field(Float, graphql_name='taxes') + credits = sgqlc.types.Field(Float, graphql_name='credits') + percent_change = sgqlc.types.Field(Float, graphql_name='percentChange') + + +class UtilityAccountStatementRollupStddevPopulationAggregates(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('utility_account_id', 'account_statement_id', 'statement_year', 'statement_month', 'bill_cost', 'bill_usage_cost', 'bill_demand_cost', 'fees', 'taxes', 'credits', 'percent_change') + utility_account_id = sgqlc.types.Field(BigFloat, graphql_name='utilityAccountId') + account_statement_id = sgqlc.types.Field(BigFloat, graphql_name='accountStatementId') + statement_year = sgqlc.types.Field(BigFloat, graphql_name='statementYear') + statement_month = sgqlc.types.Field(BigFloat, graphql_name='statementMonth') + bill_cost = sgqlc.types.Field(Float, graphql_name='billCost') + bill_usage_cost = sgqlc.types.Field(Float, graphql_name='billUsageCost') + bill_demand_cost = sgqlc.types.Field(Float, graphql_name='billDemandCost') + fees = sgqlc.types.Field(Float, graphql_name='fees') + taxes = sgqlc.types.Field(Float, graphql_name='taxes') + credits = sgqlc.types.Field(Float, graphql_name='credits') + percent_change = sgqlc.types.Field(Float, graphql_name='percentChange') + + +class UtilityAccountStatementRollupStddevSampleAggregates(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('utility_account_id', 'account_statement_id', 'statement_year', 'statement_month', 'bill_cost', 'bill_usage_cost', 'bill_demand_cost', 'fees', 'taxes', 'credits', 'percent_change') + utility_account_id = sgqlc.types.Field(BigFloat, graphql_name='utilityAccountId') + account_statement_id = sgqlc.types.Field(BigFloat, graphql_name='accountStatementId') + statement_year = sgqlc.types.Field(BigFloat, graphql_name='statementYear') + statement_month = sgqlc.types.Field(BigFloat, graphql_name='statementMonth') + bill_cost = sgqlc.types.Field(Float, graphql_name='billCost') + bill_usage_cost = sgqlc.types.Field(Float, graphql_name='billUsageCost') + bill_demand_cost = sgqlc.types.Field(Float, graphql_name='billDemandCost') + fees = sgqlc.types.Field(Float, graphql_name='fees') + taxes = sgqlc.types.Field(Float, graphql_name='taxes') + credits = sgqlc.types.Field(Float, graphql_name='credits') + percent_change = sgqlc.types.Field(Float, graphql_name='percentChange') + + +class UtilityAccountStatementRollupSumAggregates(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('utility_account_id', 'account_statement_id', 'statement_year', 'statement_month', 'bill_cost', 'bill_usage_cost', 'bill_demand_cost', 'fees', 'taxes', 'credits', 'percent_change') + utility_account_id = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='utilityAccountId') + account_statement_id = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='accountStatementId') + statement_year = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='statementYear') + statement_month = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='statementMonth') + bill_cost = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='billCost') + bill_usage_cost = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='billUsageCost') + bill_demand_cost = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='billDemandCost') + fees = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='fees') + taxes = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='taxes') + credits = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='credits') + percent_change = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='percentChange') + + +class UtilityAccountStatementRollupVariancePopulationAggregates(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('utility_account_id', 'account_statement_id', 'statement_year', 'statement_month', 'bill_cost', 'bill_usage_cost', 'bill_demand_cost', 'fees', 'taxes', 'credits', 'percent_change') + utility_account_id = sgqlc.types.Field(BigFloat, graphql_name='utilityAccountId') + account_statement_id = sgqlc.types.Field(BigFloat, graphql_name='accountStatementId') + statement_year = sgqlc.types.Field(BigFloat, graphql_name='statementYear') + statement_month = sgqlc.types.Field(BigFloat, graphql_name='statementMonth') + bill_cost = sgqlc.types.Field(Float, graphql_name='billCost') + bill_usage_cost = sgqlc.types.Field(Float, graphql_name='billUsageCost') + bill_demand_cost = sgqlc.types.Field(Float, graphql_name='billDemandCost') + fees = sgqlc.types.Field(Float, graphql_name='fees') + taxes = sgqlc.types.Field(Float, graphql_name='taxes') + credits = sgqlc.types.Field(Float, graphql_name='credits') + percent_change = sgqlc.types.Field(Float, graphql_name='percentChange') + + +class UtilityAccountStatementRollupVarianceSampleAggregates(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('utility_account_id', 'account_statement_id', 'statement_year', 'statement_month', 'bill_cost', 'bill_usage_cost', 'bill_demand_cost', 'fees', 'taxes', 'credits', 'percent_change') + utility_account_id = sgqlc.types.Field(BigFloat, graphql_name='utilityAccountId') + account_statement_id = sgqlc.types.Field(BigFloat, graphql_name='accountStatementId') + statement_year = sgqlc.types.Field(BigFloat, graphql_name='statementYear') + statement_month = sgqlc.types.Field(BigFloat, graphql_name='statementMonth') + bill_cost = sgqlc.types.Field(Float, graphql_name='billCost') + bill_usage_cost = sgqlc.types.Field(Float, graphql_name='billUsageCost') + bill_demand_cost = sgqlc.types.Field(Float, graphql_name='billDemandCost') + fees = sgqlc.types.Field(Float, graphql_name='fees') + taxes = sgqlc.types.Field(Float, graphql_name='taxes') + credits = sgqlc.types.Field(Float, graphql_name='credits') + percent_change = sgqlc.types.Field(Float, graphql_name='percentChange') + + +class UtilityAccountStatementRollupsConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count', 'aggregates', 'grouped_aggregates') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UtilityAccountStatementRollup'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UtilityAccountStatementRollupsEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + aggregates = sgqlc.types.Field(UtilityAccountStatementRollupAggregates, graphql_name='aggregates') + grouped_aggregates = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(UtilityAccountStatementRollupAggregates)), graphql_name='groupedAggregates', args=sgqlc.types.ArgDict(( + ('group_by', sgqlc.types.Arg(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(UtilityAccountStatementRollupsGroupBy))), graphql_name='groupBy', default=None)), + ('having', sgqlc.types.Arg(UtilityAccountStatementRollupsHavingInput, graphql_name='having', default=None)), +)) + ) + + +class UtilityAccountStatementRollupsEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('UtilityAccountStatementRollup'), graphql_name='node') + + +class UtilityAccountStatementsConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UtilityAccountStatement'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UtilityAccountStatementsEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class UtilityAccountStatementsEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('UtilityAccountStatement'), graphql_name='node') + + +class UtilityAccountUtilityMetersByUtilityMeterStatementRollupUtilityAccountIdAndUtilityMeterIdManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UtilityMeter'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UtilityAccountUtilityMetersByUtilityMeterStatementRollupUtilityAccountIdAndUtilityMeterIdManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class UtilityAccountUtilityMetersByUtilityMeterStatementRollupUtilityAccountIdAndUtilityMeterIdManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'utility_meter_statement_rollups') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('UtilityMeter'), graphql_name='node') + utility_meter_statement_rollups = sgqlc.types.Field(sgqlc.types.non_null('UtilityMeterStatementRollupsConnection'), graphql_name='utilityMeterStatementRollups', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMeterStatementRollupsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityMeterStatementRollupCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityMeterStatementRollupFilter, graphql_name='filter', default=None)), +)) + ) + + +class UtilityAccountUtilityMetersByUtilityMeterStatementUtilityAccountIdAndUtilityMeterIdManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UtilityMeter'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UtilityAccountUtilityMetersByUtilityMeterStatementUtilityAccountIdAndUtilityMeterIdManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class UtilityAccountUtilityMetersByUtilityMeterStatementUtilityAccountIdAndUtilityMeterIdManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'utility_meter_statements') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('UtilityMeter'), graphql_name='node') + utility_meter_statements = sgqlc.types.Field(sgqlc.types.non_null('UtilityMeterStatementsConnection'), graphql_name='utilityMeterStatements', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMeterStatementsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityMeterStatementCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityMeterStatementFilter, graphql_name='filter', default=None)), +)) + ) + + +class UtilityAccountsConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UtilityAccount'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UtilityAccountsEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class UtilityAccountsEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('UtilityAccount'), graphql_name='node') + + +class UtilityMeterAccountStatementsByMeterStatementUtilityMeterIdAndAccountStatementIdManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('AccountStatement'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UtilityMeterAccountStatementsByMeterStatementUtilityMeterIdAndAccountStatementIdManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class UtilityMeterAccountStatementsByMeterStatementUtilityMeterIdAndAccountStatementIdManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'meter_statements') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('AccountStatement'), graphql_name='node') + meter_statements = sgqlc.types.Field(sgqlc.types.non_null(MeterStatementsConnection), graphql_name='meterStatements', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(MeterStatementsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(MeterStatementCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(MeterStatementFilter, graphql_name='filter', default=None)), +)) + ) + + +class UtilityMeterAccountStatementsByUtilityMeterStatementUtilityMeterIdAndAccountStatementIdManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('AccountStatement'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UtilityMeterAccountStatementsByUtilityMeterStatementUtilityMeterIdAndAccountStatementIdManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class UtilityMeterAccountStatementsByUtilityMeterStatementUtilityMeterIdAndAccountStatementIdManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'utility_meter_statements') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('AccountStatement'), graphql_name='node') + utility_meter_statements = sgqlc.types.Field(sgqlc.types.non_null('UtilityMeterStatementsConnection'), graphql_name='utilityMeterStatements', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMeterStatementsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityMeterStatementCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityMeterStatementFilter, graphql_name='filter', default=None)), +)) + ) + + +class UtilityMeterFacilitiesByUtilityMeterStatementRollupUtilityMeterIdAndFacilityIdManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count', 'aggregates', 'grouped_aggregates', 'metric_data') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('Facility'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UtilityMeterFacilitiesByUtilityMeterStatementRollupUtilityMeterIdAndFacilityIdManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + aggregates = sgqlc.types.Field(FacilityAggregates, graphql_name='aggregates') + grouped_aggregates = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(FacilityAggregates)), graphql_name='groupedAggregates', args=sgqlc.types.ArgDict(( + ('group_by', sgqlc.types.Arg(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(FacilitiesGroupBy))), graphql_name='groupBy', default=None)), + ('having', sgqlc.types.Arg(FacilitiesHavingInput, graphql_name='having', default=None)), +)) + ) + metric_data = sgqlc.types.Field(MetricDataConnection, graphql_name='metricData', args=sgqlc.types.ArgDict(( + ('label', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='label', default=None)), + ('from_', sgqlc.types.Arg(String, graphql_name='from', default=None)), + ('to', sgqlc.types.Arg(String, graphql_name='to', default=None)), + ('aggregation', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataAggregationMethod), graphql_name='aggregation', default='SUM')), + ('window', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='window', default='1 day')), + ('sampling_window', sgqlc.types.Arg(String, graphql_name='samplingWindow', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataOrderBy), graphql_name='orderBy', default='TIME_ASC')), + ('unit', sgqlc.types.Arg(String, graphql_name='unit', default=None)), + ('unit_group', sgqlc.types.Arg(String, graphql_name='unitGroup', default=None)), +)) + ) + + +class UtilityMeterFacilitiesByUtilityMeterStatementRollupUtilityMeterIdAndFacilityIdManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'utility_meter_statement_rollups') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('Facility'), graphql_name='node') + utility_meter_statement_rollups = sgqlc.types.Field(sgqlc.types.non_null('UtilityMeterStatementRollupsConnection'), graphql_name='utilityMeterStatementRollups', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMeterStatementRollupsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityMeterStatementRollupCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityMeterStatementRollupFilter, graphql_name='filter', default=None)), +)) + ) + + +class UtilityMeterFacilitiesByUtilityMeterStatementUtilityMeterIdAndFacilityIdManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count', 'aggregates', 'grouped_aggregates', 'metric_data') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('Facility'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UtilityMeterFacilitiesByUtilityMeterStatementUtilityMeterIdAndFacilityIdManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + aggregates = sgqlc.types.Field(FacilityAggregates, graphql_name='aggregates') + grouped_aggregates = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(FacilityAggregates)), graphql_name='groupedAggregates', args=sgqlc.types.ArgDict(( + ('group_by', sgqlc.types.Arg(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(FacilitiesGroupBy))), graphql_name='groupBy', default=None)), + ('having', sgqlc.types.Arg(FacilitiesHavingInput, graphql_name='having', default=None)), +)) + ) + metric_data = sgqlc.types.Field(MetricDataConnection, graphql_name='metricData', args=sgqlc.types.ArgDict(( + ('label', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='label', default=None)), + ('from_', sgqlc.types.Arg(String, graphql_name='from', default=None)), + ('to', sgqlc.types.Arg(String, graphql_name='to', default=None)), + ('aggregation', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataAggregationMethod), graphql_name='aggregation', default='SUM')), + ('window', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='window', default='1 day')), + ('sampling_window', sgqlc.types.Arg(String, graphql_name='samplingWindow', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataOrderBy), graphql_name='orderBy', default='TIME_ASC')), + ('unit', sgqlc.types.Arg(String, graphql_name='unit', default=None)), + ('unit_group', sgqlc.types.Arg(String, graphql_name='unitGroup', default=None)), +)) + ) + + +class UtilityMeterFacilitiesByUtilityMeterStatementUtilityMeterIdAndFacilityIdManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'utility_meter_statements') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('Facility'), graphql_name='node') + utility_meter_statements = sgqlc.types.Field(sgqlc.types.non_null('UtilityMeterStatementsConnection'), graphql_name='utilityMeterStatements', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMeterStatementsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityMeterStatementCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityMeterStatementFilter, graphql_name='filter', default=None)), +)) + ) + + +class UtilityMeterStatementAggregates(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('keys', 'sum', 'distinct_count', 'min', 'max', 'average', 'stddev_sample', 'stddev_population', 'variance_sample', 'variance_population', 'distinct') + keys = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='keys') + sum = sgqlc.types.Field('UtilityMeterStatementSumAggregates', graphql_name='sum') + distinct_count = sgqlc.types.Field('UtilityMeterStatementDistinctCountAggregates', graphql_name='distinctCount') + min = sgqlc.types.Field('UtilityMeterStatementMinAggregates', graphql_name='min') + max = sgqlc.types.Field('UtilityMeterStatementMaxAggregates', graphql_name='max') + average = sgqlc.types.Field('UtilityMeterStatementAverageAggregates', graphql_name='average') + stddev_sample = sgqlc.types.Field('UtilityMeterStatementStddevSampleAggregates', graphql_name='stddevSample') + stddev_population = sgqlc.types.Field('UtilityMeterStatementStddevPopulationAggregates', graphql_name='stddevPopulation') + variance_sample = sgqlc.types.Field('UtilityMeterStatementVarianceSampleAggregates', graphql_name='varianceSample') + variance_population = sgqlc.types.Field('UtilityMeterStatementVariancePopulationAggregates', graphql_name='variancePopulation') + distinct = sgqlc.types.Field('UtilityMeterStatementDistinctAggregates', graphql_name='distinct') + + +class UtilityMeterStatementAverageAggregates(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'utility_account_id', 'utility_meter_id', 'meter_statement_id', 'statement_year', 'statement_month', 'days_in_bill', 'account_statement_id', 'bill_cost', 'bill_demand', 'bill_demand_cost', 'bill_usage', 'bill_usage_cost', 'credits', 'fees', 'taxes') + facility_id = sgqlc.types.Field(BigFloat, graphql_name='facilityId') + utility_account_id = sgqlc.types.Field(BigFloat, graphql_name='utilityAccountId') + utility_meter_id = sgqlc.types.Field(BigFloat, graphql_name='utilityMeterId') + meter_statement_id = sgqlc.types.Field(BigFloat, graphql_name='meterStatementId') + statement_year = sgqlc.types.Field(BigFloat, graphql_name='statementYear') + statement_month = sgqlc.types.Field(BigFloat, graphql_name='statementMonth') + days_in_bill = sgqlc.types.Field(BigFloat, graphql_name='daysInBill') + account_statement_id = sgqlc.types.Field(BigFloat, graphql_name='accountStatementId') + bill_cost = sgqlc.types.Field(Float, graphql_name='billCost') + bill_demand = sgqlc.types.Field(Float, graphql_name='billDemand') + bill_demand_cost = sgqlc.types.Field(Float, graphql_name='billDemandCost') + bill_usage = sgqlc.types.Field(Float, graphql_name='billUsage') + bill_usage_cost = sgqlc.types.Field(Float, graphql_name='billUsageCost') + credits = sgqlc.types.Field(Float, graphql_name='credits') + fees = sgqlc.types.Field(Float, graphql_name='fees') + taxes = sgqlc.types.Field(Float, graphql_name='taxes') + + +class UtilityMeterStatementDistinctAggregates(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'utility_account_id', 'utility_meter_id', 'meter_end_date_set', 'service_type', 'exclude_usage', 'usage_units', 'demand_units', 'meter_statement_id', 'is_validated', 'meter_label', 'provider', 'account_label', 'bill_arrival_date', 'start_date', 'end_date', 'statement_year', 'statement_month', 'currency_code', 'days_in_bill', 'account_statement_id', 'bill_cost', 'bill_demand', 'bill_demand_cost', 'bill_usage', 'bill_usage_cost', 'credits', 'fees', 'taxes') + facility_id = sgqlc.types.Field(sgqlc.types.list_of(Int), graphql_name='facilityId') + utility_account_id = sgqlc.types.Field(sgqlc.types.list_of(Int), graphql_name='utilityAccountId') + utility_meter_id = sgqlc.types.Field(sgqlc.types.list_of(Int), graphql_name='utilityMeterId') + meter_end_date_set = sgqlc.types.Field(JSON, graphql_name='meterEndDateSet') + service_type = sgqlc.types.Field(JSON, graphql_name='serviceType') + exclude_usage = sgqlc.types.Field(JSON, graphql_name='excludeUsage') + usage_units = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='usageUnits') + demand_units = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='demandUnits') + meter_statement_id = sgqlc.types.Field(sgqlc.types.list_of(Int), graphql_name='meterStatementId') + is_validated = sgqlc.types.Field(JSON, graphql_name='isValidated') + meter_label = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='meterLabel') + provider = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='provider') + account_label = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='accountLabel') + bill_arrival_date = sgqlc.types.Field(JSON, graphql_name='billArrivalDate') + start_date = sgqlc.types.Field(JSON, graphql_name='startDate') + end_date = sgqlc.types.Field(JSON, graphql_name='endDate') + statement_year = sgqlc.types.Field(sgqlc.types.list_of(Int), graphql_name='statementYear') + statement_month = sgqlc.types.Field(sgqlc.types.list_of(Int), graphql_name='statementMonth') + currency_code = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='currencyCode') + days_in_bill = sgqlc.types.Field(sgqlc.types.list_of(Int), graphql_name='daysInBill') + account_statement_id = sgqlc.types.Field(sgqlc.types.list_of(Int), graphql_name='accountStatementId') + bill_cost = sgqlc.types.Field(sgqlc.types.list_of(Float), graphql_name='billCost') + bill_demand = sgqlc.types.Field(sgqlc.types.list_of(Float), graphql_name='billDemand') + bill_demand_cost = sgqlc.types.Field(sgqlc.types.list_of(Float), graphql_name='billDemandCost') + bill_usage = sgqlc.types.Field(sgqlc.types.list_of(Float), graphql_name='billUsage') + bill_usage_cost = sgqlc.types.Field(sgqlc.types.list_of(Float), graphql_name='billUsageCost') + credits = sgqlc.types.Field(sgqlc.types.list_of(Float), graphql_name='credits') + fees = sgqlc.types.Field(sgqlc.types.list_of(Float), graphql_name='fees') + taxes = sgqlc.types.Field(sgqlc.types.list_of(Float), graphql_name='taxes') + + +class UtilityMeterStatementDistinctCountAggregates(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'utility_account_id', 'utility_meter_id', 'meter_end_date_set', 'service_type', 'exclude_usage', 'usage_units', 'demand_units', 'meter_statement_id', 'is_validated', 'meter_label', 'provider', 'account_label', 'bill_arrival_date', 'start_date', 'end_date', 'statement_year', 'statement_month', 'currency_code', 'days_in_bill', 'account_statement_id', 'bill_cost', 'bill_demand', 'bill_demand_cost', 'bill_usage', 'bill_usage_cost', 'credits', 'fees', 'taxes') + facility_id = sgqlc.types.Field(BigInt, graphql_name='facilityId') + utility_account_id = sgqlc.types.Field(BigInt, graphql_name='utilityAccountId') + utility_meter_id = sgqlc.types.Field(BigInt, graphql_name='utilityMeterId') + meter_end_date_set = sgqlc.types.Field(BigInt, graphql_name='meterEndDateSet') + service_type = sgqlc.types.Field(BigInt, graphql_name='serviceType') + exclude_usage = sgqlc.types.Field(BigInt, graphql_name='excludeUsage') + usage_units = sgqlc.types.Field(BigInt, graphql_name='usageUnits') + demand_units = sgqlc.types.Field(BigInt, graphql_name='demandUnits') + meter_statement_id = sgqlc.types.Field(BigInt, graphql_name='meterStatementId') + is_validated = sgqlc.types.Field(BigInt, graphql_name='isValidated') + meter_label = sgqlc.types.Field(BigInt, graphql_name='meterLabel') + provider = sgqlc.types.Field(BigInt, graphql_name='provider') + account_label = sgqlc.types.Field(BigInt, graphql_name='accountLabel') + bill_arrival_date = sgqlc.types.Field(BigInt, graphql_name='billArrivalDate') + start_date = sgqlc.types.Field(BigInt, graphql_name='startDate') + end_date = sgqlc.types.Field(BigInt, graphql_name='endDate') + statement_year = sgqlc.types.Field(BigInt, graphql_name='statementYear') + statement_month = sgqlc.types.Field(BigInt, graphql_name='statementMonth') + currency_code = sgqlc.types.Field(BigInt, graphql_name='currencyCode') + days_in_bill = sgqlc.types.Field(BigInt, graphql_name='daysInBill') + account_statement_id = sgqlc.types.Field(BigInt, graphql_name='accountStatementId') + bill_cost = sgqlc.types.Field(BigInt, graphql_name='billCost') + bill_demand = sgqlc.types.Field(BigInt, graphql_name='billDemand') + bill_demand_cost = sgqlc.types.Field(BigInt, graphql_name='billDemandCost') + bill_usage = sgqlc.types.Field(BigInt, graphql_name='billUsage') + bill_usage_cost = sgqlc.types.Field(BigInt, graphql_name='billUsageCost') + credits = sgqlc.types.Field(BigInt, graphql_name='credits') + fees = sgqlc.types.Field(BigInt, graphql_name='fees') + taxes = sgqlc.types.Field(BigInt, graphql_name='taxes') + + +class UtilityMeterStatementMaxAggregates(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'utility_account_id', 'utility_meter_id', 'meter_statement_id', 'statement_year', 'statement_month', 'days_in_bill', 'account_statement_id', 'bill_cost', 'bill_demand', 'bill_demand_cost', 'bill_usage', 'bill_usage_cost', 'credits', 'fees', 'taxes') + facility_id = sgqlc.types.Field(Int, graphql_name='facilityId') + utility_account_id = sgqlc.types.Field(Int, graphql_name='utilityAccountId') + utility_meter_id = sgqlc.types.Field(Int, graphql_name='utilityMeterId') + meter_statement_id = sgqlc.types.Field(Int, graphql_name='meterStatementId') + statement_year = sgqlc.types.Field(Int, graphql_name='statementYear') + statement_month = sgqlc.types.Field(Int, graphql_name='statementMonth') + days_in_bill = sgqlc.types.Field(Int, graphql_name='daysInBill') + account_statement_id = sgqlc.types.Field(Int, graphql_name='accountStatementId') + bill_cost = sgqlc.types.Field(Float, graphql_name='billCost') + bill_demand = sgqlc.types.Field(Float, graphql_name='billDemand') + bill_demand_cost = sgqlc.types.Field(Float, graphql_name='billDemandCost') + bill_usage = sgqlc.types.Field(Float, graphql_name='billUsage') + bill_usage_cost = sgqlc.types.Field(Float, graphql_name='billUsageCost') + credits = sgqlc.types.Field(Float, graphql_name='credits') + fees = sgqlc.types.Field(Float, graphql_name='fees') + taxes = sgqlc.types.Field(Float, graphql_name='taxes') + + +class UtilityMeterStatementMinAggregates(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'utility_account_id', 'utility_meter_id', 'meter_statement_id', 'statement_year', 'statement_month', 'days_in_bill', 'account_statement_id', 'bill_cost', 'bill_demand', 'bill_demand_cost', 'bill_usage', 'bill_usage_cost', 'credits', 'fees', 'taxes') + facility_id = sgqlc.types.Field(Int, graphql_name='facilityId') + utility_account_id = sgqlc.types.Field(Int, graphql_name='utilityAccountId') + utility_meter_id = sgqlc.types.Field(Int, graphql_name='utilityMeterId') + meter_statement_id = sgqlc.types.Field(Int, graphql_name='meterStatementId') + statement_year = sgqlc.types.Field(Int, graphql_name='statementYear') + statement_month = sgqlc.types.Field(Int, graphql_name='statementMonth') + days_in_bill = sgqlc.types.Field(Int, graphql_name='daysInBill') + account_statement_id = sgqlc.types.Field(Int, graphql_name='accountStatementId') + bill_cost = sgqlc.types.Field(Float, graphql_name='billCost') + bill_demand = sgqlc.types.Field(Float, graphql_name='billDemand') + bill_demand_cost = sgqlc.types.Field(Float, graphql_name='billDemandCost') + bill_usage = sgqlc.types.Field(Float, graphql_name='billUsage') + bill_usage_cost = sgqlc.types.Field(Float, graphql_name='billUsageCost') + credits = sgqlc.types.Field(Float, graphql_name='credits') + fees = sgqlc.types.Field(Float, graphql_name='fees') + taxes = sgqlc.types.Field(Float, graphql_name='taxes') + + +class UtilityMeterStatementRollupAggregates(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('keys', 'sum', 'distinct_count', 'min', 'max', 'average', 'stddev_sample', 'stddev_population', 'variance_sample', 'variance_population', 'distinct') + keys = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='keys') + sum = sgqlc.types.Field('UtilityMeterStatementRollupSumAggregates', graphql_name='sum') + distinct_count = sgqlc.types.Field('UtilityMeterStatementRollupDistinctCountAggregates', graphql_name='distinctCount') + min = sgqlc.types.Field('UtilityMeterStatementRollupMinAggregates', graphql_name='min') + max = sgqlc.types.Field('UtilityMeterStatementRollupMaxAggregates', graphql_name='max') + average = sgqlc.types.Field('UtilityMeterStatementRollupAverageAggregates', graphql_name='average') + stddev_sample = sgqlc.types.Field('UtilityMeterStatementRollupStddevSampleAggregates', graphql_name='stddevSample') + stddev_population = sgqlc.types.Field('UtilityMeterStatementRollupStddevPopulationAggregates', graphql_name='stddevPopulation') + variance_sample = sgqlc.types.Field('UtilityMeterStatementRollupVarianceSampleAggregates', graphql_name='varianceSample') + variance_population = sgqlc.types.Field('UtilityMeterStatementRollupVariancePopulationAggregates', graphql_name='variancePopulation') + distinct = sgqlc.types.Field('UtilityMeterStatementRollupDistinctAggregates', graphql_name='distinct') + + +class UtilityMeterStatementRollupAverageAggregates(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'utility_account_id', 'utility_meter_id', 'meter_statement_id', 'statement_year', 'statement_month', 'days_in_bill', 'bill_cost', 'bill_usage', 'net_bill_usage', 'bill_usage_cost', 'bill_demand', 'bill_demand_cost', 'fees', 'taxes', 'credits', 'blended_rate', 'load_factor', 'percent_change', 'account_statement_id') + facility_id = sgqlc.types.Field(BigFloat, graphql_name='facilityId') + utility_account_id = sgqlc.types.Field(BigFloat, graphql_name='utilityAccountId') + utility_meter_id = sgqlc.types.Field(BigFloat, graphql_name='utilityMeterId') + meter_statement_id = sgqlc.types.Field(BigFloat, graphql_name='meterStatementId') + statement_year = sgqlc.types.Field(BigFloat, graphql_name='statementYear') + statement_month = sgqlc.types.Field(BigFloat, graphql_name='statementMonth') + days_in_bill = sgqlc.types.Field(BigFloat, graphql_name='daysInBill') + bill_cost = sgqlc.types.Field(Float, graphql_name='billCost') + bill_usage = sgqlc.types.Field(Float, graphql_name='billUsage') + net_bill_usage = sgqlc.types.Field(Float, graphql_name='netBillUsage') + bill_usage_cost = sgqlc.types.Field(Float, graphql_name='billUsageCost') + bill_demand = sgqlc.types.Field(Float, graphql_name='billDemand') + bill_demand_cost = sgqlc.types.Field(Float, graphql_name='billDemandCost') + fees = sgqlc.types.Field(Float, graphql_name='fees') + taxes = sgqlc.types.Field(Float, graphql_name='taxes') + credits = sgqlc.types.Field(Float, graphql_name='credits') + blended_rate = sgqlc.types.Field(Float, graphql_name='blendedRate') + load_factor = sgqlc.types.Field(Float, graphql_name='loadFactor') + percent_change = sgqlc.types.Field(Float, graphql_name='percentChange') + account_statement_id = sgqlc.types.Field(BigFloat, graphql_name='accountStatementId') + + +class UtilityMeterStatementRollupDistinctAggregates(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'utility_account_id', 'utility_meter_id', 'meter_end_date_set', 'meter_statement_id', 'is_validated', 'service_type', 'meter_label', 'provider', 'bill_arrival_date', 'start_date', 'end_date', 'account_label', 'statement_year', 'statement_month', 'days_in_bill', 'bill_cost', 'usage_units', 'bill_usage', 'net_bill_usage', 'bill_usage_cost', 'demand_units', 'bill_demand', 'bill_demand_cost', 'fees', 'taxes', 'credits', 'blended_rate', 'load_factor', 'percent_change', 'currency_code', 'account_statement_id', 'facility_name', 'n_sight2_active', 'statement_date') + facility_id = sgqlc.types.Field(sgqlc.types.list_of(Int), graphql_name='facilityId') + utility_account_id = sgqlc.types.Field(sgqlc.types.list_of(Int), graphql_name='utilityAccountId') + utility_meter_id = sgqlc.types.Field(sgqlc.types.list_of(Int), graphql_name='utilityMeterId') + meter_end_date_set = sgqlc.types.Field(JSON, graphql_name='meterEndDateSet') + meter_statement_id = sgqlc.types.Field(sgqlc.types.list_of(Int), graphql_name='meterStatementId') + is_validated = sgqlc.types.Field(JSON, graphql_name='isValidated') + service_type = sgqlc.types.Field(JSON, graphql_name='serviceType') + meter_label = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='meterLabel') + provider = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='provider') + bill_arrival_date = sgqlc.types.Field(JSON, graphql_name='billArrivalDate') + start_date = sgqlc.types.Field(JSON, graphql_name='startDate') + end_date = sgqlc.types.Field(JSON, graphql_name='endDate') + account_label = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='accountLabel') + statement_year = sgqlc.types.Field(sgqlc.types.list_of(Int), graphql_name='statementYear') + statement_month = sgqlc.types.Field(sgqlc.types.list_of(Int), graphql_name='statementMonth') + days_in_bill = sgqlc.types.Field(sgqlc.types.list_of(Int), graphql_name='daysInBill') + bill_cost = sgqlc.types.Field(sgqlc.types.list_of(Float), graphql_name='billCost') + usage_units = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='usageUnits') + bill_usage = sgqlc.types.Field(sgqlc.types.list_of(Float), graphql_name='billUsage') + net_bill_usage = sgqlc.types.Field(sgqlc.types.list_of(Float), graphql_name='netBillUsage') + bill_usage_cost = sgqlc.types.Field(sgqlc.types.list_of(Float), graphql_name='billUsageCost') + demand_units = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='demandUnits') + bill_demand = sgqlc.types.Field(sgqlc.types.list_of(Float), graphql_name='billDemand') + bill_demand_cost = sgqlc.types.Field(sgqlc.types.list_of(Float), graphql_name='billDemandCost') + fees = sgqlc.types.Field(sgqlc.types.list_of(Float), graphql_name='fees') + taxes = sgqlc.types.Field(sgqlc.types.list_of(Float), graphql_name='taxes') + credits = sgqlc.types.Field(sgqlc.types.list_of(Float), graphql_name='credits') + blended_rate = sgqlc.types.Field(sgqlc.types.list_of(Float), graphql_name='blendedRate') + load_factor = sgqlc.types.Field(sgqlc.types.list_of(Float), graphql_name='loadFactor') + percent_change = sgqlc.types.Field(sgqlc.types.list_of(Float), graphql_name='percentChange') + currency_code = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='currencyCode') + account_statement_id = sgqlc.types.Field(sgqlc.types.list_of(Int), graphql_name='accountStatementId') + facility_name = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='facilityName') + n_sight2_active = sgqlc.types.Field(JSON, graphql_name='nSight2Active') + statement_date = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='statementDate') + + +class UtilityMeterStatementRollupDistinctCountAggregates(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'utility_account_id', 'utility_meter_id', 'meter_end_date_set', 'meter_statement_id', 'is_validated', 'service_type', 'meter_label', 'provider', 'bill_arrival_date', 'start_date', 'end_date', 'account_label', 'statement_year', 'statement_month', 'days_in_bill', 'bill_cost', 'usage_units', 'bill_usage', 'net_bill_usage', 'bill_usage_cost', 'demand_units', 'bill_demand', 'bill_demand_cost', 'fees', 'taxes', 'credits', 'blended_rate', 'load_factor', 'percent_change', 'currency_code', 'account_statement_id', 'facility_name', 'n_sight2_active', 'statement_date') + facility_id = sgqlc.types.Field(BigInt, graphql_name='facilityId') + utility_account_id = sgqlc.types.Field(BigInt, graphql_name='utilityAccountId') + utility_meter_id = sgqlc.types.Field(BigInt, graphql_name='utilityMeterId') + meter_end_date_set = sgqlc.types.Field(BigInt, graphql_name='meterEndDateSet') + meter_statement_id = sgqlc.types.Field(BigInt, graphql_name='meterStatementId') + is_validated = sgqlc.types.Field(BigInt, graphql_name='isValidated') + service_type = sgqlc.types.Field(BigInt, graphql_name='serviceType') + meter_label = sgqlc.types.Field(BigInt, graphql_name='meterLabel') + provider = sgqlc.types.Field(BigInt, graphql_name='provider') + bill_arrival_date = sgqlc.types.Field(BigInt, graphql_name='billArrivalDate') + start_date = sgqlc.types.Field(BigInt, graphql_name='startDate') + end_date = sgqlc.types.Field(BigInt, graphql_name='endDate') + account_label = sgqlc.types.Field(BigInt, graphql_name='accountLabel') + statement_year = sgqlc.types.Field(BigInt, graphql_name='statementYear') + statement_month = sgqlc.types.Field(BigInt, graphql_name='statementMonth') + days_in_bill = sgqlc.types.Field(BigInt, graphql_name='daysInBill') + bill_cost = sgqlc.types.Field(BigInt, graphql_name='billCost') + usage_units = sgqlc.types.Field(BigInt, graphql_name='usageUnits') + bill_usage = sgqlc.types.Field(BigInt, graphql_name='billUsage') + net_bill_usage = sgqlc.types.Field(BigInt, graphql_name='netBillUsage') + bill_usage_cost = sgqlc.types.Field(BigInt, graphql_name='billUsageCost') + demand_units = sgqlc.types.Field(BigInt, graphql_name='demandUnits') + bill_demand = sgqlc.types.Field(BigInt, graphql_name='billDemand') + bill_demand_cost = sgqlc.types.Field(BigInt, graphql_name='billDemandCost') + fees = sgqlc.types.Field(BigInt, graphql_name='fees') + taxes = sgqlc.types.Field(BigInt, graphql_name='taxes') + credits = sgqlc.types.Field(BigInt, graphql_name='credits') + blended_rate = sgqlc.types.Field(BigInt, graphql_name='blendedRate') + load_factor = sgqlc.types.Field(BigInt, graphql_name='loadFactor') + percent_change = sgqlc.types.Field(BigInt, graphql_name='percentChange') + currency_code = sgqlc.types.Field(BigInt, graphql_name='currencyCode') + account_statement_id = sgqlc.types.Field(BigInt, graphql_name='accountStatementId') + facility_name = sgqlc.types.Field(BigInt, graphql_name='facilityName') + n_sight2_active = sgqlc.types.Field(BigInt, graphql_name='nSight2Active') + statement_date = sgqlc.types.Field(BigInt, graphql_name='statementDate') + + +class UtilityMeterStatementRollupMaxAggregates(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'utility_account_id', 'utility_meter_id', 'meter_statement_id', 'statement_year', 'statement_month', 'days_in_bill', 'bill_cost', 'bill_usage', 'net_bill_usage', 'bill_usage_cost', 'bill_demand', 'bill_demand_cost', 'fees', 'taxes', 'credits', 'blended_rate', 'load_factor', 'percent_change', 'account_statement_id') + facility_id = sgqlc.types.Field(Int, graphql_name='facilityId') + utility_account_id = sgqlc.types.Field(Int, graphql_name='utilityAccountId') + utility_meter_id = sgqlc.types.Field(Int, graphql_name='utilityMeterId') + meter_statement_id = sgqlc.types.Field(Int, graphql_name='meterStatementId') + statement_year = sgqlc.types.Field(Int, graphql_name='statementYear') + statement_month = sgqlc.types.Field(Int, graphql_name='statementMonth') + days_in_bill = sgqlc.types.Field(Int, graphql_name='daysInBill') + bill_cost = sgqlc.types.Field(Float, graphql_name='billCost') + bill_usage = sgqlc.types.Field(Float, graphql_name='billUsage') + net_bill_usage = sgqlc.types.Field(Float, graphql_name='netBillUsage') + bill_usage_cost = sgqlc.types.Field(Float, graphql_name='billUsageCost') + bill_demand = sgqlc.types.Field(Float, graphql_name='billDemand') + bill_demand_cost = sgqlc.types.Field(Float, graphql_name='billDemandCost') + fees = sgqlc.types.Field(Float, graphql_name='fees') + taxes = sgqlc.types.Field(Float, graphql_name='taxes') + credits = sgqlc.types.Field(Float, graphql_name='credits') + blended_rate = sgqlc.types.Field(Float, graphql_name='blendedRate') + load_factor = sgqlc.types.Field(Float, graphql_name='loadFactor') + percent_change = sgqlc.types.Field(Float, graphql_name='percentChange') + account_statement_id = sgqlc.types.Field(Int, graphql_name='accountStatementId') + + +class UtilityMeterStatementRollupMinAggregates(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'utility_account_id', 'utility_meter_id', 'meter_statement_id', 'statement_year', 'statement_month', 'days_in_bill', 'bill_cost', 'bill_usage', 'net_bill_usage', 'bill_usage_cost', 'bill_demand', 'bill_demand_cost', 'fees', 'taxes', 'credits', 'blended_rate', 'load_factor', 'percent_change', 'account_statement_id') + facility_id = sgqlc.types.Field(Int, graphql_name='facilityId') + utility_account_id = sgqlc.types.Field(Int, graphql_name='utilityAccountId') + utility_meter_id = sgqlc.types.Field(Int, graphql_name='utilityMeterId') + meter_statement_id = sgqlc.types.Field(Int, graphql_name='meterStatementId') + statement_year = sgqlc.types.Field(Int, graphql_name='statementYear') + statement_month = sgqlc.types.Field(Int, graphql_name='statementMonth') + days_in_bill = sgqlc.types.Field(Int, graphql_name='daysInBill') + bill_cost = sgqlc.types.Field(Float, graphql_name='billCost') + bill_usage = sgqlc.types.Field(Float, graphql_name='billUsage') + net_bill_usage = sgqlc.types.Field(Float, graphql_name='netBillUsage') + bill_usage_cost = sgqlc.types.Field(Float, graphql_name='billUsageCost') + bill_demand = sgqlc.types.Field(Float, graphql_name='billDemand') + bill_demand_cost = sgqlc.types.Field(Float, graphql_name='billDemandCost') + fees = sgqlc.types.Field(Float, graphql_name='fees') + taxes = sgqlc.types.Field(Float, graphql_name='taxes') + credits = sgqlc.types.Field(Float, graphql_name='credits') + blended_rate = sgqlc.types.Field(Float, graphql_name='blendedRate') + load_factor = sgqlc.types.Field(Float, graphql_name='loadFactor') + percent_change = sgqlc.types.Field(Float, graphql_name='percentChange') + account_statement_id = sgqlc.types.Field(Int, graphql_name='accountStatementId') + + +class UtilityMeterStatementRollupStddevPopulationAggregates(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'utility_account_id', 'utility_meter_id', 'meter_statement_id', 'statement_year', 'statement_month', 'days_in_bill', 'bill_cost', 'bill_usage', 'net_bill_usage', 'bill_usage_cost', 'bill_demand', 'bill_demand_cost', 'fees', 'taxes', 'credits', 'blended_rate', 'load_factor', 'percent_change', 'account_statement_id') + facility_id = sgqlc.types.Field(BigFloat, graphql_name='facilityId') + utility_account_id = sgqlc.types.Field(BigFloat, graphql_name='utilityAccountId') + utility_meter_id = sgqlc.types.Field(BigFloat, graphql_name='utilityMeterId') + meter_statement_id = sgqlc.types.Field(BigFloat, graphql_name='meterStatementId') + statement_year = sgqlc.types.Field(BigFloat, graphql_name='statementYear') + statement_month = sgqlc.types.Field(BigFloat, graphql_name='statementMonth') + days_in_bill = sgqlc.types.Field(BigFloat, graphql_name='daysInBill') + bill_cost = sgqlc.types.Field(Float, graphql_name='billCost') + bill_usage = sgqlc.types.Field(Float, graphql_name='billUsage') + net_bill_usage = sgqlc.types.Field(Float, graphql_name='netBillUsage') + bill_usage_cost = sgqlc.types.Field(Float, graphql_name='billUsageCost') + bill_demand = sgqlc.types.Field(Float, graphql_name='billDemand') + bill_demand_cost = sgqlc.types.Field(Float, graphql_name='billDemandCost') + fees = sgqlc.types.Field(Float, graphql_name='fees') + taxes = sgqlc.types.Field(Float, graphql_name='taxes') + credits = sgqlc.types.Field(Float, graphql_name='credits') + blended_rate = sgqlc.types.Field(Float, graphql_name='blendedRate') + load_factor = sgqlc.types.Field(Float, graphql_name='loadFactor') + percent_change = sgqlc.types.Field(Float, graphql_name='percentChange') + account_statement_id = sgqlc.types.Field(BigFloat, graphql_name='accountStatementId') + + +class UtilityMeterStatementRollupStddevSampleAggregates(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'utility_account_id', 'utility_meter_id', 'meter_statement_id', 'statement_year', 'statement_month', 'days_in_bill', 'bill_cost', 'bill_usage', 'net_bill_usage', 'bill_usage_cost', 'bill_demand', 'bill_demand_cost', 'fees', 'taxes', 'credits', 'blended_rate', 'load_factor', 'percent_change', 'account_statement_id') + facility_id = sgqlc.types.Field(BigFloat, graphql_name='facilityId') + utility_account_id = sgqlc.types.Field(BigFloat, graphql_name='utilityAccountId') + utility_meter_id = sgqlc.types.Field(BigFloat, graphql_name='utilityMeterId') + meter_statement_id = sgqlc.types.Field(BigFloat, graphql_name='meterStatementId') + statement_year = sgqlc.types.Field(BigFloat, graphql_name='statementYear') + statement_month = sgqlc.types.Field(BigFloat, graphql_name='statementMonth') + days_in_bill = sgqlc.types.Field(BigFloat, graphql_name='daysInBill') + bill_cost = sgqlc.types.Field(Float, graphql_name='billCost') + bill_usage = sgqlc.types.Field(Float, graphql_name='billUsage') + net_bill_usage = sgqlc.types.Field(Float, graphql_name='netBillUsage') + bill_usage_cost = sgqlc.types.Field(Float, graphql_name='billUsageCost') + bill_demand = sgqlc.types.Field(Float, graphql_name='billDemand') + bill_demand_cost = sgqlc.types.Field(Float, graphql_name='billDemandCost') + fees = sgqlc.types.Field(Float, graphql_name='fees') + taxes = sgqlc.types.Field(Float, graphql_name='taxes') + credits = sgqlc.types.Field(Float, graphql_name='credits') + blended_rate = sgqlc.types.Field(Float, graphql_name='blendedRate') + load_factor = sgqlc.types.Field(Float, graphql_name='loadFactor') + percent_change = sgqlc.types.Field(Float, graphql_name='percentChange') + account_statement_id = sgqlc.types.Field(BigFloat, graphql_name='accountStatementId') + + +class UtilityMeterStatementRollupSumAggregates(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'utility_account_id', 'utility_meter_id', 'meter_statement_id', 'statement_year', 'statement_month', 'days_in_bill', 'bill_cost', 'bill_usage', 'net_bill_usage', 'bill_usage_cost', 'bill_demand', 'bill_demand_cost', 'fees', 'taxes', 'credits', 'blended_rate', 'load_factor', 'percent_change', 'account_statement_id') + facility_id = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='facilityId') + utility_account_id = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='utilityAccountId') + utility_meter_id = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='utilityMeterId') + meter_statement_id = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='meterStatementId') + statement_year = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='statementYear') + statement_month = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='statementMonth') + days_in_bill = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='daysInBill') + bill_cost = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='billCost') + bill_usage = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='billUsage') + net_bill_usage = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='netBillUsage') + bill_usage_cost = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='billUsageCost') + bill_demand = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='billDemand') + bill_demand_cost = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='billDemandCost') + fees = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='fees') + taxes = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='taxes') + credits = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='credits') + blended_rate = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='blendedRate') + load_factor = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='loadFactor') + percent_change = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='percentChange') + account_statement_id = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='accountStatementId') + + +class UtilityMeterStatementRollupVariancePopulationAggregates(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'utility_account_id', 'utility_meter_id', 'meter_statement_id', 'statement_year', 'statement_month', 'days_in_bill', 'bill_cost', 'bill_usage', 'net_bill_usage', 'bill_usage_cost', 'bill_demand', 'bill_demand_cost', 'fees', 'taxes', 'credits', 'blended_rate', 'load_factor', 'percent_change', 'account_statement_id') + facility_id = sgqlc.types.Field(BigFloat, graphql_name='facilityId') + utility_account_id = sgqlc.types.Field(BigFloat, graphql_name='utilityAccountId') + utility_meter_id = sgqlc.types.Field(BigFloat, graphql_name='utilityMeterId') + meter_statement_id = sgqlc.types.Field(BigFloat, graphql_name='meterStatementId') + statement_year = sgqlc.types.Field(BigFloat, graphql_name='statementYear') + statement_month = sgqlc.types.Field(BigFloat, graphql_name='statementMonth') + days_in_bill = sgqlc.types.Field(BigFloat, graphql_name='daysInBill') + bill_cost = sgqlc.types.Field(Float, graphql_name='billCost') + bill_usage = sgqlc.types.Field(Float, graphql_name='billUsage') + net_bill_usage = sgqlc.types.Field(Float, graphql_name='netBillUsage') + bill_usage_cost = sgqlc.types.Field(Float, graphql_name='billUsageCost') + bill_demand = sgqlc.types.Field(Float, graphql_name='billDemand') + bill_demand_cost = sgqlc.types.Field(Float, graphql_name='billDemandCost') + fees = sgqlc.types.Field(Float, graphql_name='fees') + taxes = sgqlc.types.Field(Float, graphql_name='taxes') + credits = sgqlc.types.Field(Float, graphql_name='credits') + blended_rate = sgqlc.types.Field(Float, graphql_name='blendedRate') + load_factor = sgqlc.types.Field(Float, graphql_name='loadFactor') + percent_change = sgqlc.types.Field(Float, graphql_name='percentChange') + account_statement_id = sgqlc.types.Field(BigFloat, graphql_name='accountStatementId') + + +class UtilityMeterStatementRollupVarianceSampleAggregates(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'utility_account_id', 'utility_meter_id', 'meter_statement_id', 'statement_year', 'statement_month', 'days_in_bill', 'bill_cost', 'bill_usage', 'net_bill_usage', 'bill_usage_cost', 'bill_demand', 'bill_demand_cost', 'fees', 'taxes', 'credits', 'blended_rate', 'load_factor', 'percent_change', 'account_statement_id') + facility_id = sgqlc.types.Field(BigFloat, graphql_name='facilityId') + utility_account_id = sgqlc.types.Field(BigFloat, graphql_name='utilityAccountId') + utility_meter_id = sgqlc.types.Field(BigFloat, graphql_name='utilityMeterId') + meter_statement_id = sgqlc.types.Field(BigFloat, graphql_name='meterStatementId') + statement_year = sgqlc.types.Field(BigFloat, graphql_name='statementYear') + statement_month = sgqlc.types.Field(BigFloat, graphql_name='statementMonth') + days_in_bill = sgqlc.types.Field(BigFloat, graphql_name='daysInBill') + bill_cost = sgqlc.types.Field(Float, graphql_name='billCost') + bill_usage = sgqlc.types.Field(Float, graphql_name='billUsage') + net_bill_usage = sgqlc.types.Field(Float, graphql_name='netBillUsage') + bill_usage_cost = sgqlc.types.Field(Float, graphql_name='billUsageCost') + bill_demand = sgqlc.types.Field(Float, graphql_name='billDemand') + bill_demand_cost = sgqlc.types.Field(Float, graphql_name='billDemandCost') + fees = sgqlc.types.Field(Float, graphql_name='fees') + taxes = sgqlc.types.Field(Float, graphql_name='taxes') + credits = sgqlc.types.Field(Float, graphql_name='credits') + blended_rate = sgqlc.types.Field(Float, graphql_name='blendedRate') + load_factor = sgqlc.types.Field(Float, graphql_name='loadFactor') + percent_change = sgqlc.types.Field(Float, graphql_name='percentChange') + account_statement_id = sgqlc.types.Field(BigFloat, graphql_name='accountStatementId') + + +class UtilityMeterStatementRollupsConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count', 'aggregates', 'grouped_aggregates') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UtilityMeterStatementRollup'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UtilityMeterStatementRollupsEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + aggregates = sgqlc.types.Field(UtilityMeterStatementRollupAggregates, graphql_name='aggregates') + grouped_aggregates = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMeterStatementRollupAggregates)), graphql_name='groupedAggregates', args=sgqlc.types.ArgDict(( + ('group_by', sgqlc.types.Arg(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMeterStatementRollupsGroupBy))), graphql_name='groupBy', default=None)), + ('having', sgqlc.types.Arg(UtilityMeterStatementRollupsHavingInput, graphql_name='having', default=None)), +)) + ) + + +class UtilityMeterStatementRollupsEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('UtilityMeterStatementRollup'), graphql_name='node') + + +class UtilityMeterStatementStddevPopulationAggregates(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'utility_account_id', 'utility_meter_id', 'meter_statement_id', 'statement_year', 'statement_month', 'days_in_bill', 'account_statement_id', 'bill_cost', 'bill_demand', 'bill_demand_cost', 'bill_usage', 'bill_usage_cost', 'credits', 'fees', 'taxes') + facility_id = sgqlc.types.Field(BigFloat, graphql_name='facilityId') + utility_account_id = sgqlc.types.Field(BigFloat, graphql_name='utilityAccountId') + utility_meter_id = sgqlc.types.Field(BigFloat, graphql_name='utilityMeterId') + meter_statement_id = sgqlc.types.Field(BigFloat, graphql_name='meterStatementId') + statement_year = sgqlc.types.Field(BigFloat, graphql_name='statementYear') + statement_month = sgqlc.types.Field(BigFloat, graphql_name='statementMonth') + days_in_bill = sgqlc.types.Field(BigFloat, graphql_name='daysInBill') + account_statement_id = sgqlc.types.Field(BigFloat, graphql_name='accountStatementId') + bill_cost = sgqlc.types.Field(Float, graphql_name='billCost') + bill_demand = sgqlc.types.Field(Float, graphql_name='billDemand') + bill_demand_cost = sgqlc.types.Field(Float, graphql_name='billDemandCost') + bill_usage = sgqlc.types.Field(Float, graphql_name='billUsage') + bill_usage_cost = sgqlc.types.Field(Float, graphql_name='billUsageCost') + credits = sgqlc.types.Field(Float, graphql_name='credits') + fees = sgqlc.types.Field(Float, graphql_name='fees') + taxes = sgqlc.types.Field(Float, graphql_name='taxes') + + +class UtilityMeterStatementStddevSampleAggregates(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'utility_account_id', 'utility_meter_id', 'meter_statement_id', 'statement_year', 'statement_month', 'days_in_bill', 'account_statement_id', 'bill_cost', 'bill_demand', 'bill_demand_cost', 'bill_usage', 'bill_usage_cost', 'credits', 'fees', 'taxes') + facility_id = sgqlc.types.Field(BigFloat, graphql_name='facilityId') + utility_account_id = sgqlc.types.Field(BigFloat, graphql_name='utilityAccountId') + utility_meter_id = sgqlc.types.Field(BigFloat, graphql_name='utilityMeterId') + meter_statement_id = sgqlc.types.Field(BigFloat, graphql_name='meterStatementId') + statement_year = sgqlc.types.Field(BigFloat, graphql_name='statementYear') + statement_month = sgqlc.types.Field(BigFloat, graphql_name='statementMonth') + days_in_bill = sgqlc.types.Field(BigFloat, graphql_name='daysInBill') + account_statement_id = sgqlc.types.Field(BigFloat, graphql_name='accountStatementId') + bill_cost = sgqlc.types.Field(Float, graphql_name='billCost') + bill_demand = sgqlc.types.Field(Float, graphql_name='billDemand') + bill_demand_cost = sgqlc.types.Field(Float, graphql_name='billDemandCost') + bill_usage = sgqlc.types.Field(Float, graphql_name='billUsage') + bill_usage_cost = sgqlc.types.Field(Float, graphql_name='billUsageCost') + credits = sgqlc.types.Field(Float, graphql_name='credits') + fees = sgqlc.types.Field(Float, graphql_name='fees') + taxes = sgqlc.types.Field(Float, graphql_name='taxes') + + +class UtilityMeterStatementSumAggregates(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'utility_account_id', 'utility_meter_id', 'meter_statement_id', 'statement_year', 'statement_month', 'days_in_bill', 'account_statement_id', 'bill_cost', 'bill_demand', 'bill_demand_cost', 'bill_usage', 'bill_usage_cost', 'credits', 'fees', 'taxes') + facility_id = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='facilityId') + utility_account_id = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='utilityAccountId') + utility_meter_id = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='utilityMeterId') + meter_statement_id = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='meterStatementId') + statement_year = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='statementYear') + statement_month = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='statementMonth') + days_in_bill = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='daysInBill') + account_statement_id = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='accountStatementId') + bill_cost = sgqlc.types.Field(Float, graphql_name='billCost') + bill_demand = sgqlc.types.Field(Float, graphql_name='billDemand') + bill_demand_cost = sgqlc.types.Field(Float, graphql_name='billDemandCost') + bill_usage = sgqlc.types.Field(Float, graphql_name='billUsage') + bill_usage_cost = sgqlc.types.Field(Float, graphql_name='billUsageCost') + credits = sgqlc.types.Field(Float, graphql_name='credits') + fees = sgqlc.types.Field(Float, graphql_name='fees') + taxes = sgqlc.types.Field(Float, graphql_name='taxes') + + +class UtilityMeterStatementVariancePopulationAggregates(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'utility_account_id', 'utility_meter_id', 'meter_statement_id', 'statement_year', 'statement_month', 'days_in_bill', 'account_statement_id', 'bill_cost', 'bill_demand', 'bill_demand_cost', 'bill_usage', 'bill_usage_cost', 'credits', 'fees', 'taxes') + facility_id = sgqlc.types.Field(BigFloat, graphql_name='facilityId') + utility_account_id = sgqlc.types.Field(BigFloat, graphql_name='utilityAccountId') + utility_meter_id = sgqlc.types.Field(BigFloat, graphql_name='utilityMeterId') + meter_statement_id = sgqlc.types.Field(BigFloat, graphql_name='meterStatementId') + statement_year = sgqlc.types.Field(BigFloat, graphql_name='statementYear') + statement_month = sgqlc.types.Field(BigFloat, graphql_name='statementMonth') + days_in_bill = sgqlc.types.Field(BigFloat, graphql_name='daysInBill') + account_statement_id = sgqlc.types.Field(BigFloat, graphql_name='accountStatementId') + bill_cost = sgqlc.types.Field(Float, graphql_name='billCost') + bill_demand = sgqlc.types.Field(Float, graphql_name='billDemand') + bill_demand_cost = sgqlc.types.Field(Float, graphql_name='billDemandCost') + bill_usage = sgqlc.types.Field(Float, graphql_name='billUsage') + bill_usage_cost = sgqlc.types.Field(Float, graphql_name='billUsageCost') + credits = sgqlc.types.Field(Float, graphql_name='credits') + fees = sgqlc.types.Field(Float, graphql_name='fees') + taxes = sgqlc.types.Field(Float, graphql_name='taxes') + + +class UtilityMeterStatementVarianceSampleAggregates(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'utility_account_id', 'utility_meter_id', 'meter_statement_id', 'statement_year', 'statement_month', 'days_in_bill', 'account_statement_id', 'bill_cost', 'bill_demand', 'bill_demand_cost', 'bill_usage', 'bill_usage_cost', 'credits', 'fees', 'taxes') + facility_id = sgqlc.types.Field(BigFloat, graphql_name='facilityId') + utility_account_id = sgqlc.types.Field(BigFloat, graphql_name='utilityAccountId') + utility_meter_id = sgqlc.types.Field(BigFloat, graphql_name='utilityMeterId') + meter_statement_id = sgqlc.types.Field(BigFloat, graphql_name='meterStatementId') + statement_year = sgqlc.types.Field(BigFloat, graphql_name='statementYear') + statement_month = sgqlc.types.Field(BigFloat, graphql_name='statementMonth') + days_in_bill = sgqlc.types.Field(BigFloat, graphql_name='daysInBill') + account_statement_id = sgqlc.types.Field(BigFloat, graphql_name='accountStatementId') + bill_cost = sgqlc.types.Field(Float, graphql_name='billCost') + bill_demand = sgqlc.types.Field(Float, graphql_name='billDemand') + bill_demand_cost = sgqlc.types.Field(Float, graphql_name='billDemandCost') + bill_usage = sgqlc.types.Field(Float, graphql_name='billUsage') + bill_usage_cost = sgqlc.types.Field(Float, graphql_name='billUsageCost') + credits = sgqlc.types.Field(Float, graphql_name='credits') + fees = sgqlc.types.Field(Float, graphql_name='fees') + taxes = sgqlc.types.Field(Float, graphql_name='taxes') + + +class UtilityMeterStatementsConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count', 'aggregates', 'grouped_aggregates') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UtilityMeterStatement'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UtilityMeterStatementsEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + aggregates = sgqlc.types.Field(UtilityMeterStatementAggregates, graphql_name='aggregates') + grouped_aggregates = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMeterStatementAggregates)), graphql_name='groupedAggregates', args=sgqlc.types.ArgDict(( + ('group_by', sgqlc.types.Arg(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMeterStatementsGroupBy))), graphql_name='groupBy', default=None)), + ('having', sgqlc.types.Arg(UtilityMeterStatementsHavingInput, graphql_name='having', default=None)), +)) + ) + + +class UtilityMeterStatementsEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('UtilityMeterStatement'), graphql_name='node') + + +class UtilityMeterUtilityAccountsByUtilityMeterStatementRollupUtilityMeterIdAndUtilityAccountIdManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UtilityAccount'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UtilityMeterUtilityAccountsByUtilityMeterStatementRollupUtilityMeterIdAndUtilityAccountIdManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class UtilityMeterUtilityAccountsByUtilityMeterStatementRollupUtilityMeterIdAndUtilityAccountIdManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'utility_meter_statement_rollups') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('UtilityAccount'), graphql_name='node') + utility_meter_statement_rollups = sgqlc.types.Field(sgqlc.types.non_null(UtilityMeterStatementRollupsConnection), graphql_name='utilityMeterStatementRollups', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMeterStatementRollupsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityMeterStatementRollupCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityMeterStatementRollupFilter, graphql_name='filter', default=None)), +)) + ) + + +class UtilityMeterUtilityAccountsByUtilityMeterStatementUtilityMeterIdAndUtilityAccountIdManyToManyConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UtilityAccount'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UtilityMeterUtilityAccountsByUtilityMeterStatementUtilityMeterIdAndUtilityAccountIdManyToManyEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class UtilityMeterUtilityAccountsByUtilityMeterStatementUtilityMeterIdAndUtilityAccountIdManyToManyEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node', 'utility_meter_statements') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('UtilityAccount'), graphql_name='node') + utility_meter_statements = sgqlc.types.Field(sgqlc.types.non_null(UtilityMeterStatementsConnection), graphql_name='utilityMeterStatements', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMeterStatementsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityMeterStatementCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityMeterStatementFilter, graphql_name='filter', default=None)), +)) + ) + + +class UtilityMetersConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UtilityMeter'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UtilityMetersEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class UtilityMetersEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('UtilityMeter'), graphql_name='node') + + +class UtilityMetersMissingStatementEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('UtilityMetersMissingStatementsRecord'), graphql_name='node') + + +class UtilityMetersMissingStatementsConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UtilityMetersMissingStatementsRecord'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMetersMissingStatementEdge))), graphql_name='edges') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class UtilityMetersMissingStatementsRecord(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('statement_date', 'statement_year', 'statement_month', 'utility_meter_id', 'facility_id') + statement_date = sgqlc.types.Field(Date, graphql_name='statementDate') + statement_year = sgqlc.types.Field(Int, graphql_name='statementYear') + statement_month = sgqlc.types.Field(Int, graphql_name='statementMonth') + utility_meter_id = sgqlc.types.Field(Int, graphql_name='utilityMeterId') + facility_id = sgqlc.types.Field(Int, graphql_name='facilityId') + + +class UtilityProvidersConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UtilityProvider'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UtilityProvidersEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class UtilityProvidersEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('UtilityProvider'), graphql_name='node') + + +class VendorUserPermissions(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('can_write',) + can_write = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='canWrite') + + +class VendorUsersConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('VendorUser'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('VendorUsersEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class VendorUsersEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('VendorUser'), graphql_name='node') + + +class VerifyPhoneNumberResponse(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('phone_number', 'verification_id', 'client_mutation_id', 'attempts') + phone_number = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='phoneNumber') + verification_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='verificationId') + client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') + attempts = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='attempts') + + +class VirtualPointIntervalsConnection(sgqlc.types.relay.Connection): + __schema__ = nionic_schema + __field_names__ = ('nodes', 'edges', 'page_info', 'total_count') + nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('VirtualPointInterval'))), graphql_name='nodes') + edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('VirtualPointIntervalsEdge'))), graphql_name='edges') + page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') + total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') + + +class VirtualPointIntervalsEdge(sgqlc.types.Type): + __schema__ = nionic_schema + __field_names__ = ('cursor', 'node') + cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') + node = sgqlc.types.Field(sgqlc.types.non_null('VirtualPointInterval'), graphql_name='node') + + +class AccountCharge(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('id', 'account_statement_id', 'category', 'interval_start', 'interval_end', 'statement_date', 'label', 'override_at', 'value', 'line_number', 'created_at', 'updated_at', 'deleted_at', 'override_statement_year', 'override_statement_month', 'account_statement', 'statement_month', 'statement_year') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + account_statement_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='accountStatementId') + category = sgqlc.types.Field(sgqlc.types.non_null(UtilityAccountChargeCategory), graphql_name='category') + interval_start = sgqlc.types.Field(sgqlc.types.non_null(Date), graphql_name='intervalStart') + interval_end = sgqlc.types.Field(sgqlc.types.non_null(Date), graphql_name='intervalEnd') + statement_date = sgqlc.types.Field(sgqlc.types.non_null(Date), graphql_name='statementDate') + label = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='label') + override_at = sgqlc.types.Field(Datetime, graphql_name='overrideAt') + value = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='value') + line_number = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='lineNumber') + created_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='createdAt') + updated_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='updatedAt') + deleted_at = sgqlc.types.Field(Datetime, graphql_name='deletedAt') + override_statement_year = sgqlc.types.Field(Int, graphql_name='overrideStatementYear') + override_statement_month = sgqlc.types.Field(Int, graphql_name='overrideStatementMonth') + account_statement = sgqlc.types.Field('AccountStatement', graphql_name='accountStatement') + statement_month = sgqlc.types.Field(Int, graphql_name='statementMonth') + statement_year = sgqlc.types.Field(Int, graphql_name='statementYear') + + +class AccountStatement(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('id', 'integration', 'integration_key', 'utility_account_id', 'statement_year', 'statement_month', 'currency_code', 'override_at', 'is_validated', 'metadata', 'created_at', 'updated_at', 'interval_start', 'interval_end', 'utility_account', 'account_charges', 'meter_statements', 'account_statement_histories', 'utility_account_statement_rollup', 'utility_account_statement', 'utility_meter_statements', 'deleted_at', 'normalized_total_charges', 'total_charges', 'utility_meters_by_meter_statement_account_statement_id_and_utility_meter_id', 'facilities_by_utility_meter_statement_account_statement_id_and_facility_id', 'utility_accounts_by_utility_meter_statement_account_statement_id_and_utility_account_id', 'utility_meters_by_utility_meter_statement_account_statement_id_and_utility_meter_id') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + integration = sgqlc.types.Field(sgqlc.types.non_null(UtilityIntegration), graphql_name='integration') + integration_key = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='integrationKey') + utility_account_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='utilityAccountId') + statement_year = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='statementYear') + statement_month = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='statementMonth') + currency_code = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='currencyCode') + override_at = sgqlc.types.Field(Datetime, graphql_name='overrideAt') + is_validated = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='isValidated') + metadata = sgqlc.types.Field(sgqlc.types.non_null(JSON), graphql_name='metadata') + created_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='createdAt') + updated_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='updatedAt') + interval_start = sgqlc.types.Field(sgqlc.types.non_null(Date), graphql_name='intervalStart') + interval_end = sgqlc.types.Field(sgqlc.types.non_null(Date), graphql_name='intervalEnd') + utility_account = sgqlc.types.Field('UtilityAccount', graphql_name='utilityAccount') + account_charges = sgqlc.types.Field(sgqlc.types.non_null(AccountChargesConnection), graphql_name='accountCharges', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(AccountChargesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(AccountChargeCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(AccountChargeFilter, graphql_name='filter', default=None)), +)) + ) + meter_statements = sgqlc.types.Field(sgqlc.types.non_null(MeterStatementsConnection), graphql_name='meterStatements', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(MeterStatementsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(MeterStatementCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(MeterStatementFilter, graphql_name='filter', default=None)), +)) + ) + account_statement_histories = sgqlc.types.Field(sgqlc.types.non_null(AccountStatementHistoriesConnection), graphql_name='accountStatementHistories', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(AccountStatementHistoriesOrderBy)), graphql_name='orderBy', default=('NATURAL',))), + ('condition', sgqlc.types.Arg(AccountStatementHistoryCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(AccountStatementHistoryFilter, graphql_name='filter', default=None)), +)) + ) + utility_account_statement_rollup = sgqlc.types.Field('UtilityAccountStatementRollup', graphql_name='utilityAccountStatementRollup') + utility_account_statement = sgqlc.types.Field('UtilityAccountStatement', graphql_name='utilityAccountStatement') + utility_meter_statements = sgqlc.types.Field(sgqlc.types.non_null(UtilityMeterStatementsConnection), graphql_name='utilityMeterStatements', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMeterStatementsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityMeterStatementCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityMeterStatementFilter, graphql_name='filter', default=None)), +)) + ) + deleted_at = sgqlc.types.Field(Datetime, graphql_name='deletedAt') + normalized_total_charges = sgqlc.types.Field(Float, graphql_name='normalizedTotalCharges') + total_charges = sgqlc.types.Field(Float, graphql_name='totalCharges') + utility_meters_by_meter_statement_account_statement_id_and_utility_meter_id = sgqlc.types.Field(sgqlc.types.non_null(AccountStatementUtilityMetersByMeterStatementAccountStatementIdAndUtilityMeterIdManyToManyConnection), graphql_name='utilityMetersByMeterStatementAccountStatementIdAndUtilityMeterId', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMetersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityMeterCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityMeterFilter, graphql_name='filter', default=None)), +)) + ) + facilities_by_utility_meter_statement_account_statement_id_and_facility_id = sgqlc.types.Field(sgqlc.types.non_null(AccountStatementFacilitiesByUtilityMeterStatementAccountStatementIdAndFacilityIdManyToManyConnection), graphql_name='facilitiesByUtilityMeterStatementAccountStatementIdAndFacilityId', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(FacilitiesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(FacilityCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(FacilityFilter, graphql_name='filter', default=None)), +)) + ) + utility_accounts_by_utility_meter_statement_account_statement_id_and_utility_account_id = sgqlc.types.Field(sgqlc.types.non_null(AccountStatementUtilityAccountsByUtilityMeterStatementAccountStatementIdAndUtilityAccountIdManyToManyConnection), graphql_name='utilityAccountsByUtilityMeterStatementAccountStatementIdAndUtilityAccountId', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityAccountsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityAccountCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityAccountFilter, graphql_name='filter', default=None)), +)) + ) + utility_meters_by_utility_meter_statement_account_statement_id_and_utility_meter_id = sgqlc.types.Field(sgqlc.types.non_null(AccountStatementUtilityMetersByUtilityMeterStatementAccountStatementIdAndUtilityMeterIdManyToManyConnection), graphql_name='utilityMetersByUtilityMeterStatementAccountStatementIdAndUtilityMeterId', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMetersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityMeterCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityMeterFilter, graphql_name='filter', default=None)), +)) + ) + + +class BalancingAuthority(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('slug', 'created_at', 'updated_at') + slug = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='slug') + created_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='createdAt') + updated_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='updatedAt') + + +class BuildingArea(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('id', 'building_area_type_id', 'facility_id', 'geometry', 'label', 'description', 'created_at', 'updated_at', 'building_area_type', 'facility', 'temperature_sensors') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + building_area_type_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='buildingAreaTypeId') + facility_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='facilityId') + geometry = sgqlc.types.Field(GeometryInterface, graphql_name='geometry') + label = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='label') + description = sgqlc.types.Field(String, graphql_name='description') + created_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='createdAt') + updated_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='updatedAt') + building_area_type = sgqlc.types.Field('BuildingAreaType', graphql_name='buildingAreaType') + facility = sgqlc.types.Field('Facility', graphql_name='facility') + temperature_sensors = sgqlc.types.Field(sgqlc.types.non_null(TemperatureSensorsConnection), graphql_name='temperatureSensors', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('filter', sgqlc.types.Arg(TemperatureSensorFilter, graphql_name='filter', default=None)), +)) + ) + + +class BuildingAreaType(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('type', 'description', 'metadata', 'building_areas', 'facilities_by_building_area_building_area_type_id_and_facility_id') + type = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='type') + description = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='description') + metadata = sgqlc.types.Field(sgqlc.types.non_null(JSON), graphql_name='metadata') + building_areas = sgqlc.types.Field(sgqlc.types.non_null(BuildingAreasConnection), graphql_name='buildingAreas', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(BuildingAreasOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(BuildingAreaCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(BuildingAreaFilter, graphql_name='filter', default=None)), +)) + ) + facilities_by_building_area_building_area_type_id_and_facility_id = sgqlc.types.Field(sgqlc.types.non_null(BuildingAreaTypeFacilitiesByBuildingAreaBuildingAreaTypeIdAndFacilityIdManyToManyConnection), graphql_name='facilitiesByBuildingAreaBuildingAreaTypeIdAndFacilityId', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(FacilitiesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(FacilityCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(FacilityFilter, graphql_name='filter', default=None)), +)) + ) + + +class Component(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('id', 'name', 'machine_user_id', 'facility_id', 'out_of_service', 'created_at', 'updated_at', 'alias', 'machine_user', 'facility', 'control_events', 'next_control_events', 'permissions', 'projects') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') + machine_user_id = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='machineUserId') + facility_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='facilityId') + out_of_service = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='outOfService') + created_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='createdAt') + updated_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='updatedAt') + alias = sgqlc.types.Field(String, graphql_name='alias') + machine_user = sgqlc.types.Field('MachineUser', graphql_name='machineUser') + facility = sgqlc.types.Field('Facility', graphql_name='facility') + control_events = sgqlc.types.Field(sgqlc.types.non_null(ControlEventsConnection), graphql_name='controlEvents', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ControlEventsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ControlEventCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ControlEventFilter, graphql_name='filter', default=None)), +)) + ) + next_control_events = sgqlc.types.Field(sgqlc.types.non_null(ControlEventsConnection), graphql_name='nextControlEvents', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('filter', sgqlc.types.Arg(ControlEventFilter, graphql_name='filter', default=None)), +)) + ) + permissions = sgqlc.types.Field(ComponentPermissions, graphql_name='permissions') + projects = sgqlc.types.Field(sgqlc.types.non_null(ComponentProjectsManyToManyConnection), graphql_name='projects', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProjectsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ProjectCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ProjectFilter, graphql_name='filter', default=None)), +)) + ) + + +class ControlEvent(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('id', 'name', 'start_time', 'end_time', 'component_id', 'created_at', 'updated_at', 'acknowledged_at', 'remote_metadata', 'component', 'control_event_logs', 'control_event_states', 'suggestion_control_event', 'control_event_activity_logs', 'component_configuration', 'current_state', 'current_state_ref', 'is_acknowledged', 'suggestion', 'available_states', 'permissions') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') + start_time = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='startTime') + end_time = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='endTime') + component_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='componentId') + created_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='createdAt') + updated_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='updatedAt') + acknowledged_at = sgqlc.types.Field(Datetime, graphql_name='acknowledgedAt') + remote_metadata = sgqlc.types.Field(sgqlc.types.non_null(JSON), graphql_name='remoteMetadata') + component = sgqlc.types.Field(Component, graphql_name='component') + control_event_logs = sgqlc.types.Field(sgqlc.types.non_null(ControlEventLogsConnection), graphql_name='controlEventLogs', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ControlEventLogsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ControlEventLogCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ControlEventLogFilter, graphql_name='filter', default=None)), +)) + ) + control_event_states = sgqlc.types.Field(sgqlc.types.non_null(ControlEventStatesConnection), graphql_name='controlEventStates', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ControlEventStatesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ControlEventStateCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ControlEventStateFilter, graphql_name='filter', default=None)), +)) + ) + suggestion_control_event = sgqlc.types.Field('SuggestionControlEvent', graphql_name='suggestionControlEvent') + control_event_activity_logs = sgqlc.types.Field(sgqlc.types.non_null(ControlEventActivityLogsConnection), graphql_name='controlEventActivityLogs', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ControlEventActivityLogsOrderBy)), graphql_name='orderBy', default=('NATURAL',))), + ('condition', sgqlc.types.Arg(ControlEventActivityLogCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ControlEventActivityLogFilter, graphql_name='filter', default=None)), +)) + ) + component_configuration = sgqlc.types.Field('ProjectComponent', graphql_name='componentConfiguration') + current_state = sgqlc.types.Field(String, graphql_name='currentState') + current_state_ref = sgqlc.types.Field('ControlEventState', graphql_name='currentStateRef') + is_acknowledged = sgqlc.types.Field(Boolean, graphql_name='isAcknowledged') + suggestion = sgqlc.types.Field('Suggestion', graphql_name='suggestion') + available_states = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(ControlEventStateType))), graphql_name='availableStates') + permissions = sgqlc.types.Field(ControlEventPermissions, graphql_name='permissions') + + +class ControlEventLog(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('id', 'control_event_id', 'message', 'created_at', 'actor', 'control_event') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + control_event_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='controlEventId') + message = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='message') + created_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='createdAt') + actor = sgqlc.types.Field(Actor, graphql_name='actor') + control_event = sgqlc.types.Field(ControlEvent, graphql_name='controlEvent') + + +class ControlEventState(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('control_event_id', 'state', 'description', 'created_at', 'actor', 'control_event') + control_event_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='controlEventId') + state = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='state') + description = sgqlc.types.Field(String, graphql_name='description') + created_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='createdAt') + actor = sgqlc.types.Field(Actor, graphql_name='actor') + control_event = sgqlc.types.Field(ControlEvent, graphql_name='controlEvent') + + +class CreateMachineAccessTokenPayload(sgqlc.types.Type, CreateAccessTokenPayload): + __schema__ = nionic_schema + __field_names__ = ('machine_user',) + machine_user = sgqlc.types.Field(sgqlc.types.non_null('MachineUser'), graphql_name='machineUser') + + +class CreateUserAccessTokenPayload(sgqlc.types.Type, CreateAccessTokenPayload): + __schema__ = nionic_schema + __field_names__ = ('user',) + user = sgqlc.types.Field(sgqlc.types.non_null('User'), graphql_name='user') + + +class DataPoint(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('id', 'data_source_name', 'name', 'alias', 'description', 'units', 'expression', 'data_type', 'created_at', 'updated_at', 'type', 'frequency', 'location_type', 'data_source_by_data_source_name', 'project_fields', 'all_dependencies', 'all_dependents', 'dependencies', 'dependents', 'point_intervals', 'data', 'raw_data', 'projects_by_project_field_data_point_id_and_project_id', 'field_groups_by_project_field_data_point_id_and_group_id') + id = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='id') + data_source_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='dataSourceName') + name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') + alias = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='alias') + description = sgqlc.types.Field(String, graphql_name='description') + units = sgqlc.types.Field(String, graphql_name='units') + expression = sgqlc.types.Field(String, graphql_name='expression') + data_type = sgqlc.types.Field(String, graphql_name='dataType') + created_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='createdAt') + updated_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='updatedAt') + type = sgqlc.types.Field(sgqlc.types.non_null(DataPointType), graphql_name='type') + frequency = sgqlc.types.Field(Int, graphql_name='frequency') + location_type = sgqlc.types.Field(String, graphql_name='locationType') + data_source_by_data_source_name = sgqlc.types.Field('DataSource', graphql_name='dataSourceByDataSourceName') + project_fields = sgqlc.types.Field(sgqlc.types.non_null(ProjectFieldsConnection), graphql_name='projectFields', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProjectFieldsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ProjectFieldCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ProjectFieldFilter, graphql_name='filter', default=None)), +)) + ) + all_dependencies = sgqlc.types.Field(sgqlc.types.non_null(DataPointsConnection), graphql_name='allDependencies', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('filter', sgqlc.types.Arg(DataPointFilter, graphql_name='filter', default=None)), +)) + ) + all_dependents = sgqlc.types.Field(sgqlc.types.non_null(DataPointsConnection), graphql_name='allDependents', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('filter', sgqlc.types.Arg(DataPointFilter, graphql_name='filter', default=None)), +)) + ) + dependencies = sgqlc.types.Field(sgqlc.types.non_null(DataPointsConnection), graphql_name='dependencies', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('filter', sgqlc.types.Arg(DataPointFilter, graphql_name='filter', default=None)), +)) + ) + dependents = sgqlc.types.Field(sgqlc.types.non_null(DataPointsConnection), graphql_name='dependents', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('filter', sgqlc.types.Arg(DataPointFilter, graphql_name='filter', default=None)), +)) + ) + point_intervals = sgqlc.types.Field(sgqlc.types.non_null(VirtualPointIntervalsConnection), graphql_name='pointIntervals', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('filter', sgqlc.types.Arg(VirtualPointIntervalFilter, graphql_name='filter', default=None)), +)) + ) + data = sgqlc.types.Field(MetricDataConnection, graphql_name='data', args=sgqlc.types.ArgDict(( + ('from_', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='from', default=None)), + ('to', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='to', default=None)), + ('aggregation', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataAggregationMethod), graphql_name='aggregation', default='AVG')), + ('window', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='window', default='1 hour')), + ('sampling_window', sgqlc.types.Arg(String, graphql_name='samplingWindow', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataOrderBy), graphql_name='orderBy', default='TIME_ASC')), + ('unit', sgqlc.types.Arg(String, graphql_name='unit', default=None)), +)) + ) + raw_data = sgqlc.types.Field(MetricDataConnection, graphql_name='rawData', args=sgqlc.types.ArgDict(( + ('from_', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='from', default=None)), + ('to', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='to', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataOrderBy), graphql_name='orderBy', default='TIME_ASC')), + ('unit', sgqlc.types.Arg(String, graphql_name='unit', default=None)), +)) + ) + projects_by_project_field_data_point_id_and_project_id = sgqlc.types.Field(sgqlc.types.non_null(DataPointProjectsByProjectFieldDataPointIdAndProjectIdManyToManyConnection), graphql_name='projectsByProjectFieldDataPointIdAndProjectId', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProjectsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ProjectCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ProjectFilter, graphql_name='filter', default=None)), +)) + ) + field_groups_by_project_field_data_point_id_and_group_id = sgqlc.types.Field(sgqlc.types.non_null(DataPointFieldGroupsByProjectFieldDataPointIdAndGroupIdManyToManyConnection), graphql_name='fieldGroupsByProjectFieldDataPointIdAndGroupId', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(FieldGroupsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(FieldGroupCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(FieldGroupFilter, graphql_name='filter', default=None)), +)) + ) + + +class DataSource(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('name', 'description', 'created_at', 'updated_at', 'data_points', 'facility_data_sources_by_data_source_name', 'facilities') + name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') + description = sgqlc.types.Field(String, graphql_name='description') + created_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='createdAt') + updated_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='updatedAt') + data_points = sgqlc.types.Field(sgqlc.types.non_null(DataPointsConnection), graphql_name='dataPoints', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(DataPointsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(DataPointCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(DataPointFilter, graphql_name='filter', default=None)), +)) + ) + facility_data_sources_by_data_source_name = sgqlc.types.Field(sgqlc.types.non_null(FacilityDataSourcesConnection), graphql_name='facilityDataSourcesByDataSourceName', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(FacilityDataSourcesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(FacilityDataSourceCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(FacilityDataSourceFilter, graphql_name='filter', default=None)), +)) + ) + facilities = sgqlc.types.Field(sgqlc.types.non_null(DataSourceFacilitiesManyToManyConnection), graphql_name='facilities', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(FacilitiesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(FacilityCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(FacilityFilter, graphql_name='filter', default=None)), +)) + ) + + +class Dependency(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('id', 'name', 'type', 'path') + id = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='id') + name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') + type = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='type') + path = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='path') + + +class Event(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('id', 'type', 'action', 'facility_id', 'event', 'created_at', 'actor', 'event_type_by_type', 'facility') + id = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='id') + type = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='type') + action = sgqlc.types.Field(String, graphql_name='action') + facility_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='facilityId') + event = sgqlc.types.Field(sgqlc.types.non_null(JSON), graphql_name='event') + created_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='createdAt') + actor = sgqlc.types.Field(Actor, graphql_name='actor') + event_type_by_type = sgqlc.types.Field('EventType', graphql_name='eventTypeByType') + facility = sgqlc.types.Field('Facility', graphql_name='facility') + + +class EventHandler(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('handler', 'event_types_by_event_handler_metadatum_handler_and_type') + handler = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='handler') + event_types_by_event_handler_metadatum_handler_and_type = sgqlc.types.Field(sgqlc.types.non_null(EventHandlerEventTypesByEventHandlerMetadatumHandlerAndTypeManyToManyConnection), graphql_name='eventTypesByEventHandlerMetadatumHandlerAndType', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(EventTypesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(EventTypeCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(EventTypeFilter, graphql_name='filter', default=None)), +)) + ) + + +class EventHandlerMetadatum(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('type', 'handler', 'event', 'event_type_by_type', 'event_handler_by_handler') + type = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='type') + handler = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='handler') + event = sgqlc.types.Field(sgqlc.types.non_null(JSON), graphql_name='event') + event_type_by_type = sgqlc.types.Field('EventType', graphql_name='eventTypeByType') + event_handler_by_handler = sgqlc.types.Field(EventHandler, graphql_name='eventHandlerByHandler') + + +class EventType(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('name', 'event_handlers_by_event_handler_metadatum_type_and_handler', 'facilities_by_event_type_and_facility_id') + name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') + event_handlers_by_event_handler_metadatum_type_and_handler = sgqlc.types.Field(sgqlc.types.non_null(EventTypeEventHandlersByEventHandlerMetadatumTypeAndHandlerManyToManyConnection), graphql_name='eventHandlersByEventHandlerMetadatumTypeAndHandler', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(EventHandlersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(EventHandlerCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(EventHandlerFilter, graphql_name='filter', default=None)), +)) + ) + facilities_by_event_type_and_facility_id = sgqlc.types.Field(sgqlc.types.non_null(EventTypeFacilitiesByEventTypeAndFacilityIdManyToManyConnection), graphql_name='facilitiesByEventTypeAndFacilityId', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(FacilitiesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(FacilityCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(FacilityFilter, graphql_name='filter', default=None)), +)) + ) + + +class Facility(sgqlc.types.Type, Node, Asset): + __schema__ = nionic_schema + __field_names__ = ('id', 'name', 'slug', 'address', 'city', 'state', 'zip', 'created_at', 'updated_at', 'timezone_name', 'unit_group', 'country', 'config', 'geometry', 'retired_at', 'facility_contacts', 'latitude', 'longitude', 'n_sight2_active', 'n_sight_active', 'real_time_enabled', 'bonus_ltr', 'commodity', 'go_live_date', 'link_active', 'metrics_one_active', 'pre_bonus_ebitda', 'suppresse_financials', 'type', 'wms', 'cost_center', 'timezone', 'unit_group_by_unit_group', 'utility_meters', 'building_areas', 'components', 'communications', 'facility_data_sources', 'facility_groups_linkers', 'projects', 'main_services', 'utility_meter_statement_rollups', 'utility_meter_statements', 'account_statements', 'active_communication', 'active_utility_account_statement_rollups', 'utility_account_statement_rollups', 'utility_account_statements', 'utility_accounts', 'metric_labels', 'mutable_metric_data', 'metric_data', 'utility_accounts_by_utility_meter_facility_id_and_utility_account_id', 'building_area_types_by_building_area_facility_id_and_building_area_type_id', 'machine_users_by_component_facility_id_and_machine_user_id', 'event_types_by_event_facility_id_and_type', 'data_sources', 'facility_groups', 'project_types_by_project_facility_id_and_project_type_id', 'programs_by_project_facility_id_and_program_id', 'utility_accounts_by_utility_meter_statement_rollup_facility_id_and_utility_account_id', 'utility_meters_by_utility_meter_statement_rollup_facility_id_and_utility_meter_id', 'utility_accounts_by_utility_meter_statement_facility_id_and_utility_account_id', 'utility_meters_by_utility_meter_statement_facility_id_and_utility_meter_id', 'account_statements_by_utility_meter_statement_facility_id_and_account_statement_id') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') + slug = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='slug') + address = sgqlc.types.Field(String, graphql_name='address') + city = sgqlc.types.Field(String, graphql_name='city') + state = sgqlc.types.Field(String, graphql_name='state') + zip = sgqlc.types.Field(String, graphql_name='zip') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') + timezone_name = sgqlc.types.Field(String, graphql_name='timezoneName') + unit_group = sgqlc.types.Field(String, graphql_name='unitGroup') + country = sgqlc.types.Field(sgqlc.types.non_null(Country), graphql_name='country') + config = sgqlc.types.Field(sgqlc.types.non_null(JSON), graphql_name='config') + geometry = sgqlc.types.Field(GeometryInterface, graphql_name='geometry') + retired_at = sgqlc.types.Field(Datetime, graphql_name='retiredAt') + facility_contacts = sgqlc.types.Field(String, graphql_name='facilityContacts') + latitude = sgqlc.types.Field(Float, graphql_name='latitude') + longitude = sgqlc.types.Field(Float, graphql_name='longitude') + n_sight2_active = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='nSight2Active') + n_sight_active = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='nSightActive') + real_time_enabled = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='realTimeEnabled') + bonus_ltr = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='bonusLtr') + commodity = sgqlc.types.Field(String, graphql_name='commodity') + go_live_date = sgqlc.types.Field(Datetime, graphql_name='goLiveDate') + link_active = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='linkActive') + metrics_one_active = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='metricsOneActive') + pre_bonus_ebitda = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='preBonusEbitda') + suppresse_financials = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='suppresseFinancials') + type = sgqlc.types.Field(String, graphql_name='type') + wms = sgqlc.types.Field(String, graphql_name='wms') + cost_center = sgqlc.types.Field(String, graphql_name='costCenter') + timezone = sgqlc.types.Field('Timezone', graphql_name='timezone') + unit_group_by_unit_group = sgqlc.types.Field('UnitGroup', graphql_name='unitGroupByUnitGroup') + utility_meters = sgqlc.types.Field(sgqlc.types.non_null(UtilityMetersConnection), graphql_name='utilityMeters', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMetersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityMeterCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityMeterFilter, graphql_name='filter', default=None)), +)) + ) + building_areas = sgqlc.types.Field(sgqlc.types.non_null(BuildingAreasConnection), graphql_name='buildingAreas', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(BuildingAreasOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(BuildingAreaCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(BuildingAreaFilter, graphql_name='filter', default=None)), +)) + ) + components = sgqlc.types.Field(sgqlc.types.non_null(ComponentsConnection), graphql_name='components', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ComponentsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ComponentCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ComponentFilter, graphql_name='filter', default=None)), +)) + ) + communications = sgqlc.types.Field(sgqlc.types.non_null(FacilityCommunicationsConnection), graphql_name='communications', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(FacilityCommunicationsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(FacilityCommunicationCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(FacilityCommunicationFilter, graphql_name='filter', default=None)), +)) + ) + facility_data_sources = sgqlc.types.Field(sgqlc.types.non_null(FacilityDataSourcesConnection), graphql_name='facilityDataSources', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(FacilityDataSourcesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(FacilityDataSourceCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(FacilityDataSourceFilter, graphql_name='filter', default=None)), +)) + ) + facility_groups_linkers = sgqlc.types.Field(sgqlc.types.non_null(FacilityGroupsLinkersConnection), graphql_name='facilityGroupsLinkers', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(FacilityGroupsLinkersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(FacilityGroupsLinkerCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(FacilityGroupsLinkerFilter, graphql_name='filter', default=None)), +)) + ) + projects = sgqlc.types.Field(sgqlc.types.non_null(ProjectsConnection), graphql_name='projects', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProjectsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ProjectCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ProjectFilter, graphql_name='filter', default=None)), +)) + ) + main_services = sgqlc.types.Field(sgqlc.types.non_null(MainServicesConnection), graphql_name='mainServices', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(MainServicesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(MainServiceCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(MainServiceFilter, graphql_name='filter', default=None)), +)) + ) + utility_meter_statement_rollups = sgqlc.types.Field(sgqlc.types.non_null(UtilityMeterStatementRollupsConnection), graphql_name='utilityMeterStatementRollups', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMeterStatementRollupsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityMeterStatementRollupCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityMeterStatementRollupFilter, graphql_name='filter', default=None)), +)) + ) + utility_meter_statements = sgqlc.types.Field(sgqlc.types.non_null(UtilityMeterStatementsConnection), graphql_name='utilityMeterStatements', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMeterStatementsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityMeterStatementCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityMeterStatementFilter, graphql_name='filter', default=None)), +)) + ) + account_statements = sgqlc.types.Field(sgqlc.types.non_null(AccountStatementsConnection), graphql_name='accountStatements', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('filter', sgqlc.types.Arg(AccountStatementFilter, graphql_name='filter', default=None)), +)) + ) + active_communication = sgqlc.types.Field('FacilityCommunication', graphql_name='activeCommunication') + active_utility_account_statement_rollups = sgqlc.types.Field(sgqlc.types.non_null(UtilityAccountStatementRollupsConnection), graphql_name='activeUtilityAccountStatementRollups', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('filter', sgqlc.types.Arg(UtilityAccountStatementRollupFilter, graphql_name='filter', default=None)), +)) + ) + utility_account_statement_rollups = sgqlc.types.Field(sgqlc.types.non_null(UtilityAccountStatementRollupsConnection), graphql_name='utilityAccountStatementRollups', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('filter', sgqlc.types.Arg(UtilityAccountStatementRollupFilter, graphql_name='filter', default=None)), +)) + ) + utility_account_statements = sgqlc.types.Field(sgqlc.types.non_null(UtilityAccountStatementsConnection), graphql_name='utilityAccountStatements', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('filter', sgqlc.types.Arg(UtilityAccountStatementFilter, graphql_name='filter', default=None)), +)) + ) + utility_accounts = sgqlc.types.Field(sgqlc.types.non_null(UtilityAccountsConnection), graphql_name='utilityAccounts', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('filter', sgqlc.types.Arg(UtilityAccountFilter, graphql_name='filter', default=None)), +)) + ) + metric_labels = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('MetricLabel'))), graphql_name='metricLabels', args=sgqlc.types.ArgDict(( + ('mutable_only', sgqlc.types.Arg(Boolean, graphql_name='mutableOnly', default=False)), +)) + ) + mutable_metric_data = sgqlc.types.Field(MetricDataConnection, graphql_name='mutableMetricData', args=sgqlc.types.ArgDict(( + ('label', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='label', default=None)), + ('from_', sgqlc.types.Arg(String, graphql_name='from', default=None)), + ('to', sgqlc.types.Arg(String, graphql_name='to', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataOrderBy), graphql_name='orderBy', default='TIME_ASC')), +)) + ) + metric_data = sgqlc.types.Field(MetricDataConnection, graphql_name='metricData', args=sgqlc.types.ArgDict(( + ('label', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='label', default=None)), + ('from_', sgqlc.types.Arg(String, graphql_name='from', default=None)), + ('to', sgqlc.types.Arg(String, graphql_name='to', default=None)), + ('aggregation', sgqlc.types.Arg(MetricDataAggregationMethod, graphql_name='aggregation', default=None)), + ('window', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='window', default='1 day')), + ('sampling_window', sgqlc.types.Arg(String, graphql_name='samplingWindow', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataOrderBy), graphql_name='orderBy', default='TIME_ASC')), + ('unit', sgqlc.types.Arg(String, graphql_name='unit', default=None)), + ('unit_group', sgqlc.types.Arg(String, graphql_name='unitGroup', default=None)), +)) + ) + utility_accounts_by_utility_meter_facility_id_and_utility_account_id = sgqlc.types.Field(sgqlc.types.non_null(FacilityUtilityAccountsByUtilityMeterFacilityIdAndUtilityAccountIdManyToManyConnection), graphql_name='utilityAccountsByUtilityMeterFacilityIdAndUtilityAccountId', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityAccountsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityAccountCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityAccountFilter, graphql_name='filter', default=None)), +)) + ) + building_area_types_by_building_area_facility_id_and_building_area_type_id = sgqlc.types.Field(sgqlc.types.non_null(FacilityBuildingAreaTypesByBuildingAreaFacilityIdAndBuildingAreaTypeIdManyToManyConnection), graphql_name='buildingAreaTypesByBuildingAreaFacilityIdAndBuildingAreaTypeId', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(BuildingAreaTypesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(BuildingAreaTypeCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(BuildingAreaTypeFilter, graphql_name='filter', default=None)), +)) + ) + machine_users_by_component_facility_id_and_machine_user_id = sgqlc.types.Field(sgqlc.types.non_null(FacilityMachineUsersByComponentFacilityIdAndMachineUserIdManyToManyConnection), graphql_name='machineUsersByComponentFacilityIdAndMachineUserId', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(MachineUsersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(MachineUserCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(MachineUserFilter, graphql_name='filter', default=None)), +)) + ) + event_types_by_event_facility_id_and_type = sgqlc.types.Field(sgqlc.types.non_null(FacilityEventTypesByEventFacilityIdAndTypeManyToManyConnection), graphql_name='eventTypesByEventFacilityIdAndType', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(EventTypesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(EventTypeCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(EventTypeFilter, graphql_name='filter', default=None)), +)) + ) + data_sources = sgqlc.types.Field(sgqlc.types.non_null(FacilityDataSourcesManyToManyConnection), graphql_name='dataSources', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(DataSourcesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(DataSourceCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(DataSourceFilter, graphql_name='filter', default=None)), +)) + ) + facility_groups = sgqlc.types.Field(sgqlc.types.non_null(FacilityFacilityGroupsManyToManyConnection), graphql_name='facilityGroups', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(FacilityGroupsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(FacilityGroupCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(FacilityGroupFilter, graphql_name='filter', default=None)), +)) + ) + project_types_by_project_facility_id_and_project_type_id = sgqlc.types.Field(sgqlc.types.non_null(FacilityProjectTypesByProjectFacilityIdAndProjectTypeIdManyToManyConnection), graphql_name='projectTypesByProjectFacilityIdAndProjectTypeId', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProjectTypesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ProjectTypeCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ProjectTypeFilter, graphql_name='filter', default=None)), +)) + ) + programs_by_project_facility_id_and_program_id = sgqlc.types.Field(sgqlc.types.non_null(FacilityProgramsByProjectFacilityIdAndProgramIdManyToManyConnection), graphql_name='programsByProjectFacilityIdAndProgramId', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProgramsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ProgramCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ProgramFilter, graphql_name='filter', default=None)), +)) + ) + utility_accounts_by_utility_meter_statement_rollup_facility_id_and_utility_account_id = sgqlc.types.Field(sgqlc.types.non_null(FacilityUtilityAccountsByUtilityMeterStatementRollupFacilityIdAndUtilityAccountIdManyToManyConnection), graphql_name='utilityAccountsByUtilityMeterStatementRollupFacilityIdAndUtilityAccountId', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityAccountsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityAccountCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityAccountFilter, graphql_name='filter', default=None)), +)) + ) + utility_meters_by_utility_meter_statement_rollup_facility_id_and_utility_meter_id = sgqlc.types.Field(sgqlc.types.non_null(FacilityUtilityMetersByUtilityMeterStatementRollupFacilityIdAndUtilityMeterIdManyToManyConnection), graphql_name='utilityMetersByUtilityMeterStatementRollupFacilityIdAndUtilityMeterId', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMetersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityMeterCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityMeterFilter, graphql_name='filter', default=None)), +)) + ) + utility_accounts_by_utility_meter_statement_facility_id_and_utility_account_id = sgqlc.types.Field(sgqlc.types.non_null(FacilityUtilityAccountsByUtilityMeterStatementFacilityIdAndUtilityAccountIdManyToManyConnection), graphql_name='utilityAccountsByUtilityMeterStatementFacilityIdAndUtilityAccountId', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityAccountsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityAccountCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityAccountFilter, graphql_name='filter', default=None)), +)) + ) + utility_meters_by_utility_meter_statement_facility_id_and_utility_meter_id = sgqlc.types.Field(sgqlc.types.non_null(FacilityUtilityMetersByUtilityMeterStatementFacilityIdAndUtilityMeterIdManyToManyConnection), graphql_name='utilityMetersByUtilityMeterStatementFacilityIdAndUtilityMeterId', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMetersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityMeterCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityMeterFilter, graphql_name='filter', default=None)), +)) + ) + account_statements_by_utility_meter_statement_facility_id_and_account_statement_id = sgqlc.types.Field(sgqlc.types.non_null(FacilityAccountStatementsByUtilityMeterStatementFacilityIdAndAccountStatementIdManyToManyConnection), graphql_name='accountStatementsByUtilityMeterStatementFacilityIdAndAccountStatementId', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(AccountStatementsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(AccountStatementCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(AccountStatementFilter, graphql_name='filter', default=None)), +)) + ) + + +class FacilityCommunication(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('id', 'facility_id', 'message', 'cleared_at', 'created_at', 'updated_at', 'facility', 'is_cleared') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + facility_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='facilityId') + message = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='message') + cleared_at = sgqlc.types.Field(Datetime, graphql_name='clearedAt') + created_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='createdAt') + updated_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='updatedAt') + facility = sgqlc.types.Field(Facility, graphql_name='facility') + is_cleared = sgqlc.types.Field(Boolean, graphql_name='isCleared') + + +class FacilityDataSource(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'data_source_name', 'facility', 'data_source_by_data_source_name') + facility_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='facilityId') + data_source_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='dataSourceName') + facility = sgqlc.types.Field(Facility, graphql_name='facility') + data_source_by_data_source_name = sgqlc.types.Field(DataSource, graphql_name='dataSourceByDataSourceName') + + +class FacilityGroup(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('id', 'name', 'parent_id', 'parent', 'child_facility_groups', 'facility_groups_linkers_by_facility_grouping_id', 'all_facilities', 'facilities') + id = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='id') + name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') + parent_id = sgqlc.types.Field(BigInt, graphql_name='parentId') + parent = sgqlc.types.Field('FacilityGroup', graphql_name='parent') + child_facility_groups = sgqlc.types.Field(sgqlc.types.non_null(FacilityGroupsConnection), graphql_name='childFacilityGroups', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(FacilityGroupsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(FacilityGroupCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(FacilityGroupFilter, graphql_name='filter', default=None)), +)) + ) + facility_groups_linkers_by_facility_grouping_id = sgqlc.types.Field(sgqlc.types.non_null(FacilityGroupsLinkersConnection), graphql_name='facilityGroupsLinkersByFacilityGroupingId', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(FacilityGroupsLinkersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(FacilityGroupsLinkerCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(FacilityGroupsLinkerFilter, graphql_name='filter', default=None)), +)) + ) + all_facilities = sgqlc.types.Field(sgqlc.types.non_null(FacilitiesConnection), graphql_name='allFacilities', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('filter', sgqlc.types.Arg(FacilityFilter, graphql_name='filter', default=None)), +)) + ) + facilities = sgqlc.types.Field(sgqlc.types.non_null(FacilityGroupFacilitiesManyToManyConnection), graphql_name='facilities', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(FacilitiesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(FacilityCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(FacilityFilter, graphql_name='filter', default=None)), +)) + ) + + +class FacilityGroupsLinker(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'facility_grouping_id', 'facility', 'facility_grouping') + facility_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='facilityId') + facility_grouping_id = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='facilityGroupingId') + facility = sgqlc.types.Field(Facility, graphql_name='facility') + facility_grouping = sgqlc.types.Field(FacilityGroup, graphql_name='facilityGrouping') + + +class FieldGroup(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('id', 'label', 'description', 'created_at', 'updated_at', 'project_fields_by_group_id', 'projects_by_project_field_group_id_and_project_id', 'data_points_by_project_field_group_id_and_data_point_id') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + label = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='label') + description = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='description') + created_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='createdAt') + updated_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='updatedAt') + project_fields_by_group_id = sgqlc.types.Field(sgqlc.types.non_null(ProjectFieldsConnection), graphql_name='projectFieldsByGroupId', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProjectFieldsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ProjectFieldCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ProjectFieldFilter, graphql_name='filter', default=None)), +)) + ) + projects_by_project_field_group_id_and_project_id = sgqlc.types.Field(sgqlc.types.non_null(FieldGroupProjectsByProjectFieldGroupIdAndProjectIdManyToManyConnection), graphql_name='projectsByProjectFieldGroupIdAndProjectId', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProjectsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ProjectCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ProjectFilter, graphql_name='filter', default=None)), +)) + ) + data_points_by_project_field_group_id_and_data_point_id = sgqlc.types.Field(sgqlc.types.non_null(FieldGroupDataPointsByProjectFieldGroupIdAndDataPointIdManyToManyConnection), graphql_name='dataPointsByProjectFieldGroupIdAndDataPointId', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(DataPointsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(DataPointCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(DataPointFilter, graphql_name='filter', default=None)), +)) + ) + + +class GeometryGeometryCollection(sgqlc.types.Type, GeometryInterface, GeometryGeometry): + __schema__ = nionic_schema + __field_names__ = ('geometries',) + geometries = sgqlc.types.Field(sgqlc.types.list_of(GeometryGeometry), graphql_name='geometries') + + +class GeometryGeometryCollectionM(sgqlc.types.Type, GeometryInterface, GeometryGeometryM): + __schema__ = nionic_schema + __field_names__ = ('geometries',) + geometries = sgqlc.types.Field(sgqlc.types.list_of(GeometryGeometryM), graphql_name='geometries') + + +class GeometryGeometryCollectionZ(sgqlc.types.Type, GeometryInterface, GeometryGeometryZ): + __schema__ = nionic_schema + __field_names__ = ('geometries',) + geometries = sgqlc.types.Field(sgqlc.types.list_of(GeometryGeometryZ), graphql_name='geometries') + + +class GeometryGeometryCollectionZM(sgqlc.types.Type, GeometryInterface, GeometryGeometryZM): + __schema__ = nionic_schema + __field_names__ = ('geometries',) + geometries = sgqlc.types.Field(sgqlc.types.list_of(GeometryGeometryZM), graphql_name='geometries') + + +class GeometryLineString(sgqlc.types.Type, GeometryInterface, GeometryGeometry): + __schema__ = nionic_schema + __field_names__ = ('points',) + points = sgqlc.types.Field(sgqlc.types.list_of('GeometryPoint'), graphql_name='points') + + +class GeometryLineStringM(sgqlc.types.Type, GeometryInterface, GeometryGeometryM): + __schema__ = nionic_schema + __field_names__ = ('points',) + points = sgqlc.types.Field(sgqlc.types.list_of('GeometryPointM'), graphql_name='points') + + +class GeometryLineStringZ(sgqlc.types.Type, GeometryInterface, GeometryGeometryZ): + __schema__ = nionic_schema + __field_names__ = ('points',) + points = sgqlc.types.Field(sgqlc.types.list_of('GeometryPointZ'), graphql_name='points') + + +class GeometryLineStringZM(sgqlc.types.Type, GeometryInterface, GeometryGeometryZM): + __schema__ = nionic_schema + __field_names__ = ('points',) + points = sgqlc.types.Field(sgqlc.types.list_of('GeometryPointZM'), graphql_name='points') + + +class GeometryMultiLineString(sgqlc.types.Type, GeometryInterface, GeometryGeometry): + __schema__ = nionic_schema + __field_names__ = ('lines',) + lines = sgqlc.types.Field(sgqlc.types.list_of(GeometryLineString), graphql_name='lines') + + +class GeometryMultiLineStringM(sgqlc.types.Type, GeometryInterface, GeometryGeometryM): + __schema__ = nionic_schema + __field_names__ = ('lines',) + lines = sgqlc.types.Field(sgqlc.types.list_of(GeometryLineStringM), graphql_name='lines') + + +class GeometryMultiLineStringZ(sgqlc.types.Type, GeometryInterface, GeometryGeometryZ): + __schema__ = nionic_schema + __field_names__ = ('lines',) + lines = sgqlc.types.Field(sgqlc.types.list_of(GeometryLineStringZ), graphql_name='lines') + + +class GeometryMultiLineStringZM(sgqlc.types.Type, GeometryInterface, GeometryGeometryZM): + __schema__ = nionic_schema + __field_names__ = ('lines',) + lines = sgqlc.types.Field(sgqlc.types.list_of(GeometryLineStringZM), graphql_name='lines') + + +class GeometryMultiPoint(sgqlc.types.Type, GeometryInterface, GeometryGeometry): + __schema__ = nionic_schema + __field_names__ = ('points',) + points = sgqlc.types.Field(sgqlc.types.list_of('GeometryPoint'), graphql_name='points') + + +class GeometryMultiPointM(sgqlc.types.Type, GeometryInterface, GeometryGeometryM): + __schema__ = nionic_schema + __field_names__ = ('points',) + points = sgqlc.types.Field(sgqlc.types.list_of('GeometryPointM'), graphql_name='points') + + +class GeometryMultiPointZ(sgqlc.types.Type, GeometryInterface, GeometryGeometryZ): + __schema__ = nionic_schema + __field_names__ = ('points',) + points = sgqlc.types.Field(sgqlc.types.list_of('GeometryPointZ'), graphql_name='points') + + +class GeometryMultiPointZM(sgqlc.types.Type, GeometryInterface, GeometryGeometryZM): + __schema__ = nionic_schema + __field_names__ = ('points',) + points = sgqlc.types.Field(sgqlc.types.list_of('GeometryPointZM'), graphql_name='points') + + +class GeometryMultiPolygon(sgqlc.types.Type, GeometryInterface, GeometryGeometry): + __schema__ = nionic_schema + __field_names__ = ('polygons',) + polygons = sgqlc.types.Field(sgqlc.types.list_of('GeometryPolygon'), graphql_name='polygons') + + +class GeometryMultiPolygonM(sgqlc.types.Type, GeometryInterface, GeometryGeometryM): + __schema__ = nionic_schema + __field_names__ = ('polygons',) + polygons = sgqlc.types.Field(sgqlc.types.list_of('GeometryPolygonM'), graphql_name='polygons') + + +class GeometryMultiPolygonZ(sgqlc.types.Type, GeometryInterface, GeometryGeometryZ): + __schema__ = nionic_schema + __field_names__ = ('polygons',) + polygons = sgqlc.types.Field(sgqlc.types.list_of('GeometryPolygonZ'), graphql_name='polygons') + + +class GeometryMultiPolygonZM(sgqlc.types.Type, GeometryInterface, GeometryGeometryZM): + __schema__ = nionic_schema + __field_names__ = ('polygons',) + polygons = sgqlc.types.Field(sgqlc.types.list_of('GeometryPolygonZM'), graphql_name='polygons') + + +class GeometryPoint(sgqlc.types.Type, GeometryInterface, GeometryGeometry): + __schema__ = nionic_schema + __field_names__ = ('x', 'y') + x = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='x') + y = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='y') + + +class GeometryPointM(sgqlc.types.Type, GeometryInterface, GeometryGeometryM): + __schema__ = nionic_schema + __field_names__ = ('x', 'y') + x = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='x') + y = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='y') + + +class GeometryPointZ(sgqlc.types.Type, GeometryInterface, GeometryGeometryZ): + __schema__ = nionic_schema + __field_names__ = ('x', 'y', 'z') + x = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='x') + y = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='y') + z = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='z') + + +class GeometryPointZM(sgqlc.types.Type, GeometryInterface, GeometryGeometryZM): + __schema__ = nionic_schema + __field_names__ = ('x', 'y', 'z') + x = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='x') + y = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='y') + z = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='z') + + +class GeometryPolygon(sgqlc.types.Type, GeometryInterface, GeometryGeometry): + __schema__ = nionic_schema + __field_names__ = ('exterior', 'interiors') + exterior = sgqlc.types.Field(GeometryLineString, graphql_name='exterior') + interiors = sgqlc.types.Field(sgqlc.types.list_of(GeometryLineString), graphql_name='interiors') + + +class GeometryPolygonM(sgqlc.types.Type, GeometryInterface, GeometryGeometryM): + __schema__ = nionic_schema + __field_names__ = ('exterior', 'interiors') + exterior = sgqlc.types.Field(GeometryLineStringM, graphql_name='exterior') + interiors = sgqlc.types.Field(sgqlc.types.list_of(GeometryLineStringM), graphql_name='interiors') + + +class GeometryPolygonZ(sgqlc.types.Type, GeometryInterface, GeometryGeometryZ): + __schema__ = nionic_schema + __field_names__ = ('exterior', 'interiors') + exterior = sgqlc.types.Field(GeometryLineStringZ, graphql_name='exterior') + interiors = sgqlc.types.Field(sgqlc.types.list_of(GeometryLineStringZ), graphql_name='interiors') + + +class GeometryPolygonZM(sgqlc.types.Type, GeometryInterface, GeometryGeometryZM): + __schema__ = nionic_schema + __field_names__ = ('exterior', 'interiors') + exterior = sgqlc.types.Field(GeometryLineStringZM, graphql_name='exterior') + interiors = sgqlc.types.Field(sgqlc.types.list_of(GeometryLineStringZM), graphql_name='interiors') + + +class MachineIdentity(sgqlc.types.Type, Identity): + __schema__ = nionic_schema + __field_names__ = ('machine_user',) + machine_user = sgqlc.types.Field(sgqlc.types.non_null('MachineUser'), graphql_name='machineUser') + + +class MachineUser(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('id', 'description', 'created_by', 'created_at', 'updated_at', 'components', 'access_tokens', 'creator', 'vendor_user', 'capabilities', 'permissions', 'facilities_by_component_machine_user_id_and_facility_id') + id = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='id') + description = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='description') + created_by = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='createdBy') + created_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='createdAt') + updated_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='updatedAt') + components = sgqlc.types.Field(sgqlc.types.non_null(ComponentsConnection), graphql_name='components', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ComponentsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ComponentCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ComponentFilter, graphql_name='filter', default=None)), +)) + ) + access_tokens = sgqlc.types.Field(sgqlc.types.non_null(PlatformAccessTokensConnection), graphql_name='accessTokens', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('filter', sgqlc.types.Arg(PlatformAccessTokenFilter, graphql_name='filter', default=None)), +)) + ) + creator = sgqlc.types.Field('User', graphql_name='creator') + vendor_user = sgqlc.types.Field('VendorUser', graphql_name='vendorUser') + capabilities = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(PlatformCapabilityAccess))), graphql_name='capabilities', args=sgqlc.types.ArgDict(( + ('can_write', sgqlc.types.Arg(Boolean, graphql_name='canWrite', default=None)), + ('can_read', sgqlc.types.Arg(Boolean, graphql_name='canRead', default=None)), +)) + ) + permissions = sgqlc.types.Field(MachineUserPermissions, graphql_name='permissions') + facilities_by_component_machine_user_id_and_facility_id = sgqlc.types.Field(sgqlc.types.non_null(MachineUserFacilitiesByComponentMachineUserIdAndFacilityIdManyToManyConnection), graphql_name='facilitiesByComponentMachineUserIdAndFacilityId', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(FacilitiesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(FacilityCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(FacilityFilter, graphql_name='filter', default=None)), +)) + ) + + +class MainService(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('id', 'type', 'facility_id', 'name', 'usage', 'demand', 'created_at', 'updated_at', 'original_id', 'facility', 'data_point_by_usage', 'data_point_by_demand') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + type = sgqlc.types.Field(sgqlc.types.non_null(EnumMainServicesType), graphql_name='type') + facility_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='facilityId') + name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') + usage = sgqlc.types.Field(Int, graphql_name='usage') + demand = sgqlc.types.Field(Int, graphql_name='demand') + created_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='createdAt') + updated_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='updatedAt') + original_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='originalId') + facility = sgqlc.types.Field(Facility, graphql_name='facility') + data_point_by_usage = sgqlc.types.Field(DataPoint, graphql_name='dataPointByUsage') + data_point_by_demand = sgqlc.types.Field(DataPoint, graphql_name='dataPointByDemand') + + +class MeterCharge(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('id', 'meter_statement_id', 'category', 'label', 'override_at', 'value', 'line_number', 'created_at', 'updated_at', 'deleted_at', 'meter_statement') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + meter_statement_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='meterStatementId') + category = sgqlc.types.Field(sgqlc.types.non_null(UtilityMeterChargeCategory), graphql_name='category') + label = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='label') + override_at = sgqlc.types.Field(Datetime, graphql_name='overrideAt') + value = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='value') + line_number = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='lineNumber') + created_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='createdAt') + updated_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='updatedAt') + deleted_at = sgqlc.types.Field(Datetime, graphql_name='deletedAt') + meter_statement = sgqlc.types.Field('MeterStatement', graphql_name='meterStatement') + + +class MeterStatement(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('id', 'utility_meter_id', 'account_statement_id', 'interval_start', 'interval_end', 'statement_date', 'integration_key', 'pdf_link', 'is_validated', 'currency_code', 'primary_usage_units', 'primary_demand_units', 'override_at', 'metadata', 'manual_upload', 'is_adjustment', 'created_at', 'updated_at', 'override_statement_year', 'override_statement_month', 'utility_meter', 'account_statement', 'meter_charges', 'meter_usages', 'meter_statement_histories', 'utility_meter_statement_rollup', 'utility_meter_statement', 'charges', 'deleted_at', 'max_demand', 'normalized_charges', 'normalized_total_charges', 'statement_month', 'statement_year', 'total_charges', 'total_usage', 'pdf_uri') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + utility_meter_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='utilityMeterId') + account_statement_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='accountStatementId') + interval_start = sgqlc.types.Field(sgqlc.types.non_null(Date), graphql_name='intervalStart') + interval_end = sgqlc.types.Field(sgqlc.types.non_null(Date), graphql_name='intervalEnd') + statement_date = sgqlc.types.Field(sgqlc.types.non_null(Date), graphql_name='statementDate') + integration_key = sgqlc.types.Field(String, graphql_name='integrationKey') + pdf_link = sgqlc.types.Field(String, graphql_name='pdfLink') + is_validated = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='isValidated') + currency_code = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='currencyCode') + primary_usage_units = sgqlc.types.Field(String, graphql_name='primaryUsageUnits') + primary_demand_units = sgqlc.types.Field(String, graphql_name='primaryDemandUnits') + override_at = sgqlc.types.Field(Datetime, graphql_name='overrideAt') + metadata = sgqlc.types.Field(sgqlc.types.non_null(JSON), graphql_name='metadata') + manual_upload = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='manualUpload') + is_adjustment = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='isAdjustment') + created_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='createdAt') + updated_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='updatedAt') + override_statement_year = sgqlc.types.Field(Int, graphql_name='overrideStatementYear') + override_statement_month = sgqlc.types.Field(Int, graphql_name='overrideStatementMonth') + utility_meter = sgqlc.types.Field('UtilityMeter', graphql_name='utilityMeter') + account_statement = sgqlc.types.Field(AccountStatement, graphql_name='accountStatement') + meter_charges = sgqlc.types.Field(sgqlc.types.non_null(MeterChargesConnection), graphql_name='meterCharges', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(MeterChargesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(MeterChargeCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(MeterChargeFilter, graphql_name='filter', default=None)), +)) + ) + meter_usages = sgqlc.types.Field(sgqlc.types.non_null(MeterUsagesConnection), graphql_name='meterUsages', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(MeterUsagesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(MeterUsageCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(MeterUsageFilter, graphql_name='filter', default=None)), +)) + ) + meter_statement_histories = sgqlc.types.Field(sgqlc.types.non_null(MeterStatementHistoriesConnection), graphql_name='meterStatementHistories', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(MeterStatementHistoriesOrderBy)), graphql_name='orderBy', default=('NATURAL',))), + ('condition', sgqlc.types.Arg(MeterStatementHistoryCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(MeterStatementHistoryFilter, graphql_name='filter', default=None)), +)) + ) + utility_meter_statement_rollup = sgqlc.types.Field('UtilityMeterStatementRollup', graphql_name='utilityMeterStatementRollup') + utility_meter_statement = sgqlc.types.Field('UtilityMeterStatement', graphql_name='utilityMeterStatement') + charges = sgqlc.types.Field(sgqlc.types.non_null(MeterStatementsChargesConnection), graphql_name='charges', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('filter', sgqlc.types.Arg(MeterStatementsChargesRecordFilter, graphql_name='filter', default=None)), +)) + ) + deleted_at = sgqlc.types.Field(Datetime, graphql_name='deletedAt') + max_demand = sgqlc.types.Field(Float, graphql_name='maxDemand') + normalized_charges = sgqlc.types.Field(sgqlc.types.non_null(MeterStatementsNormalizedChargesConnection), graphql_name='normalizedCharges', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('filter', sgqlc.types.Arg(MeterStatementsNormalizedChargesRecordFilter, graphql_name='filter', default=None)), +)) + ) + normalized_total_charges = sgqlc.types.Field(Float, graphql_name='normalizedTotalCharges') + statement_month = sgqlc.types.Field(Int, graphql_name='statementMonth') + statement_year = sgqlc.types.Field(Int, graphql_name='statementYear') + total_charges = sgqlc.types.Field(Float, graphql_name='totalCharges') + total_usage = sgqlc.types.Field(Float, graphql_name='totalUsage') + pdf_uri = sgqlc.types.Field(String, graphql_name='pdfUri') + + +class MeterUsage(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('id', 'meter_statement_id', 'category', 'label', 'value', 'units', 'override_at', 'line_number', 'created_at', 'updated_at', 'deleted_at', 'meter_statement') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + meter_statement_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='meterStatementId') + category = sgqlc.types.Field(sgqlc.types.non_null(UtilityMeterUsageCategory), graphql_name='category') + label = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='label') + value = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='value') + units = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='units') + override_at = sgqlc.types.Field(Datetime, graphql_name='overrideAt') + line_number = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='lineNumber') + created_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='createdAt') + updated_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='updatedAt') + deleted_at = sgqlc.types.Field(Datetime, graphql_name='deletedAt') + meter_statement = sgqlc.types.Field(MeterStatement, graphql_name='meterStatement') + + +class MetricData(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('time', 'source_id', 'label', 'data', 'metadata') + time = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='time') + source_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='sourceId') + label = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='label') + data = sgqlc.types.Field(sgqlc.types.non_null(JSON), graphql_name='data') + metadata = sgqlc.types.Field(JSON, graphql_name='metadata', args=sgqlc.types.ArgDict(( + ('drill_in', sgqlc.types.Arg(Boolean, graphql_name='drillIn', default=False)), +)) + ) + + +class MetricLabel(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('source_id', 'label') + source_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='sourceId') + label = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='label') + + +class MetricMetadatum(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('label', 'human_label', 'is_composite', 'is_sparse', 'is_internal', 'data_type', 'table', 'unit_dimension', 'unit', 'created_at', 'updated_at', 'expression', 'all_dependencies', 'all_dependents', 'dependencies', 'dependency_list', 'dependents', 'dependents_list') + label = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='label') + human_label = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='humanLabel') + is_composite = sgqlc.types.Field(Boolean, graphql_name='isComposite') + is_sparse = sgqlc.types.Field(Boolean, graphql_name='isSparse') + is_internal = sgqlc.types.Field(Boolean, graphql_name='isInternal') + data_type = sgqlc.types.Field(MetricDatatype, graphql_name='dataType') + table = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='table') + unit_dimension = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='unitDimension') + unit = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='unit') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') + expression = sgqlc.types.Field(String, graphql_name='expression') + all_dependencies = sgqlc.types.Field(sgqlc.types.non_null(MetricMetadataConnection), graphql_name='allDependencies', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('filter', sgqlc.types.Arg(MetricMetadatumFilter, graphql_name='filter', default=None)), +)) + ) + all_dependents = sgqlc.types.Field(sgqlc.types.non_null(MetricMetadataConnection), graphql_name='allDependents', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('filter', sgqlc.types.Arg(MetricMetadatumFilter, graphql_name='filter', default=None)), +)) + ) + dependencies = sgqlc.types.Field(sgqlc.types.non_null(MetricMetadataConnection), graphql_name='dependencies', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('filter', sgqlc.types.Arg(MetricMetadatumFilter, graphql_name='filter', default=None)), +)) + ) + dependency_list = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='dependencyList') + dependents = sgqlc.types.Field(sgqlc.types.non_null(MetricMetadataConnection), graphql_name='dependents', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('filter', sgqlc.types.Arg(MetricMetadatumFilter, graphql_name='filter', default=None)), +)) + ) + dependents_list = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='dependentsList') + + +class Program(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('id', 'project_type_id', 'name', 'description', 'created_at', 'updated_at', 'project_type', 'projects', 'facilities_by_project_program_id_and_facility_id', 'project_types_by_project_program_id_and_project_type_id') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + project_type_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='projectTypeId') + name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') + description = sgqlc.types.Field(String, graphql_name='description') + created_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='createdAt') + updated_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='updatedAt') + project_type = sgqlc.types.Field('ProjectType', graphql_name='projectType') + projects = sgqlc.types.Field(sgqlc.types.non_null(ProjectsConnection), graphql_name='projects', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProjectsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ProjectCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ProjectFilter, graphql_name='filter', default=None)), +)) + ) + facilities_by_project_program_id_and_facility_id = sgqlc.types.Field(sgqlc.types.non_null(ProgramFacilitiesByProjectProgramIdAndFacilityIdManyToManyConnection), graphql_name='facilitiesByProjectProgramIdAndFacilityId', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(FacilitiesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(FacilityCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(FacilityFilter, graphql_name='filter', default=None)), +)) + ) + project_types_by_project_program_id_and_project_type_id = sgqlc.types.Field(sgqlc.types.non_null(ProgramProjectTypesByProjectProgramIdAndProjectTypeIdManyToManyConnection), graphql_name='projectTypesByProjectProgramIdAndProjectTypeId', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProjectTypesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ProjectTypeCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ProjectTypeFilter, graphql_name='filter', default=None)), +)) + ) + + +class Project(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('id', 'facility_id', 'project_type_id', 'name', 'description', 'auto_acknowledge', 'config', 'start_date', 'end_date', 'created_at', 'updated_at', 'acknowledgement_window_threshold', 'start_timeout', 'end_timeout', 'program_id', 'facility', 'project_type', 'program', 'project_components', 'project_fields', 'project_watchers', 'savings_events', 'suggestions', 'control_type', 'facility_name', 'is_watching', 'program_name', 'project_type_name', 'subscribed_channels', 'subscriptions', 'user_subscriptions', 'controllers', 'savings_event_data', 'permissions', 'components', 'field_groups_by_project_field_project_id_and_group_id', 'data_points_by_project_field_project_id_and_data_point_id', 'watchers', 'savings_events_by_suggestion_project_id_and_savings_event_id') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + facility_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='facilityId') + project_type_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='projectTypeId') + name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') + description = sgqlc.types.Field(String, graphql_name='description') + auto_acknowledge = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='autoAcknowledge') + config = sgqlc.types.Field(sgqlc.types.non_null(JSON), graphql_name='config') + start_date = sgqlc.types.Field(Date, graphql_name='startDate') + end_date = sgqlc.types.Field(Date, graphql_name='endDate') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') + acknowledgement_window_threshold = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='acknowledgementWindowThreshold') + start_timeout = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='startTimeout') + end_timeout = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='endTimeout') + program_id = sgqlc.types.Field(Int, graphql_name='programId') + facility = sgqlc.types.Field(Facility, graphql_name='facility') + project_type = sgqlc.types.Field('ProjectType', graphql_name='projectType') + program = sgqlc.types.Field(Program, graphql_name='program') + project_components = sgqlc.types.Field(sgqlc.types.non_null(ProjectComponentsConnection), graphql_name='projectComponents', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProjectComponentsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ProjectComponentCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ProjectComponentFilter, graphql_name='filter', default=None)), +)) + ) + project_fields = sgqlc.types.Field(sgqlc.types.non_null(ProjectFieldsConnection), graphql_name='projectFields', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProjectFieldsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ProjectFieldCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ProjectFieldFilter, graphql_name='filter', default=None)), +)) + ) + project_watchers = sgqlc.types.Field(sgqlc.types.non_null(ProjectWatchersConnection), graphql_name='projectWatchers', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProjectWatchersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ProjectWatcherCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ProjectWatcherFilter, graphql_name='filter', default=None)), +)) + ) + savings_events = sgqlc.types.Field(sgqlc.types.non_null(SavingsEventsConnection), graphql_name='savingsEvents', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(SavingsEventsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(SavingsEventCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(SavingsEventFilter, graphql_name='filter', default=None)), +)) + ) + suggestions = sgqlc.types.Field(sgqlc.types.non_null(SuggestionsConnection), graphql_name='suggestions', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(SuggestionsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(SuggestionCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(SuggestionFilter, graphql_name='filter', default=None)), +)) + ) + control_type = sgqlc.types.Field(ControlType, graphql_name='controlType') + facility_name = sgqlc.types.Field(String, graphql_name='facilityName') + is_watching = sgqlc.types.Field(Boolean, graphql_name='isWatching') + program_name = sgqlc.types.Field(String, graphql_name='programName') + project_type_name = sgqlc.types.Field(String, graphql_name='projectTypeName') + subscribed_channels = sgqlc.types.Field(sgqlc.types.list_of(UserSubscriptionChannel), graphql_name='subscribedChannels') + subscriptions = sgqlc.types.Field(sgqlc.types.non_null(UserSubscriptionsConnection), graphql_name='subscriptions', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('filter', sgqlc.types.Arg(UserSubscriptionFilter, graphql_name='filter', default=None)), +)) + ) + user_subscriptions = sgqlc.types.Field(sgqlc.types.non_null(UserSubscriptionsConnection), graphql_name='userSubscriptions', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('filter', sgqlc.types.Arg(UserSubscriptionFilter, graphql_name='filter', default=None)), +)) + ) + controllers = sgqlc.types.Field(sgqlc.types.non_null(UsersConnection), graphql_name='controllers', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UsersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UserCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UserFilter, graphql_name='filter', default=None)), +)) + ) + savings_event_data = sgqlc.types.Field(MetricDataConnection, graphql_name='savingsEventData', args=sgqlc.types.ArgDict(( + ('label', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='label', default=None)), + ('from_', sgqlc.types.Arg(String, graphql_name='from', default=None)), + ('to', sgqlc.types.Arg(String, graphql_name='to', default=None)), + ('aggregation', sgqlc.types.Arg(MetricDataAggregationMethod, graphql_name='aggregation', default=None)), + ('window', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='window', default='1 day')), + ('sampling_window', sgqlc.types.Arg(String, graphql_name='samplingWindow', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataOrderBy), graphql_name='orderBy', default='TIME_ASC')), + ('unit', sgqlc.types.Arg(String, graphql_name='unit', default=None)), + ('unit_group', sgqlc.types.Arg(String, graphql_name='unitGroup', default=None)), +)) + ) + permissions = sgqlc.types.Field(ProjectPermissions, graphql_name='permissions') + components = sgqlc.types.Field(sgqlc.types.non_null(ProjectComponentsManyToManyConnection), graphql_name='components', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ComponentsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ComponentCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ComponentFilter, graphql_name='filter', default=None)), +)) + ) + field_groups_by_project_field_project_id_and_group_id = sgqlc.types.Field(sgqlc.types.non_null(ProjectFieldGroupsByProjectFieldProjectIdAndGroupIdManyToManyConnection), graphql_name='fieldGroupsByProjectFieldProjectIdAndGroupId', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(FieldGroupsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(FieldGroupCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(FieldGroupFilter, graphql_name='filter', default=None)), +)) + ) + data_points_by_project_field_project_id_and_data_point_id = sgqlc.types.Field(sgqlc.types.non_null(ProjectDataPointsByProjectFieldProjectIdAndDataPointIdManyToManyConnection), graphql_name='dataPointsByProjectFieldProjectIdAndDataPointId', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(DataPointsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(DataPointCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(DataPointFilter, graphql_name='filter', default=None)), +)) + ) + watchers = sgqlc.types.Field(sgqlc.types.non_null(ProjectWatchersManyToManyConnection), graphql_name='watchers', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UsersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UserCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UserFilter, graphql_name='filter', default=None)), +)) + ) + savings_events_by_suggestion_project_id_and_savings_event_id = sgqlc.types.Field(sgqlc.types.non_null(ProjectSavingsEventsBySuggestionProjectIdAndSavingsEventIdManyToManyConnection), graphql_name='savingsEventsBySuggestionProjectIdAndSavingsEventId', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(SavingsEventsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(SavingsEventCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(SavingsEventFilter, graphql_name='filter', default=None)), +)) + ) + + +class ProjectComponent(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('project_id', 'component_id', 'startup_offset', 'project', 'component') + project_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='projectId') + component_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='componentId') + startup_offset = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='startupOffset') + project = sgqlc.types.Field(Project, graphql_name='project') + component = sgqlc.types.Field(Component, graphql_name='component') + + +class ProjectField(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('project_id', 'field_id', 'group_id', 'created_at', 'updated_at', 'alias', 'id', 'rate', 'target', 'data_point_id', 'project', 'group', 'data_point') + project_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='projectId') + field_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='fieldId') + group_id = sgqlc.types.Field(Int, graphql_name='groupId') + created_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='createdAt') + updated_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='updatedAt') + alias = sgqlc.types.Field(String, graphql_name='alias') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + rate = sgqlc.types.Field(sgqlc.types.non_null(JSON), graphql_name='rate') + target = sgqlc.types.Field(BigFloat, graphql_name='target') + data_point_id = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='dataPointId') + project = sgqlc.types.Field(Project, graphql_name='project') + group = sgqlc.types.Field(FieldGroup, graphql_name='group') + data_point = sgqlc.types.Field(DataPoint, graphql_name='dataPoint') + + +class ProjectType(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('id', 'name', 'description', 'projects', 'programs', 'facilities_by_project_project_type_id_and_facility_id', 'programs_by_project_project_type_id_and_program_id') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') + description = sgqlc.types.Field(String, graphql_name='description') + projects = sgqlc.types.Field(sgqlc.types.non_null(ProjectsConnection), graphql_name='projects', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProjectsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ProjectCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ProjectFilter, graphql_name='filter', default=None)), +)) + ) + programs = sgqlc.types.Field(sgqlc.types.non_null(ProgramsConnection), graphql_name='programs', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProgramsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ProgramCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ProgramFilter, graphql_name='filter', default=None)), +)) + ) + facilities_by_project_project_type_id_and_facility_id = sgqlc.types.Field(sgqlc.types.non_null(ProjectTypeFacilitiesByProjectProjectTypeIdAndFacilityIdManyToManyConnection), graphql_name='facilitiesByProjectProjectTypeIdAndFacilityId', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(FacilitiesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(FacilityCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(FacilityFilter, graphql_name='filter', default=None)), +)) + ) + programs_by_project_project_type_id_and_program_id = sgqlc.types.Field(sgqlc.types.non_null(ProjectTypeProgramsByProjectProjectTypeIdAndProgramIdManyToManyConnection), graphql_name='programsByProjectProjectTypeIdAndProgramId', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProgramsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ProgramCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ProgramFilter, graphql_name='filter', default=None)), +)) + ) + + +class ProjectWatcher(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('project_id', 'user_id', 'project', 'user', 'subscribed_channels') + project_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='projectId') + user_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='userId') + project = sgqlc.types.Field(Project, graphql_name='project') + user = sgqlc.types.Field('User', graphql_name='user') + subscribed_channels = sgqlc.types.Field(sgqlc.types.list_of(UserSubscriptionChannel), graphql_name='subscribedChannels') + + +class Query(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('query', 'node', 'account_charges', 'account_statement_histories', 'account_statements', 'balancing_authorities', 'building_area_types', 'building_areas', 'components', 'control_events', 'data_points', 'data_sources', 'dependencies', 'facilities', 'facility_communications', 'facility_data_sources', 'facility_groups', 'facility_groups_linkers', 'field_groups', 'machine_users', 'main_services', 'meter_charges', 'meter_statement_histories', 'meter_statements', 'meter_usages', 'metric_metadata', 'platform_access_tokens', 'programs', 'project_fields', 'project_types', 'project_watchers', 'projects', 'report_executions', 'report_queries', 'reports', 'savings_events', 'suggestion_activity_logs', 'suggestions', 'timezones', 'unit_dimensions', 'unit_group_dimensions', 'unit_groups', 'users', 'utility_account_statement_rollups', 'utility_account_statements', 'utility_accounts', 'utility_meter_statement_rollups', 'utility_meter_statements', 'utility_meters', 'utility_providers', 'vendor_users', 'virtual_point_intervals', 'account_charge', 'account_statement', 'balancing_authority', 'building_area_type', 'building_area', 'building_area_by_facility_id_and_label', 'component', 'control_event_log', 'control_event', 'data_point_by_id', 'data_point', 'data_source', 'dependency', 'dependency_by_path', 'event_handler_metadatum', 'event_handler', 'event_type', 'event', 'facility', 'facility_by_slug', 'facility_communication', 'facility_data_source', 'facility_group', 'facility_groups_linker', 'field_group', 'machine_user', 'main_service', 'main_service_by_facility_id_and_name', 'main_service_by_facility_id_and_usage_and_demand', 'main_service_by_original_id', 'meter_charge', 'meter_statement', 'meter_usage', 'metric_metadatum', 'program', 'program_by_project_type_id_and_name', 'project_component', 'project_field_by_project_id_and_field_id', 'project_field', 'project_type', 'project_type_by_name', 'project_watcher', 'project', 'report_execution', 'report_query', 'report_query_by_report_id_and_label', 'report', 'report_by_label', 'savings_event', 'savings_event_by_project_id_and_start_time_and_end_time', 'suggestion_control_event', 'suggestion_control_event_by_control_event_id', 'suggestion', 'timezone', 'unit_dimension', 'unit_group_dimension', 'unit_group', 'user', 'utility_account_statement_rollup', 'utility_account_statement', 'utility_account', 'utility_meter_statement_rollup', 'utility_meter_statement', 'utility_meter', 'utility_provider', 'utility_provider_by_name', 'vendor_user_machine_user', 'vendor_user_machine_user_by_machine_user_id', 'vendor_user', 'vendor_user_by_email', 'virtual_point_interval', 'derive_statement_date', 'groupings', 'groupings_with_facilities', 'profile', 'account_charge_by_node_id', 'account_statement_by_node_id', 'balancing_authority_by_node_id', 'building_area_type_by_node_id', 'building_area_by_node_id', 'component_by_node_id', 'control_event_log_by_node_id', 'control_event_state_by_node_id', 'control_event_by_node_id', 'data_point_by_node_id', 'data_source_by_node_id', 'dependency_by_node_id', 'event_handler_metadatum_by_node_id', 'event_handler_by_node_id', 'event_type_by_node_id', 'event_by_node_id', 'facility_by_node_id', 'facility_communication_by_node_id', 'facility_data_source_by_node_id', 'facility_group_by_node_id', 'facility_groups_linker_by_node_id', 'field_group_by_node_id', 'machine_user_by_node_id', 'main_service_by_node_id', 'meter_charge_by_node_id', 'meter_statement_by_node_id', 'meter_usage_by_node_id', 'metric_metadatum_by_node_id', 'program_by_node_id', 'project_component_by_node_id', 'project_field_by_node_id', 'project_type_by_node_id', 'project_watcher_by_node_id', 'project_by_node_id', 'report_execution_by_node_id', 'report_query_by_node_id', 'report_by_node_id', 'savings_event_by_node_id', 'suggestion_control_event_by_node_id', 'suggestion_by_node_id', 'timezone_by_node_id', 'unit_dimension_by_node_id', 'unit_group_dimension_by_node_id', 'unit_group_by_node_id', 'user_by_node_id', 'utility_account_statement_rollup_by_node_id', 'utility_account_statement_by_node_id', 'utility_account_by_node_id', 'utility_meter_statement_rollup_by_node_id', 'utility_meter_statement_by_node_id', 'utility_meter_by_node_id', 'utility_provider_by_node_id', 'vendor_user_machine_user_by_node_id', 'vendor_user_by_node_id', 'virtual_point_interval_by_node_id', 'platform_errors', 'source_data', 'source_labels', 'current_identity') + query = sgqlc.types.Field(sgqlc.types.non_null('Query'), graphql_name='query') + node = sgqlc.types.Field(Node, graphql_name='node', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + account_charges = sgqlc.types.Field(AccountChargesConnection, graphql_name='accountCharges', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(AccountChargesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(AccountChargeCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(AccountChargeFilter, graphql_name='filter', default=None)), +)) + ) + account_statement_histories = sgqlc.types.Field(AccountStatementHistoriesConnection, graphql_name='accountStatementHistories', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(AccountStatementHistoriesOrderBy)), graphql_name='orderBy', default=('NATURAL',))), + ('condition', sgqlc.types.Arg(AccountStatementHistoryCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(AccountStatementHistoryFilter, graphql_name='filter', default=None)), +)) + ) + account_statements = sgqlc.types.Field(AccountStatementsConnection, graphql_name='accountStatements', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(AccountStatementsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(AccountStatementCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(AccountStatementFilter, graphql_name='filter', default=None)), +)) + ) + balancing_authorities = sgqlc.types.Field(BalancingAuthoritiesConnection, graphql_name='balancingAuthorities', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(BalancingAuthoritiesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(BalancingAuthorityCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(BalancingAuthorityFilter, graphql_name='filter', default=None)), +)) + ) + building_area_types = sgqlc.types.Field(BuildingAreaTypesConnection, graphql_name='buildingAreaTypes', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(BuildingAreaTypesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(BuildingAreaTypeCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(BuildingAreaTypeFilter, graphql_name='filter', default=None)), +)) + ) + building_areas = sgqlc.types.Field(BuildingAreasConnection, graphql_name='buildingAreas', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(BuildingAreasOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(BuildingAreaCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(BuildingAreaFilter, graphql_name='filter', default=None)), +)) + ) + components = sgqlc.types.Field(ComponentsConnection, graphql_name='components', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ComponentsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ComponentCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ComponentFilter, graphql_name='filter', default=None)), +)) + ) + control_events = sgqlc.types.Field(ControlEventsConnection, graphql_name='controlEvents', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ControlEventsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ControlEventCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ControlEventFilter, graphql_name='filter', default=None)), +)) + ) + data_points = sgqlc.types.Field(DataPointsConnection, graphql_name='dataPoints', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(DataPointsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(DataPointCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(DataPointFilter, graphql_name='filter', default=None)), +)) + ) + data_sources = sgqlc.types.Field(DataSourcesConnection, graphql_name='dataSources', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(DataSourcesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(DataSourceCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(DataSourceFilter, graphql_name='filter', default=None)), +)) + ) + dependencies = sgqlc.types.Field(DependenciesConnection, graphql_name='dependencies', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(DependenciesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(DependencyCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(DependencyFilter, graphql_name='filter', default=None)), +)) + ) + facilities = sgqlc.types.Field(FacilitiesConnection, graphql_name='facilities', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(FacilitiesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(FacilityCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(FacilityFilter, graphql_name='filter', default=None)), +)) + ) + facility_communications = sgqlc.types.Field(FacilityCommunicationsConnection, graphql_name='facilityCommunications', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(FacilityCommunicationsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(FacilityCommunicationCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(FacilityCommunicationFilter, graphql_name='filter', default=None)), +)) + ) + facility_data_sources = sgqlc.types.Field(FacilityDataSourcesConnection, graphql_name='facilityDataSources', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(FacilityDataSourcesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(FacilityDataSourceCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(FacilityDataSourceFilter, graphql_name='filter', default=None)), +)) + ) + facility_groups = sgqlc.types.Field(FacilityGroupsConnection, graphql_name='facilityGroups', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(FacilityGroupsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(FacilityGroupCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(FacilityGroupFilter, graphql_name='filter', default=None)), +)) + ) + facility_groups_linkers = sgqlc.types.Field(FacilityGroupsLinkersConnection, graphql_name='facilityGroupsLinkers', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(FacilityGroupsLinkersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(FacilityGroupsLinkerCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(FacilityGroupsLinkerFilter, graphql_name='filter', default=None)), +)) + ) + field_groups = sgqlc.types.Field(FieldGroupsConnection, graphql_name='fieldGroups', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(FieldGroupsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(FieldGroupCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(FieldGroupFilter, graphql_name='filter', default=None)), +)) + ) + machine_users = sgqlc.types.Field(MachineUsersConnection, graphql_name='machineUsers', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(MachineUsersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(MachineUserCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(MachineUserFilter, graphql_name='filter', default=None)), +)) + ) + main_services = sgqlc.types.Field(MainServicesConnection, graphql_name='mainServices', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(MainServicesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(MainServiceCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(MainServiceFilter, graphql_name='filter', default=None)), +)) + ) + meter_charges = sgqlc.types.Field(MeterChargesConnection, graphql_name='meterCharges', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(MeterChargesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(MeterChargeCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(MeterChargeFilter, graphql_name='filter', default=None)), +)) + ) + meter_statement_histories = sgqlc.types.Field(MeterStatementHistoriesConnection, graphql_name='meterStatementHistories', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(MeterStatementHistoriesOrderBy)), graphql_name='orderBy', default=('NATURAL',))), + ('condition', sgqlc.types.Arg(MeterStatementHistoryCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(MeterStatementHistoryFilter, graphql_name='filter', default=None)), +)) + ) + meter_statements = sgqlc.types.Field(MeterStatementsConnection, graphql_name='meterStatements', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(MeterStatementsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(MeterStatementCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(MeterStatementFilter, graphql_name='filter', default=None)), +)) + ) + meter_usages = sgqlc.types.Field(MeterUsagesConnection, graphql_name='meterUsages', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(MeterUsagesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(MeterUsageCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(MeterUsageFilter, graphql_name='filter', default=None)), +)) + ) + metric_metadata = sgqlc.types.Field(MetricMetadataConnection, graphql_name='metricMetadata', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(MetricMetadataOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(MetricMetadatumCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(MetricMetadatumFilter, graphql_name='filter', default=None)), +)) + ) + platform_access_tokens = sgqlc.types.Field(PlatformAccessTokensConnection, graphql_name='platformAccessTokens', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(PlatformAccessTokensOrderBy)), graphql_name='orderBy', default=('NATURAL',))), + ('condition', sgqlc.types.Arg(PlatformAccessTokenCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(PlatformAccessTokenFilter, graphql_name='filter', default=None)), +)) + ) + programs = sgqlc.types.Field(ProgramsConnection, graphql_name='programs', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProgramsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ProgramCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ProgramFilter, graphql_name='filter', default=None)), +)) + ) + project_fields = sgqlc.types.Field(ProjectFieldsConnection, graphql_name='projectFields', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProjectFieldsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ProjectFieldCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ProjectFieldFilter, graphql_name='filter', default=None)), +)) + ) + project_types = sgqlc.types.Field(ProjectTypesConnection, graphql_name='projectTypes', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProjectTypesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ProjectTypeCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ProjectTypeFilter, graphql_name='filter', default=None)), +)) + ) + project_watchers = sgqlc.types.Field(ProjectWatchersConnection, graphql_name='projectWatchers', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProjectWatchersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ProjectWatcherCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ProjectWatcherFilter, graphql_name='filter', default=None)), +)) + ) + projects = sgqlc.types.Field(ProjectsConnection, graphql_name='projects', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProjectsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ProjectCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ProjectFilter, graphql_name='filter', default=None)), +)) + ) + report_executions = sgqlc.types.Field(ReportExecutionsConnection, graphql_name='reportExecutions', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ReportExecutionsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ReportExecutionCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ReportExecutionFilter, graphql_name='filter', default=None)), +)) + ) + report_queries = sgqlc.types.Field(ReportQueriesConnection, graphql_name='reportQueries', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ReportQueriesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ReportQueryCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ReportQueryFilter, graphql_name='filter', default=None)), +)) + ) + reports = sgqlc.types.Field(ReportsConnection, graphql_name='reports', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ReportsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ReportCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ReportFilter, graphql_name='filter', default=None)), +)) + ) + savings_events = sgqlc.types.Field(SavingsEventsConnection, graphql_name='savingsEvents', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(SavingsEventsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(SavingsEventCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(SavingsEventFilter, graphql_name='filter', default=None)), +)) + ) + suggestion_activity_logs = sgqlc.types.Field(SuggestionActivityLogsConnection, graphql_name='suggestionActivityLogs', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(SuggestionActivityLogsOrderBy)), graphql_name='orderBy', default=('NATURAL',))), + ('condition', sgqlc.types.Arg(SuggestionActivityLogCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(SuggestionActivityLogFilter, graphql_name='filter', default=None)), +)) + ) + suggestions = sgqlc.types.Field(SuggestionsConnection, graphql_name='suggestions', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(SuggestionsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(SuggestionCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(SuggestionFilter, graphql_name='filter', default=None)), +)) + ) + timezones = sgqlc.types.Field(TimezonesConnection, graphql_name='timezones', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(TimezonesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(TimezoneCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(TimezoneFilter, graphql_name='filter', default=None)), +)) + ) + unit_dimensions = sgqlc.types.Field(UnitDimensionsConnection, graphql_name='unitDimensions', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UnitDimensionsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UnitDimensionCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UnitDimensionFilter, graphql_name='filter', default=None)), +)) + ) + unit_group_dimensions = sgqlc.types.Field(UnitGroupDimensionsConnection, graphql_name='unitGroupDimensions', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UnitGroupDimensionsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UnitGroupDimensionCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UnitGroupDimensionFilter, graphql_name='filter', default=None)), +)) + ) + unit_groups = sgqlc.types.Field(UnitGroupsConnection, graphql_name='unitGroups', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UnitGroupsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UnitGroupCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UnitGroupFilter, graphql_name='filter', default=None)), +)) + ) + users = sgqlc.types.Field(UsersConnection, graphql_name='users', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UsersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UserCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UserFilter, graphql_name='filter', default=None)), +)) + ) + utility_account_statement_rollups = sgqlc.types.Field(UtilityAccountStatementRollupsConnection, graphql_name='utilityAccountStatementRollups', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityAccountStatementRollupsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityAccountStatementRollupCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityAccountStatementRollupFilter, graphql_name='filter', default=None)), +)) + ) + utility_account_statements = sgqlc.types.Field(UtilityAccountStatementsConnection, graphql_name='utilityAccountStatements', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityAccountStatementsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityAccountStatementCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityAccountStatementFilter, graphql_name='filter', default=None)), +)) + ) + utility_accounts = sgqlc.types.Field(UtilityAccountsConnection, graphql_name='utilityAccounts', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityAccountsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityAccountCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityAccountFilter, graphql_name='filter', default=None)), +)) + ) + utility_meter_statement_rollups = sgqlc.types.Field(UtilityMeterStatementRollupsConnection, graphql_name='utilityMeterStatementRollups', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMeterStatementRollupsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityMeterStatementRollupCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityMeterStatementRollupFilter, graphql_name='filter', default=None)), +)) + ) + utility_meter_statements = sgqlc.types.Field(UtilityMeterStatementsConnection, graphql_name='utilityMeterStatements', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMeterStatementsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityMeterStatementCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityMeterStatementFilter, graphql_name='filter', default=None)), +)) + ) + utility_meters = sgqlc.types.Field(UtilityMetersConnection, graphql_name='utilityMeters', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMetersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityMeterCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityMeterFilter, graphql_name='filter', default=None)), +)) + ) + utility_providers = sgqlc.types.Field(UtilityProvidersConnection, graphql_name='utilityProviders', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityProvidersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityProviderCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityProviderFilter, graphql_name='filter', default=None)), +)) + ) + vendor_users = sgqlc.types.Field(VendorUsersConnection, graphql_name='vendorUsers', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(VendorUsersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(VendorUserCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(VendorUserFilter, graphql_name='filter', default=None)), +)) + ) + virtual_point_intervals = sgqlc.types.Field(VirtualPointIntervalsConnection, graphql_name='virtualPointIntervals', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(VirtualPointIntervalsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(VirtualPointIntervalCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(VirtualPointIntervalFilter, graphql_name='filter', default=None)), +)) + ) + account_charge = sgqlc.types.Field(AccountCharge, graphql_name='accountCharge', args=sgqlc.types.ArgDict(( + ('id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='id', default=None)), +)) + ) + account_statement = sgqlc.types.Field(AccountStatement, graphql_name='accountStatement', args=sgqlc.types.ArgDict(( + ('id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='id', default=None)), +)) + ) + balancing_authority = sgqlc.types.Field(BalancingAuthority, graphql_name='balancingAuthority', args=sgqlc.types.ArgDict(( + ('slug', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='slug', default=None)), +)) + ) + building_area_type = sgqlc.types.Field(BuildingAreaType, graphql_name='buildingAreaType', args=sgqlc.types.ArgDict(( + ('type', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='type', default=None)), +)) + ) + building_area = sgqlc.types.Field(BuildingArea, graphql_name='buildingArea', args=sgqlc.types.ArgDict(( + ('id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='id', default=None)), +)) + ) + building_area_by_facility_id_and_label = sgqlc.types.Field(BuildingArea, graphql_name='buildingAreaByFacilityIdAndLabel', args=sgqlc.types.ArgDict(( + ('facility_id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='facilityId', default=None)), + ('label', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='label', default=None)), +)) + ) + component = sgqlc.types.Field(Component, graphql_name='component', args=sgqlc.types.ArgDict(( + ('id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='id', default=None)), +)) + ) + control_event_log = sgqlc.types.Field(ControlEventLog, graphql_name='controlEventLog', args=sgqlc.types.ArgDict(( + ('id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='id', default=None)), +)) + ) + control_event = sgqlc.types.Field(ControlEvent, graphql_name='controlEvent', args=sgqlc.types.ArgDict(( + ('id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='id', default=None)), +)) + ) + data_point_by_id = sgqlc.types.Field(DataPoint, graphql_name='dataPointById', args=sgqlc.types.ArgDict(( + ('id', sgqlc.types.Arg(sgqlc.types.non_null(BigInt), graphql_name='id', default=None)), +)) + ) + data_point = sgqlc.types.Field(DataPoint, graphql_name='dataPoint', args=sgqlc.types.ArgDict(( + ('data_source_name', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='dataSourceName', default=None)), + ('name', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='name', default=None)), +)) + ) + data_source = sgqlc.types.Field(DataSource, graphql_name='dataSource', args=sgqlc.types.ArgDict(( + ('name', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='name', default=None)), +)) + ) + dependency = sgqlc.types.Field(Dependency, graphql_name='dependency', args=sgqlc.types.ArgDict(( + ('id', sgqlc.types.Arg(sgqlc.types.non_null(BigInt), graphql_name='id', default=None)), +)) + ) + dependency_by_path = sgqlc.types.Field(Dependency, graphql_name='dependencyByPath', args=sgqlc.types.ArgDict(( + ('path', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='path', default=None)), +)) + ) + event_handler_metadatum = sgqlc.types.Field(EventHandlerMetadatum, graphql_name='eventHandlerMetadatum', args=sgqlc.types.ArgDict(( + ('type', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='type', default=None)), + ('handler', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='handler', default=None)), +)) + ) + event_handler = sgqlc.types.Field(EventHandler, graphql_name='eventHandler', args=sgqlc.types.ArgDict(( + ('handler', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='handler', default=None)), +)) + ) + event_type = sgqlc.types.Field(EventType, graphql_name='eventType', args=sgqlc.types.ArgDict(( + ('name', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='name', default=None)), +)) + ) + event = sgqlc.types.Field(Event, graphql_name='event', args=sgqlc.types.ArgDict(( + ('id', sgqlc.types.Arg(sgqlc.types.non_null(BigInt), graphql_name='id', default=None)), +)) + ) + facility = sgqlc.types.Field(Facility, graphql_name='facility', args=sgqlc.types.ArgDict(( + ('id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='id', default=None)), +)) + ) + facility_by_slug = sgqlc.types.Field(Facility, graphql_name='facilityBySlug', args=sgqlc.types.ArgDict(( + ('slug', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='slug', default=None)), +)) + ) + facility_communication = sgqlc.types.Field(FacilityCommunication, graphql_name='facilityCommunication', args=sgqlc.types.ArgDict(( + ('id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='id', default=None)), +)) + ) + facility_data_source = sgqlc.types.Field(FacilityDataSource, graphql_name='facilityDataSource', args=sgqlc.types.ArgDict(( + ('facility_id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='facilityId', default=None)), + ('data_source_name', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='dataSourceName', default=None)), +)) + ) + facility_group = sgqlc.types.Field(FacilityGroup, graphql_name='facilityGroup', args=sgqlc.types.ArgDict(( + ('id', sgqlc.types.Arg(sgqlc.types.non_null(BigInt), graphql_name='id', default=None)), +)) + ) + facility_groups_linker = sgqlc.types.Field(FacilityGroupsLinker, graphql_name='facilityGroupsLinker', args=sgqlc.types.ArgDict(( + ('facility_id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='facilityId', default=None)), + ('facility_grouping_id', sgqlc.types.Arg(sgqlc.types.non_null(BigInt), graphql_name='facilityGroupingId', default=None)), +)) + ) + field_group = sgqlc.types.Field(FieldGroup, graphql_name='fieldGroup', args=sgqlc.types.ArgDict(( + ('id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='id', default=None)), +)) + ) + machine_user = sgqlc.types.Field(MachineUser, graphql_name='machineUser', args=sgqlc.types.ArgDict(( + ('id', sgqlc.types.Arg(sgqlc.types.non_null(BigInt), graphql_name='id', default=None)), +)) + ) + main_service = sgqlc.types.Field(MainService, graphql_name='mainService', args=sgqlc.types.ArgDict(( + ('id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='id', default=None)), +)) + ) + main_service_by_facility_id_and_name = sgqlc.types.Field(MainService, graphql_name='mainServiceByFacilityIdAndName', args=sgqlc.types.ArgDict(( + ('facility_id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='facilityId', default=None)), + ('name', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='name', default=None)), +)) + ) + main_service_by_facility_id_and_usage_and_demand = sgqlc.types.Field(MainService, graphql_name='mainServiceByFacilityIdAndUsageAndDemand', args=sgqlc.types.ArgDict(( + ('facility_id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='facilityId', default=None)), + ('usage', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='usage', default=None)), + ('demand', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='demand', default=None)), +)) + ) + main_service_by_original_id = sgqlc.types.Field(MainService, graphql_name='mainServiceByOriginalId', args=sgqlc.types.ArgDict(( + ('original_id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='originalId', default=None)), +)) + ) + meter_charge = sgqlc.types.Field(MeterCharge, graphql_name='meterCharge', args=sgqlc.types.ArgDict(( + ('id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='id', default=None)), +)) + ) + meter_statement = sgqlc.types.Field(MeterStatement, graphql_name='meterStatement', args=sgqlc.types.ArgDict(( + ('id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='id', default=None)), +)) + ) + meter_usage = sgqlc.types.Field(MeterUsage, graphql_name='meterUsage', args=sgqlc.types.ArgDict(( + ('id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='id', default=None)), +)) + ) + metric_metadatum = sgqlc.types.Field(MetricMetadatum, graphql_name='metricMetadatum', args=sgqlc.types.ArgDict(( + ('label', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='label', default=None)), +)) + ) + program = sgqlc.types.Field(Program, graphql_name='program', args=sgqlc.types.ArgDict(( + ('id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='id', default=None)), +)) + ) + program_by_project_type_id_and_name = sgqlc.types.Field(Program, graphql_name='programByProjectTypeIdAndName', args=sgqlc.types.ArgDict(( + ('project_type_id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='projectTypeId', default=None)), + ('name', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='name', default=None)), +)) + ) + project_component = sgqlc.types.Field(ProjectComponent, graphql_name='projectComponent', args=sgqlc.types.ArgDict(( + ('project_id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='projectId', default=None)), + ('component_id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='componentId', default=None)), +)) + ) + project_field_by_project_id_and_field_id = sgqlc.types.Field(ProjectField, graphql_name='projectFieldByProjectIdAndFieldId', args=sgqlc.types.ArgDict(( + ('project_id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='projectId', default=None)), + ('field_id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='fieldId', default=None)), +)) + ) + project_field = sgqlc.types.Field(ProjectField, graphql_name='projectField', args=sgqlc.types.ArgDict(( + ('id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='id', default=None)), +)) + ) + project_type = sgqlc.types.Field(ProjectType, graphql_name='projectType', args=sgqlc.types.ArgDict(( + ('id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='id', default=None)), +)) + ) + project_type_by_name = sgqlc.types.Field(ProjectType, graphql_name='projectTypeByName', args=sgqlc.types.ArgDict(( + ('name', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='name', default=None)), +)) + ) + project_watcher = sgqlc.types.Field(ProjectWatcher, graphql_name='projectWatcher', args=sgqlc.types.ArgDict(( + ('project_id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='projectId', default=None)), + ('user_id', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='userId', default=None)), +)) + ) + project = sgqlc.types.Field(Project, graphql_name='project', args=sgqlc.types.ArgDict(( + ('id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='id', default=None)), +)) + ) + report_execution = sgqlc.types.Field('ReportExecution', graphql_name='reportExecution', args=sgqlc.types.ArgDict(( + ('id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='id', default=None)), +)) + ) + report_query = sgqlc.types.Field('ReportQuery', graphql_name='reportQuery', args=sgqlc.types.ArgDict(( + ('id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='id', default=None)), +)) + ) + report_query_by_report_id_and_label = sgqlc.types.Field('ReportQuery', graphql_name='reportQueryByReportIdAndLabel', args=sgqlc.types.ArgDict(( + ('report_id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='reportId', default=None)), + ('label', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='label', default=None)), +)) + ) + report = sgqlc.types.Field('Report', graphql_name='report', args=sgqlc.types.ArgDict(( + ('id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='id', default=None)), +)) + ) + report_by_label = sgqlc.types.Field('Report', graphql_name='reportByLabel', args=sgqlc.types.ArgDict(( + ('label', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='label', default=None)), +)) + ) + savings_event = sgqlc.types.Field('SavingsEvent', graphql_name='savingsEvent', args=sgqlc.types.ArgDict(( + ('id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='id', default=None)), +)) + ) + savings_event_by_project_id_and_start_time_and_end_time = sgqlc.types.Field('SavingsEvent', graphql_name='savingsEventByProjectIdAndStartTimeAndEndTime', args=sgqlc.types.ArgDict(( + ('project_id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='projectId', default=None)), + ('start_time', sgqlc.types.Arg(sgqlc.types.non_null(Datetime), graphql_name='startTime', default=None)), + ('end_time', sgqlc.types.Arg(sgqlc.types.non_null(Datetime), graphql_name='endTime', default=None)), +)) + ) + suggestion_control_event = sgqlc.types.Field('SuggestionControlEvent', graphql_name='suggestionControlEvent', args=sgqlc.types.ArgDict(( + ('suggestion_id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='suggestionId', default=None)), + ('control_event_id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='controlEventId', default=None)), +)) + ) + suggestion_control_event_by_control_event_id = sgqlc.types.Field('SuggestionControlEvent', graphql_name='suggestionControlEventByControlEventId', args=sgqlc.types.ArgDict(( + ('control_event_id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='controlEventId', default=None)), +)) + ) + suggestion = sgqlc.types.Field('Suggestion', graphql_name='suggestion', args=sgqlc.types.ArgDict(( + ('id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='id', default=None)), +)) + ) + timezone = sgqlc.types.Field('Timezone', graphql_name='timezone', args=sgqlc.types.ArgDict(( + ('name', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='name', default=None)), +)) + ) + unit_dimension = sgqlc.types.Field('UnitDimension', graphql_name='unitDimension', args=sgqlc.types.ArgDict(( + ('name', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='name', default=None)), +)) + ) + unit_group_dimension = sgqlc.types.Field('UnitGroupDimension', graphql_name='unitGroupDimension', args=sgqlc.types.ArgDict(( + ('unit_group', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='unitGroup', default=None)), + ('unit_dimension', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='unitDimension', default=None)), +)) + ) + unit_group = sgqlc.types.Field('UnitGroup', graphql_name='unitGroup', args=sgqlc.types.ArgDict(( + ('name', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='name', default=None)), +)) + ) + user = sgqlc.types.Field('User', graphql_name='user', args=sgqlc.types.ArgDict(( + ('id', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='id', default=None)), +)) + ) + utility_account_statement_rollup = sgqlc.types.Field('UtilityAccountStatementRollup', graphql_name='utilityAccountStatementRollup', args=sgqlc.types.ArgDict(( + ('account_statement_id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='accountStatementId', default=None)), +)) + ) + utility_account_statement = sgqlc.types.Field('UtilityAccountStatement', graphql_name='utilityAccountStatement', args=sgqlc.types.ArgDict(( + ('account_statement_id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='accountStatementId', default=None)), +)) + ) + utility_account = sgqlc.types.Field('UtilityAccount', graphql_name='utilityAccount', args=sgqlc.types.ArgDict(( + ('id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='id', default=None)), +)) + ) + utility_meter_statement_rollup = sgqlc.types.Field('UtilityMeterStatementRollup', graphql_name='utilityMeterStatementRollup', args=sgqlc.types.ArgDict(( + ('meter_statement_id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='meterStatementId', default=None)), +)) + ) + utility_meter_statement = sgqlc.types.Field('UtilityMeterStatement', graphql_name='utilityMeterStatement', args=sgqlc.types.ArgDict(( + ('meter_statement_id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='meterStatementId', default=None)), +)) + ) + utility_meter = sgqlc.types.Field('UtilityMeter', graphql_name='utilityMeter', args=sgqlc.types.ArgDict(( + ('id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='id', default=None)), +)) + ) + utility_provider = sgqlc.types.Field('UtilityProvider', graphql_name='utilityProvider', args=sgqlc.types.ArgDict(( + ('id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='id', default=None)), +)) + ) + utility_provider_by_name = sgqlc.types.Field('UtilityProvider', graphql_name='utilityProviderByName', args=sgqlc.types.ArgDict(( + ('name', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='name', default=None)), +)) + ) + vendor_user_machine_user = sgqlc.types.Field('VendorUserMachineUser', graphql_name='vendorUserMachineUser', args=sgqlc.types.ArgDict(( + ('vendor_user_id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='vendorUserId', default=None)), + ('machine_user_id', sgqlc.types.Arg(sgqlc.types.non_null(BigInt), graphql_name='machineUserId', default=None)), +)) + ) + vendor_user_machine_user_by_machine_user_id = sgqlc.types.Field('VendorUserMachineUser', graphql_name='vendorUserMachineUserByMachineUserId', args=sgqlc.types.ArgDict(( + ('machine_user_id', sgqlc.types.Arg(sgqlc.types.non_null(BigInt), graphql_name='machineUserId', default=None)), +)) + ) + vendor_user = sgqlc.types.Field('VendorUser', graphql_name='vendorUser', args=sgqlc.types.ArgDict(( + ('id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='id', default=None)), +)) + ) + vendor_user_by_email = sgqlc.types.Field('VendorUser', graphql_name='vendorUserByEmail', args=sgqlc.types.ArgDict(( + ('email', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='email', default=None)), +)) + ) + virtual_point_interval = sgqlc.types.Field('VirtualPointInterval', graphql_name='virtualPointInterval', args=sgqlc.types.ArgDict(( + ('parent_id', sgqlc.types.Arg(sgqlc.types.non_null(BigInt), graphql_name='parentId', default=None)), + ('child_id', sgqlc.types.Arg(sgqlc.types.non_null(BigInt), graphql_name='childId', default=None)), +)) + ) + derive_statement_date = sgqlc.types.Field(DerivedStatementDate, graphql_name='deriveStatementDate', args=sgqlc.types.ArgDict(( + ('interval_begin', sgqlc.types.Arg(sgqlc.types.non_null(Date), graphql_name='intervalBegin', default=None)), + ('interval_end', sgqlc.types.Arg(sgqlc.types.non_null(Date), graphql_name='intervalEnd', default=None)), +)) + ) + groupings = sgqlc.types.Field(GroupingsConnection, graphql_name='groupings', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('filter', sgqlc.types.Arg(JSONFilter, graphql_name='filter', default=None)), +)) + ) + groupings_with_facilities = sgqlc.types.Field(GroupingsWithFacilitiesConnection, graphql_name='groupingsWithFacilities', args=sgqlc.types.ArgDict(( + ('facility_fields', sgqlc.types.Arg(sgqlc.types.list_of(String), graphql_name='facilityFields', default=None)), + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('filter', sgqlc.types.Arg(JSONFilter, graphql_name='filter', default=None)), +)) + ) + profile = sgqlc.types.Field('User', graphql_name='profile') + account_charge_by_node_id = sgqlc.types.Field(AccountCharge, graphql_name='accountChargeByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + account_statement_by_node_id = sgqlc.types.Field(AccountStatement, graphql_name='accountStatementByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + balancing_authority_by_node_id = sgqlc.types.Field(BalancingAuthority, graphql_name='balancingAuthorityByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + building_area_type_by_node_id = sgqlc.types.Field(BuildingAreaType, graphql_name='buildingAreaTypeByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + building_area_by_node_id = sgqlc.types.Field(BuildingArea, graphql_name='buildingAreaByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + component_by_node_id = sgqlc.types.Field(Component, graphql_name='componentByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + control_event_log_by_node_id = sgqlc.types.Field(ControlEventLog, graphql_name='controlEventLogByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + control_event_state_by_node_id = sgqlc.types.Field(ControlEventState, graphql_name='controlEventStateByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + control_event_by_node_id = sgqlc.types.Field(ControlEvent, graphql_name='controlEventByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + data_point_by_node_id = sgqlc.types.Field(DataPoint, graphql_name='dataPointByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + data_source_by_node_id = sgqlc.types.Field(DataSource, graphql_name='dataSourceByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + dependency_by_node_id = sgqlc.types.Field(Dependency, graphql_name='dependencyByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + event_handler_metadatum_by_node_id = sgqlc.types.Field(EventHandlerMetadatum, graphql_name='eventHandlerMetadatumByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + event_handler_by_node_id = sgqlc.types.Field(EventHandler, graphql_name='eventHandlerByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + event_type_by_node_id = sgqlc.types.Field(EventType, graphql_name='eventTypeByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + event_by_node_id = sgqlc.types.Field(Event, graphql_name='eventByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + facility_by_node_id = sgqlc.types.Field(Facility, graphql_name='facilityByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + facility_communication_by_node_id = sgqlc.types.Field(FacilityCommunication, graphql_name='facilityCommunicationByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + facility_data_source_by_node_id = sgqlc.types.Field(FacilityDataSource, graphql_name='facilityDataSourceByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + facility_group_by_node_id = sgqlc.types.Field(FacilityGroup, graphql_name='facilityGroupByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + facility_groups_linker_by_node_id = sgqlc.types.Field(FacilityGroupsLinker, graphql_name='facilityGroupsLinkerByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + field_group_by_node_id = sgqlc.types.Field(FieldGroup, graphql_name='fieldGroupByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + machine_user_by_node_id = sgqlc.types.Field(MachineUser, graphql_name='machineUserByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + main_service_by_node_id = sgqlc.types.Field(MainService, graphql_name='mainServiceByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + meter_charge_by_node_id = sgqlc.types.Field(MeterCharge, graphql_name='meterChargeByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + meter_statement_by_node_id = sgqlc.types.Field(MeterStatement, graphql_name='meterStatementByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + meter_usage_by_node_id = sgqlc.types.Field(MeterUsage, graphql_name='meterUsageByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + metric_metadatum_by_node_id = sgqlc.types.Field(MetricMetadatum, graphql_name='metricMetadatumByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + program_by_node_id = sgqlc.types.Field(Program, graphql_name='programByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + project_component_by_node_id = sgqlc.types.Field(ProjectComponent, graphql_name='projectComponentByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + project_field_by_node_id = sgqlc.types.Field(ProjectField, graphql_name='projectFieldByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + project_type_by_node_id = sgqlc.types.Field(ProjectType, graphql_name='projectTypeByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + project_watcher_by_node_id = sgqlc.types.Field(ProjectWatcher, graphql_name='projectWatcherByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + project_by_node_id = sgqlc.types.Field(Project, graphql_name='projectByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + report_execution_by_node_id = sgqlc.types.Field('ReportExecution', graphql_name='reportExecutionByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + report_query_by_node_id = sgqlc.types.Field('ReportQuery', graphql_name='reportQueryByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + report_by_node_id = sgqlc.types.Field('Report', graphql_name='reportByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + savings_event_by_node_id = sgqlc.types.Field('SavingsEvent', graphql_name='savingsEventByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + suggestion_control_event_by_node_id = sgqlc.types.Field('SuggestionControlEvent', graphql_name='suggestionControlEventByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + suggestion_by_node_id = sgqlc.types.Field('Suggestion', graphql_name='suggestionByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + timezone_by_node_id = sgqlc.types.Field('Timezone', graphql_name='timezoneByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + unit_dimension_by_node_id = sgqlc.types.Field('UnitDimension', graphql_name='unitDimensionByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + unit_group_dimension_by_node_id = sgqlc.types.Field('UnitGroupDimension', graphql_name='unitGroupDimensionByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + unit_group_by_node_id = sgqlc.types.Field('UnitGroup', graphql_name='unitGroupByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + user_by_node_id = sgqlc.types.Field('User', graphql_name='userByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + utility_account_statement_rollup_by_node_id = sgqlc.types.Field('UtilityAccountStatementRollup', graphql_name='utilityAccountStatementRollupByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + utility_account_statement_by_node_id = sgqlc.types.Field('UtilityAccountStatement', graphql_name='utilityAccountStatementByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + utility_account_by_node_id = sgqlc.types.Field('UtilityAccount', graphql_name='utilityAccountByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + utility_meter_statement_rollup_by_node_id = sgqlc.types.Field('UtilityMeterStatementRollup', graphql_name='utilityMeterStatementRollupByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + utility_meter_statement_by_node_id = sgqlc.types.Field('UtilityMeterStatement', graphql_name='utilityMeterStatementByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + utility_meter_by_node_id = sgqlc.types.Field('UtilityMeter', graphql_name='utilityMeterByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + utility_provider_by_node_id = sgqlc.types.Field('UtilityProvider', graphql_name='utilityProviderByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + vendor_user_machine_user_by_node_id = sgqlc.types.Field('VendorUserMachineUser', graphql_name='vendorUserMachineUserByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + vendor_user_by_node_id = sgqlc.types.Field('VendorUser', graphql_name='vendorUserByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + virtual_point_interval_by_node_id = sgqlc.types.Field('VirtualPointInterval', graphql_name='virtualPointIntervalByNodeId', args=sgqlc.types.ArgDict(( + ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None)), +)) + ) + platform_errors = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(PlatformError))), graphql_name='platformErrors') + source_data = sgqlc.types.Field(MetricDataConnection, graphql_name='sourceData', args=sgqlc.types.ArgDict(( + ('source_id', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='sourceId', default=None)), + ('label', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='label', default=None)), + ('from_', sgqlc.types.Arg(String, graphql_name='from', default=None)), + ('to', sgqlc.types.Arg(String, graphql_name='to', default=None)), + ('aggregation', sgqlc.types.Arg(MetricDataAggregationMethod, graphql_name='aggregation', default=None)), + ('window', sgqlc.types.Arg(String, graphql_name='window', default='1hr')), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataOrderBy), graphql_name='orderBy', default='TIME_ASC')), +)) + ) + source_labels = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('SourceLabel'))), graphql_name='sourceLabels') + current_identity = sgqlc.types.Field(Identity, graphql_name='currentIdentity') + + +class Report(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('id', 'label', 'description', 'created_at', 'updated_at', 'json_schema', 'report_executions', 'report_queries') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + label = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='label') + description = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='description') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') + json_schema = sgqlc.types.Field(sgqlc.types.non_null(JSON), graphql_name='jsonSchema') + report_executions = sgqlc.types.Field(sgqlc.types.non_null(ReportExecutionsConnection), graphql_name='reportExecutions', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ReportExecutionsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ReportExecutionCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ReportExecutionFilter, graphql_name='filter', default=None)), +)) + ) + report_queries = sgqlc.types.Field(sgqlc.types.non_null(ReportQueriesConnection), graphql_name='reportQueries', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ReportQueriesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ReportQueryCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ReportQueryFilter, graphql_name='filter', default=None)), +)) + ) + + +class ReportExecution(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('id', 'report_id', 'status', 'file_path', 'errors', 'created_at', 'updated_at', 'actor', 'report', 'report_uri') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + report_id = sgqlc.types.Field(Int, graphql_name='reportId') + status = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='status') + file_path = sgqlc.types.Field(String, graphql_name='filePath') + errors = sgqlc.types.Field(JSON, graphql_name='errors') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') + actor = sgqlc.types.Field(Actor, graphql_name='actor') + report = sgqlc.types.Field(Report, graphql_name='report') + report_uri = sgqlc.types.Field(String, graphql_name='reportUri') + + +class ReportQuery(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('id', 'report_id', 'label', 'description', 'db_type', 'query', 'created_at', 'updated_at', 'report') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + report_id = sgqlc.types.Field(Int, graphql_name='reportId') + label = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='label') + description = sgqlc.types.Field(String, graphql_name='description') + db_type = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='dbType') + query = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='query') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') + report = sgqlc.types.Field(Report, graphql_name='report') + + +class SavingsEvent(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('id', 'project_id', 'start_time', 'end_time', 'metadata', 'created_at', 'updated_at', 'project', 'suggestions', 'savings_event_data', 'projects_by_suggestion_savings_event_id_and_project_id') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + project_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='projectId') + start_time = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='startTime') + end_time = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='endTime') + metadata = sgqlc.types.Field(JSON, graphql_name='metadata') + created_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='createdAt') + updated_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='updatedAt') + project = sgqlc.types.Field(Project, graphql_name='project') + suggestions = sgqlc.types.Field(sgqlc.types.non_null(SuggestionsConnection), graphql_name='suggestions', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(SuggestionsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(SuggestionCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(SuggestionFilter, graphql_name='filter', default=None)), +)) + ) + savings_event_data = sgqlc.types.Field(MetricDataConnection, graphql_name='savingsEventData', args=sgqlc.types.ArgDict(( + ('label', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='label', default=None)), + ('from_', sgqlc.types.Arg(String, graphql_name='from', default=None)), + ('to', sgqlc.types.Arg(String, graphql_name='to', default=None)), + ('aggregation', sgqlc.types.Arg(MetricDataAggregationMethod, graphql_name='aggregation', default=None)), + ('window', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='window', default='1 day')), + ('sampling_window', sgqlc.types.Arg(String, graphql_name='samplingWindow', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.non_null(MetricDataOrderBy), graphql_name='orderBy', default='TIME_ASC')), + ('unit', sgqlc.types.Arg(String, graphql_name='unit', default=None)), + ('unit_group', sgqlc.types.Arg(String, graphql_name='unitGroup', default=None)), +)) + ) + projects_by_suggestion_savings_event_id_and_project_id = sgqlc.types.Field(sgqlc.types.non_null(SavingsEventProjectsBySuggestionSavingsEventIdAndProjectIdManyToManyConnection), graphql_name='projectsBySuggestionSavingsEventIdAndProjectId', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProjectsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ProjectCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ProjectFilter, graphql_name='filter', default=None)), +)) + ) + + +class SourceLabel(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('source_id', 'label') + source_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='sourceId') + label = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='label') + + +class Suggestion(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('id', 'project_id', 'description', 'start_time', 'end_time', 'metadata', 'created_at', 'updated_at', 'withdrawn_at', 'acknowledgement_status', 'savings_event_id', 'project', 'savings_event', 'suggestion_activity_logs', 'acknowledgement_cutoff', 'control_events', 'control_type', 'facility', 'facility_id', 'facility_name', 'is_acknowledged', 'is_rejected', 'is_watching', 'is_withdrawn', 'project_name', 'project_type', 'state', 'available_acknowledgements', 'permissions') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + project_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='projectId') + description = sgqlc.types.Field(String, graphql_name='description') + start_time = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='startTime') + end_time = sgqlc.types.Field(Datetime, graphql_name='endTime') + metadata = sgqlc.types.Field(sgqlc.types.non_null(JSON), graphql_name='metadata') + created_at = sgqlc.types.Field(Datetime, graphql_name='createdAt') + updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') + withdrawn_at = sgqlc.types.Field(Datetime, graphql_name='withdrawnAt') + acknowledgement_status = sgqlc.types.Field(sgqlc.types.non_null(Acknowledgement), graphql_name='acknowledgementStatus') + savings_event_id = sgqlc.types.Field(Int, graphql_name='savingsEventId') + project = sgqlc.types.Field(Project, graphql_name='project') + savings_event = sgqlc.types.Field(SavingsEvent, graphql_name='savingsEvent') + suggestion_activity_logs = sgqlc.types.Field(sgqlc.types.non_null(SuggestionActivityLogsConnection), graphql_name='suggestionActivityLogs', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(SuggestionActivityLogsOrderBy)), graphql_name='orderBy', default=('NATURAL',))), + ('condition', sgqlc.types.Arg(SuggestionActivityLogCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(SuggestionActivityLogFilter, graphql_name='filter', default=None)), +)) + ) + acknowledgement_cutoff = sgqlc.types.Field(Datetime, graphql_name='acknowledgementCutoff') + control_events = sgqlc.types.Field(sgqlc.types.non_null(ControlEventsConnection), graphql_name='controlEvents', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('filter', sgqlc.types.Arg(ControlEventFilter, graphql_name='filter', default=None)), +)) + ) + control_type = sgqlc.types.Field(ControlType, graphql_name='controlType') + facility = sgqlc.types.Field(Facility, graphql_name='facility') + facility_id = sgqlc.types.Field(Int, graphql_name='facilityId') + facility_name = sgqlc.types.Field(String, graphql_name='facilityName') + is_acknowledged = sgqlc.types.Field(Boolean, graphql_name='isAcknowledged') + is_rejected = sgqlc.types.Field(Boolean, graphql_name='isRejected') + is_watching = sgqlc.types.Field(Boolean, graphql_name='isWatching') + is_withdrawn = sgqlc.types.Field(Boolean, graphql_name='isWithdrawn') + project_name = sgqlc.types.Field(String, graphql_name='projectName') + project_type = sgqlc.types.Field(String, graphql_name='projectType') + state = sgqlc.types.Field(SuggestionState, graphql_name='state') + available_acknowledgements = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Acknowledgement))), graphql_name='availableAcknowledgements') + permissions = sgqlc.types.Field(SuggestionPermissions, graphql_name='permissions') + + +class SuggestionControlEvent(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('suggestion_id', 'control_event_id', 'suggestion', 'control_event') + suggestion_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='suggestionId') + control_event_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='controlEventId') + suggestion = sgqlc.types.Field(Suggestion, graphql_name='suggestion') + control_event = sgqlc.types.Field(ControlEvent, graphql_name='controlEvent') + + +class Timezone(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('name', 'abbreviation', 'utc_offset', 'is_dst', 'facilities_by_timezone_name', 'unit_groups_by_facility_timezone_name_and_unit_group') + name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') + abbreviation = sgqlc.types.Field(String, graphql_name='abbreviation') + utc_offset = sgqlc.types.Field(Interval, graphql_name='utcOffset') + is_dst = sgqlc.types.Field(Boolean, graphql_name='isDst') + facilities_by_timezone_name = sgqlc.types.Field(sgqlc.types.non_null(FacilitiesConnection), graphql_name='facilitiesByTimezoneName', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(FacilitiesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(FacilityCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(FacilityFilter, graphql_name='filter', default=None)), +)) + ) + unit_groups_by_facility_timezone_name_and_unit_group = sgqlc.types.Field(sgqlc.types.non_null(TimezoneUnitGroupsByFacilityTimezoneNameAndUnitGroupManyToManyConnection), graphql_name='unitGroupsByFacilityTimezoneNameAndUnitGroup', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UnitGroupsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UnitGroupCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UnitGroupFilter, graphql_name='filter', default=None)), +)) + ) + + +class UnitDimension(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('name', 'unit_group_dimensions_by_unit_dimension', 'active_mappings', 'unit_groups_by_unit_group_dimension_unit_dimension_and_unit_group') + name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') + unit_group_dimensions_by_unit_dimension = sgqlc.types.Field(sgqlc.types.non_null(UnitGroupDimensionsConnection), graphql_name='unitGroupDimensionsByUnitDimension', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UnitGroupDimensionsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UnitGroupDimensionCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UnitGroupDimensionFilter, graphql_name='filter', default=None)), +)) + ) + active_mappings = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='activeMappings') + unit_groups_by_unit_group_dimension_unit_dimension_and_unit_group = sgqlc.types.Field(sgqlc.types.non_null(UnitDimensionUnitGroupsByUnitGroupDimensionUnitDimensionAndUnitGroupManyToManyConnection), graphql_name='unitGroupsByUnitGroupDimensionUnitDimensionAndUnitGroup', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UnitGroupsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UnitGroupCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UnitGroupFilter, graphql_name='filter', default=None)), +)) + ) + + +class UnitGroup(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('name', 'facilities_by_unit_group', 'unit_group_dimensions_by_unit_group', 'timezones_by_facility_unit_group_and_timezone_name', 'unit_dimensions_by_unit_group_dimension_unit_group_and_unit_dimension') + name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') + facilities_by_unit_group = sgqlc.types.Field(sgqlc.types.non_null(FacilitiesConnection), graphql_name='facilitiesByUnitGroup', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(FacilitiesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(FacilityCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(FacilityFilter, graphql_name='filter', default=None)), +)) + ) + unit_group_dimensions_by_unit_group = sgqlc.types.Field(sgqlc.types.non_null(UnitGroupDimensionsConnection), graphql_name='unitGroupDimensionsByUnitGroup', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UnitGroupDimensionsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UnitGroupDimensionCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UnitGroupDimensionFilter, graphql_name='filter', default=None)), +)) + ) + timezones_by_facility_unit_group_and_timezone_name = sgqlc.types.Field(sgqlc.types.non_null(UnitGroupTimezonesByFacilityUnitGroupAndTimezoneNameManyToManyConnection), graphql_name='timezonesByFacilityUnitGroupAndTimezoneName', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(TimezonesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(TimezoneCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(TimezoneFilter, graphql_name='filter', default=None)), +)) + ) + unit_dimensions_by_unit_group_dimension_unit_group_and_unit_dimension = sgqlc.types.Field(sgqlc.types.non_null(UnitGroupUnitDimensionsByUnitGroupDimensionUnitGroupAndUnitDimensionManyToManyConnection), graphql_name='unitDimensionsByUnitGroupDimensionUnitGroupAndUnitDimension', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UnitDimensionsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UnitDimensionCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UnitDimensionFilter, graphql_name='filter', default=None)), +)) + ) + + +class UnitGroupDimension(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('unit_group', 'unit_dimension', 'unit', 'created_at', 'updated_at', 'unit_group_by_unit_group', 'unit_dimension_by_unit_dimension') + unit_group = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='unitGroup') + unit_dimension = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='unitDimension') + unit = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='unit') + created_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='createdAt') + updated_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='updatedAt') + unit_group_by_unit_group = sgqlc.types.Field(UnitGroup, graphql_name='unitGroupByUnitGroup') + unit_dimension_by_unit_dimension = sgqlc.types.Field(UnitDimension, graphql_name='unitDimensionByUnitDimension') + + +class User(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('id', 'first_name', 'last_name', 'email', 'phone_number', 'created_at', 'updated_at', 'phone_number_validated', 'preferred_locale', 'project_watchers', 'access_tokens', 'favorite_facilities', 'permissions', 'projects') + id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='id') + first_name = sgqlc.types.Field(String, graphql_name='firstName') + last_name = sgqlc.types.Field(String, graphql_name='lastName') + email = sgqlc.types.Field(String, graphql_name='email') + phone_number = sgqlc.types.Field(String, graphql_name='phoneNumber') + created_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='createdAt') + updated_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='updatedAt') + phone_number_validated = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='phoneNumberValidated') + preferred_locale = sgqlc.types.Field(String, graphql_name='preferredLocale') + project_watchers = sgqlc.types.Field(sgqlc.types.non_null(ProjectWatchersConnection), graphql_name='projectWatchers', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProjectWatchersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ProjectWatcherCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ProjectWatcherFilter, graphql_name='filter', default=None)), +)) + ) + access_tokens = sgqlc.types.Field(sgqlc.types.non_null(PlatformAccessTokensConnection), graphql_name='accessTokens', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('filter', sgqlc.types.Arg(PlatformAccessTokenFilter, graphql_name='filter', default=None)), +)) + ) + favorite_facilities = sgqlc.types.Field(sgqlc.types.non_null(FacilitiesConnection), graphql_name='favoriteFacilities', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('filter', sgqlc.types.Arg(FacilityFilter, graphql_name='filter', default=None)), +)) + ) + permissions = sgqlc.types.Field(UserPermissions, graphql_name='permissions') + projects = sgqlc.types.Field(sgqlc.types.non_null(UserProjectsManyToManyConnection), graphql_name='projects', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProjectsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(ProjectCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(ProjectFilter, graphql_name='filter', default=None)), +)) + ) + + +class UserIdentity(sgqlc.types.Type, Identity): + __schema__ = nionic_schema + __field_names__ = ('user',) + user = sgqlc.types.Field(sgqlc.types.non_null(User), graphql_name='user') + + +class UserSubscription(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('id', 'type', 'action', 'scope', 'channels', 'user_id', 'created_at', 'updated_at', 'event_type_by_type', 'user') + id = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='id') + type = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='type') + action = sgqlc.types.Field(String, graphql_name='action') + scope = sgqlc.types.Field(sgqlc.types.non_null(JSON), graphql_name='scope') + channels = sgqlc.types.Field(sgqlc.types.non_null(JSON), graphql_name='channels') + user_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='userId') + created_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='createdAt') + updated_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='updatedAt') + event_type_by_type = sgqlc.types.Field(EventType, graphql_name='eventTypeByType') + user = sgqlc.types.Field(User, graphql_name='user') + + +class UtilityAccount(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('id', 'integration', 'integration_account_key', 'account_number', 'name', 'metadata', 'utility_provider_id', 'created_at', 'updated_at', 'deleted_at', 'utility_provider', 'account_statements', 'utility_meters', 'utility_account_statement_rollups', 'utility_account_statements', 'utility_meter_statement_rollups', 'utility_meter_statements', 'display_name', 'missing_statements', 'facilities_by_utility_meter_utility_account_id_and_facility_id', 'facilities_by_utility_meter_statement_rollup_utility_account_id_and_facility_id', 'utility_meters_by_utility_meter_statement_rollup_utility_account_id_and_utility_meter_id', 'facilities_by_utility_meter_statement_utility_account_id_and_facility_id', 'utility_meters_by_utility_meter_statement_utility_account_id_and_utility_meter_id', 'account_statements_by_utility_meter_statement_utility_account_id_and_account_statement_id') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + integration = sgqlc.types.Field(sgqlc.types.non_null(UtilityIntegration), graphql_name='integration') + integration_account_key = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='integrationAccountKey') + account_number = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='accountNumber') + name = sgqlc.types.Field(String, graphql_name='name') + metadata = sgqlc.types.Field(sgqlc.types.non_null(JSON), graphql_name='metadata') + utility_provider_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='utilityProviderId') + created_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='createdAt') + updated_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='updatedAt') + deleted_at = sgqlc.types.Field(Datetime, graphql_name='deletedAt') + utility_provider = sgqlc.types.Field('UtilityProvider', graphql_name='utilityProvider') + account_statements = sgqlc.types.Field(sgqlc.types.non_null(AccountStatementsConnection), graphql_name='accountStatements', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(AccountStatementsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(AccountStatementCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(AccountStatementFilter, graphql_name='filter', default=None)), +)) + ) + utility_meters = sgqlc.types.Field(sgqlc.types.non_null(UtilityMetersConnection), graphql_name='utilityMeters', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMetersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityMeterCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityMeterFilter, graphql_name='filter', default=None)), +)) + ) + utility_account_statement_rollups = sgqlc.types.Field(sgqlc.types.non_null(UtilityAccountStatementRollupsConnection), graphql_name='utilityAccountStatementRollups', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityAccountStatementRollupsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityAccountStatementRollupCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityAccountStatementRollupFilter, graphql_name='filter', default=None)), +)) + ) + utility_account_statements = sgqlc.types.Field(sgqlc.types.non_null(UtilityAccountStatementsConnection), graphql_name='utilityAccountStatements', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityAccountStatementsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityAccountStatementCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityAccountStatementFilter, graphql_name='filter', default=None)), +)) + ) + utility_meter_statement_rollups = sgqlc.types.Field(sgqlc.types.non_null(UtilityMeterStatementRollupsConnection), graphql_name='utilityMeterStatementRollups', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMeterStatementRollupsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityMeterStatementRollupCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityMeterStatementRollupFilter, graphql_name='filter', default=None)), +)) + ) + utility_meter_statements = sgqlc.types.Field(sgqlc.types.non_null(UtilityMeterStatementsConnection), graphql_name='utilityMeterStatements', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMeterStatementsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityMeterStatementCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityMeterStatementFilter, graphql_name='filter', default=None)), +)) + ) + display_name = sgqlc.types.Field(String, graphql_name='displayName') + missing_statements = sgqlc.types.Field(sgqlc.types.non_null(AccountMissingStatementsConnection), graphql_name='missingStatements', args=sgqlc.types.ArgDict(( + ('facility_id', sgqlc.types.Arg(Int, graphql_name='facilityId', default=None)), + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('filter', sgqlc.types.Arg(AccountMissingStatementFilter, graphql_name='filter', default=None)), +)) + ) + facilities_by_utility_meter_utility_account_id_and_facility_id = sgqlc.types.Field(sgqlc.types.non_null(UtilityAccountFacilitiesByUtilityMeterUtilityAccountIdAndFacilityIdManyToManyConnection), graphql_name='facilitiesByUtilityMeterUtilityAccountIdAndFacilityId', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(FacilitiesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(FacilityCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(FacilityFilter, graphql_name='filter', default=None)), +)) + ) + facilities_by_utility_meter_statement_rollup_utility_account_id_and_facility_id = sgqlc.types.Field(sgqlc.types.non_null(UtilityAccountFacilitiesByUtilityMeterStatementRollupUtilityAccountIdAndFacilityIdManyToManyConnection), graphql_name='facilitiesByUtilityMeterStatementRollupUtilityAccountIdAndFacilityId', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(FacilitiesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(FacilityCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(FacilityFilter, graphql_name='filter', default=None)), +)) + ) + utility_meters_by_utility_meter_statement_rollup_utility_account_id_and_utility_meter_id = sgqlc.types.Field(sgqlc.types.non_null(UtilityAccountUtilityMetersByUtilityMeterStatementRollupUtilityAccountIdAndUtilityMeterIdManyToManyConnection), graphql_name='utilityMetersByUtilityMeterStatementRollupUtilityAccountIdAndUtilityMeterId', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMetersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityMeterCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityMeterFilter, graphql_name='filter', default=None)), +)) + ) + facilities_by_utility_meter_statement_utility_account_id_and_facility_id = sgqlc.types.Field(sgqlc.types.non_null(UtilityAccountFacilitiesByUtilityMeterStatementUtilityAccountIdAndFacilityIdManyToManyConnection), graphql_name='facilitiesByUtilityMeterStatementUtilityAccountIdAndFacilityId', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(FacilitiesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(FacilityCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(FacilityFilter, graphql_name='filter', default=None)), +)) + ) + utility_meters_by_utility_meter_statement_utility_account_id_and_utility_meter_id = sgqlc.types.Field(sgqlc.types.non_null(UtilityAccountUtilityMetersByUtilityMeterStatementUtilityAccountIdAndUtilityMeterIdManyToManyConnection), graphql_name='utilityMetersByUtilityMeterStatementUtilityAccountIdAndUtilityMeterId', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMetersOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityMeterCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityMeterFilter, graphql_name='filter', default=None)), +)) + ) + account_statements_by_utility_meter_statement_utility_account_id_and_account_statement_id = sgqlc.types.Field(sgqlc.types.non_null(UtilityAccountAccountStatementsByUtilityMeterStatementUtilityAccountIdAndAccountStatementIdManyToManyConnection), graphql_name='accountStatementsByUtilityMeterStatementUtilityAccountIdAndAccountStatementId', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(AccountStatementsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(AccountStatementCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(AccountStatementFilter, graphql_name='filter', default=None)), +)) + ) + + +class UtilityAccountStatement(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('utility_account_id', 'account_label', 'provider', 'account_statement_id', 'statement_year', 'statement_month', 'interval_start', 'interval_end', 'currency_code', 'bill_arrival_date', 'utility_account', 'account_statement') + utility_account_id = sgqlc.types.Field(Int, graphql_name='utilityAccountId') + account_label = sgqlc.types.Field(String, graphql_name='accountLabel') + provider = sgqlc.types.Field(String, graphql_name='provider') + account_statement_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='accountStatementId') + statement_year = sgqlc.types.Field(Int, graphql_name='statementYear') + statement_month = sgqlc.types.Field(Int, graphql_name='statementMonth') + interval_start = sgqlc.types.Field(Date, graphql_name='intervalStart') + interval_end = sgqlc.types.Field(Date, graphql_name='intervalEnd') + currency_code = sgqlc.types.Field(String, graphql_name='currencyCode') + bill_arrival_date = sgqlc.types.Field(Datetime, graphql_name='billArrivalDate') + utility_account = sgqlc.types.Field(UtilityAccount, graphql_name='utilityAccount') + account_statement = sgqlc.types.Field(AccountStatement, graphql_name='accountStatement') + + +class UtilityAccountStatementRollup(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('utility_account_id', 'account_label', 'provider', 'account_statement_id', 'statement_year', 'statement_month', 'interval_start', 'interval_end', 'bill_arrival_date', 'bill_cost', 'bill_usage_cost', 'bill_demand_cost', 'fees', 'taxes', 'credits', 'percent_change', 'currency_code', 'utility_account', 'account_statement', 'service_types') + utility_account_id = sgqlc.types.Field(Int, graphql_name='utilityAccountId') + account_label = sgqlc.types.Field(String, graphql_name='accountLabel') + provider = sgqlc.types.Field(String, graphql_name='provider') + account_statement_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='accountStatementId') + statement_year = sgqlc.types.Field(Int, graphql_name='statementYear') + statement_month = sgqlc.types.Field(Int, graphql_name='statementMonth') + interval_start = sgqlc.types.Field(Date, graphql_name='intervalStart') + interval_end = sgqlc.types.Field(Date, graphql_name='intervalEnd') + bill_arrival_date = sgqlc.types.Field(Datetime, graphql_name='billArrivalDate') + bill_cost = sgqlc.types.Field(Float, graphql_name='billCost') + bill_usage_cost = sgqlc.types.Field(Float, graphql_name='billUsageCost') + bill_demand_cost = sgqlc.types.Field(Float, graphql_name='billDemandCost') + fees = sgqlc.types.Field(Float, graphql_name='fees') + taxes = sgqlc.types.Field(Float, graphql_name='taxes') + credits = sgqlc.types.Field(Float, graphql_name='credits') + percent_change = sgqlc.types.Field(Float, graphql_name='percentChange') + currency_code = sgqlc.types.Field(String, graphql_name='currencyCode') + utility_account = sgqlc.types.Field(UtilityAccount, graphql_name='utilityAccount') + account_statement = sgqlc.types.Field(AccountStatement, graphql_name='accountStatement') + service_types = sgqlc.types.Field(sgqlc.types.list_of(UtilityMeterServiceType), graphql_name='serviceTypes') + + +class UtilityMeter(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('id', 'utility_account_id', 'service_type', 'integration_meter_key', 'facility_id', 'name', 'meter_number', 'active_start', 'active_end', 'metadata', 'created_at', 'updated_at', 'override_at', 'exclude_usage', 'default_demand_units', 'default_usage_units', 'utility_account', 'facility', 'meter_statements', 'utility_meter_statement_rollups', 'utility_meter_statements', 'deleted_at', 'missing_statements', 'account_statements_by_meter_statement_utility_meter_id_and_account_statement_id', 'facilities_by_utility_meter_statement_rollup_utility_meter_id_and_facility_id', 'utility_accounts_by_utility_meter_statement_rollup_utility_meter_id_and_utility_account_id', 'facilities_by_utility_meter_statement_utility_meter_id_and_facility_id', 'utility_accounts_by_utility_meter_statement_utility_meter_id_and_utility_account_id', 'account_statements_by_utility_meter_statement_utility_meter_id_and_account_statement_id') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + utility_account_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='utilityAccountId') + service_type = sgqlc.types.Field(sgqlc.types.non_null(UtilityMeterServiceType), graphql_name='serviceType') + integration_meter_key = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='integrationMeterKey') + facility_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='facilityId') + name = sgqlc.types.Field(String, graphql_name='name') + meter_number = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='meterNumber') + active_start = sgqlc.types.Field(sgqlc.types.non_null(Date), graphql_name='activeStart') + active_end = sgqlc.types.Field(Date, graphql_name='activeEnd') + metadata = sgqlc.types.Field(sgqlc.types.non_null(JSON), graphql_name='metadata') + created_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='createdAt') + updated_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='updatedAt') + override_at = sgqlc.types.Field(Datetime, graphql_name='overrideAt') + exclude_usage = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='excludeUsage') + default_demand_units = sgqlc.types.Field(String, graphql_name='defaultDemandUnits') + default_usage_units = sgqlc.types.Field(String, graphql_name='defaultUsageUnits') + utility_account = sgqlc.types.Field(UtilityAccount, graphql_name='utilityAccount') + facility = sgqlc.types.Field(Facility, graphql_name='facility') + meter_statements = sgqlc.types.Field(sgqlc.types.non_null(MeterStatementsConnection), graphql_name='meterStatements', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(MeterStatementsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(MeterStatementCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(MeterStatementFilter, graphql_name='filter', default=None)), +)) + ) + utility_meter_statement_rollups = sgqlc.types.Field(sgqlc.types.non_null(UtilityMeterStatementRollupsConnection), graphql_name='utilityMeterStatementRollups', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMeterStatementRollupsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityMeterStatementRollupCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityMeterStatementRollupFilter, graphql_name='filter', default=None)), +)) + ) + utility_meter_statements = sgqlc.types.Field(sgqlc.types.non_null(UtilityMeterStatementsConnection), graphql_name='utilityMeterStatements', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityMeterStatementsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityMeterStatementCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityMeterStatementFilter, graphql_name='filter', default=None)), +)) + ) + deleted_at = sgqlc.types.Field(Datetime, graphql_name='deletedAt') + missing_statements = sgqlc.types.Field(sgqlc.types.non_null(UtilityMetersMissingStatementsConnection), graphql_name='missingStatements', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('filter', sgqlc.types.Arg(UtilityMetersMissingStatementsRecordFilter, graphql_name='filter', default=None)), +)) + ) + account_statements_by_meter_statement_utility_meter_id_and_account_statement_id = sgqlc.types.Field(sgqlc.types.non_null(UtilityMeterAccountStatementsByMeterStatementUtilityMeterIdAndAccountStatementIdManyToManyConnection), graphql_name='accountStatementsByMeterStatementUtilityMeterIdAndAccountStatementId', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(AccountStatementsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(AccountStatementCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(AccountStatementFilter, graphql_name='filter', default=None)), +)) + ) + facilities_by_utility_meter_statement_rollup_utility_meter_id_and_facility_id = sgqlc.types.Field(sgqlc.types.non_null(UtilityMeterFacilitiesByUtilityMeterStatementRollupUtilityMeterIdAndFacilityIdManyToManyConnection), graphql_name='facilitiesByUtilityMeterStatementRollupUtilityMeterIdAndFacilityId', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(FacilitiesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(FacilityCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(FacilityFilter, graphql_name='filter', default=None)), +)) + ) + utility_accounts_by_utility_meter_statement_rollup_utility_meter_id_and_utility_account_id = sgqlc.types.Field(sgqlc.types.non_null(UtilityMeterUtilityAccountsByUtilityMeterStatementRollupUtilityMeterIdAndUtilityAccountIdManyToManyConnection), graphql_name='utilityAccountsByUtilityMeterStatementRollupUtilityMeterIdAndUtilityAccountId', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityAccountsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityAccountCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityAccountFilter, graphql_name='filter', default=None)), +)) + ) + facilities_by_utility_meter_statement_utility_meter_id_and_facility_id = sgqlc.types.Field(sgqlc.types.non_null(UtilityMeterFacilitiesByUtilityMeterStatementUtilityMeterIdAndFacilityIdManyToManyConnection), graphql_name='facilitiesByUtilityMeterStatementUtilityMeterIdAndFacilityId', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(FacilitiesOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(FacilityCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(FacilityFilter, graphql_name='filter', default=None)), +)) + ) + utility_accounts_by_utility_meter_statement_utility_meter_id_and_utility_account_id = sgqlc.types.Field(sgqlc.types.non_null(UtilityMeterUtilityAccountsByUtilityMeterStatementUtilityMeterIdAndUtilityAccountIdManyToManyConnection), graphql_name='utilityAccountsByUtilityMeterStatementUtilityMeterIdAndUtilityAccountId', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityAccountsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityAccountCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityAccountFilter, graphql_name='filter', default=None)), +)) + ) + account_statements_by_utility_meter_statement_utility_meter_id_and_account_statement_id = sgqlc.types.Field(sgqlc.types.non_null(UtilityMeterAccountStatementsByUtilityMeterStatementUtilityMeterIdAndAccountStatementIdManyToManyConnection), graphql_name='accountStatementsByUtilityMeterStatementUtilityMeterIdAndAccountStatementId', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(AccountStatementsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(AccountStatementCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(AccountStatementFilter, graphql_name='filter', default=None)), +)) + ) + + +class UtilityMeterStatement(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'utility_account_id', 'utility_meter_id', 'meter_end_date_set', 'service_type', 'exclude_usage', 'usage_units', 'demand_units', 'meter_statement_id', 'is_validated', 'meter_label', 'provider', 'account_label', 'bill_arrival_date', 'start_date', 'end_date', 'statement_year', 'statement_month', 'currency_code', 'days_in_bill', 'account_statement_id', 'facility', 'utility_account', 'utility_meter', 'meter_statement', 'account_statement', 'bill_cost', 'bill_demand', 'bill_demand_cost', 'bill_usage', 'bill_usage_cost', 'credits', 'fees', 'taxes') + facility_id = sgqlc.types.Field(Int, graphql_name='facilityId') + utility_account_id = sgqlc.types.Field(Int, graphql_name='utilityAccountId') + utility_meter_id = sgqlc.types.Field(Int, graphql_name='utilityMeterId') + meter_end_date_set = sgqlc.types.Field(Boolean, graphql_name='meterEndDateSet') + service_type = sgqlc.types.Field(UtilityMeterServiceType, graphql_name='serviceType') + exclude_usage = sgqlc.types.Field(Boolean, graphql_name='excludeUsage') + usage_units = sgqlc.types.Field(String, graphql_name='usageUnits') + demand_units = sgqlc.types.Field(String, graphql_name='demandUnits') + meter_statement_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='meterStatementId') + is_validated = sgqlc.types.Field(Boolean, graphql_name='isValidated') + meter_label = sgqlc.types.Field(String, graphql_name='meterLabel') + provider = sgqlc.types.Field(String, graphql_name='provider') + account_label = sgqlc.types.Field(String, graphql_name='accountLabel') + bill_arrival_date = sgqlc.types.Field(Datetime, graphql_name='billArrivalDate') + start_date = sgqlc.types.Field(Date, graphql_name='startDate') + end_date = sgqlc.types.Field(Date, graphql_name='endDate') + statement_year = sgqlc.types.Field(Int, graphql_name='statementYear') + statement_month = sgqlc.types.Field(Int, graphql_name='statementMonth') + currency_code = sgqlc.types.Field(String, graphql_name='currencyCode') + days_in_bill = sgqlc.types.Field(Int, graphql_name='daysInBill') + account_statement_id = sgqlc.types.Field(Int, graphql_name='accountStatementId') + facility = sgqlc.types.Field(Facility, graphql_name='facility') + utility_account = sgqlc.types.Field(UtilityAccount, graphql_name='utilityAccount') + utility_meter = sgqlc.types.Field(UtilityMeter, graphql_name='utilityMeter') + meter_statement = sgqlc.types.Field(MeterStatement, graphql_name='meterStatement') + account_statement = sgqlc.types.Field(AccountStatement, graphql_name='accountStatement') + bill_cost = sgqlc.types.Field(Float, graphql_name='billCost') + bill_demand = sgqlc.types.Field(Float, graphql_name='billDemand') + bill_demand_cost = sgqlc.types.Field(Float, graphql_name='billDemandCost') + bill_usage = sgqlc.types.Field(Float, graphql_name='billUsage') + bill_usage_cost = sgqlc.types.Field(Float, graphql_name='billUsageCost') + credits = sgqlc.types.Field(Float, graphql_name='credits') + fees = sgqlc.types.Field(Float, graphql_name='fees') + taxes = sgqlc.types.Field(Float, graphql_name='taxes') + + +class UtilityMeterStatementRollup(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('facility_id', 'utility_account_id', 'utility_meter_id', 'meter_end_date_set', 'meter_statement_id', 'is_validated', 'service_type', 'meter_label', 'provider', 'bill_arrival_date', 'start_date', 'end_date', 'account_label', 'statement_year', 'statement_month', 'days_in_bill', 'bill_cost', 'usage_units', 'bill_usage', 'net_bill_usage', 'bill_usage_cost', 'demand_units', 'bill_demand', 'bill_demand_cost', 'fees', 'taxes', 'credits', 'blended_rate', 'load_factor', 'percent_change', 'currency_code', 'account_statement_id', 'facility', 'utility_account', 'utility_meter', 'meter_statement', 'facility_name', 'n_sight2_active', 'statement_date') + facility_id = sgqlc.types.Field(Int, graphql_name='facilityId') + utility_account_id = sgqlc.types.Field(Int, graphql_name='utilityAccountId') + utility_meter_id = sgqlc.types.Field(Int, graphql_name='utilityMeterId') + meter_end_date_set = sgqlc.types.Field(Boolean, graphql_name='meterEndDateSet') + meter_statement_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='meterStatementId') + is_validated = sgqlc.types.Field(Boolean, graphql_name='isValidated') + service_type = sgqlc.types.Field(UtilityMeterServiceType, graphql_name='serviceType') + meter_label = sgqlc.types.Field(String, graphql_name='meterLabel') + provider = sgqlc.types.Field(String, graphql_name='provider') + bill_arrival_date = sgqlc.types.Field(Datetime, graphql_name='billArrivalDate') + start_date = sgqlc.types.Field(Date, graphql_name='startDate') + end_date = sgqlc.types.Field(Date, graphql_name='endDate') + account_label = sgqlc.types.Field(String, graphql_name='accountLabel') + statement_year = sgqlc.types.Field(Int, graphql_name='statementYear') + statement_month = sgqlc.types.Field(Int, graphql_name='statementMonth') + days_in_bill = sgqlc.types.Field(Int, graphql_name='daysInBill') + bill_cost = sgqlc.types.Field(Float, graphql_name='billCost') + usage_units = sgqlc.types.Field(String, graphql_name='usageUnits') + bill_usage = sgqlc.types.Field(Float, graphql_name='billUsage') + net_bill_usage = sgqlc.types.Field(Float, graphql_name='netBillUsage') + bill_usage_cost = sgqlc.types.Field(Float, graphql_name='billUsageCost') + demand_units = sgqlc.types.Field(String, graphql_name='demandUnits') + bill_demand = sgqlc.types.Field(Float, graphql_name='billDemand') + bill_demand_cost = sgqlc.types.Field(Float, graphql_name='billDemandCost') + fees = sgqlc.types.Field(Float, graphql_name='fees') + taxes = sgqlc.types.Field(Float, graphql_name='taxes') + credits = sgqlc.types.Field(Float, graphql_name='credits') + blended_rate = sgqlc.types.Field(Float, graphql_name='blendedRate') + load_factor = sgqlc.types.Field(Float, graphql_name='loadFactor') + percent_change = sgqlc.types.Field(Float, graphql_name='percentChange') + currency_code = sgqlc.types.Field(String, graphql_name='currencyCode') + account_statement_id = sgqlc.types.Field(Int, graphql_name='accountStatementId') + facility = sgqlc.types.Field(Facility, graphql_name='facility') + utility_account = sgqlc.types.Field(UtilityAccount, graphql_name='utilityAccount') + utility_meter = sgqlc.types.Field(UtilityMeter, graphql_name='utilityMeter') + meter_statement = sgqlc.types.Field(MeterStatement, graphql_name='meterStatement') + facility_name = sgqlc.types.Field(String, graphql_name='facilityName') + n_sight2_active = sgqlc.types.Field(Boolean, graphql_name='nSight2Active') + statement_date = sgqlc.types.Field(String, graphql_name='statementDate') + + +class UtilityProvider(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('id', 'name', 'created_at', 'updated_at', 'utility_accounts') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') + created_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='createdAt') + updated_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='updatedAt') + utility_accounts = sgqlc.types.Field(sgqlc.types.non_null(UtilityAccountsConnection), graphql_name='utilityAccounts', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(UtilityAccountsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))), + ('condition', sgqlc.types.Arg(UtilityAccountCondition, graphql_name='condition', default=None)), + ('filter', sgqlc.types.Arg(UtilityAccountFilter, graphql_name='filter', default=None)), +)) + ) + + +class VendorUser(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('id', 'email', 'first_name', 'last_name', 'company', 'created_at', 'updated_at', 'machine_users', 'permissions') + id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') + email = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='email') + first_name = sgqlc.types.Field(String, graphql_name='firstName') + last_name = sgqlc.types.Field(String, graphql_name='lastName') + company = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='company') + created_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='createdAt') + updated_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='updatedAt') + machine_users = sgqlc.types.Field(sgqlc.types.non_null(MachineUsersConnection), graphql_name='machineUsers', args=sgqlc.types.ArgDict(( + ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), + ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), + ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), + ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), + ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), + ('filter', sgqlc.types.Arg(MachineUserFilter, graphql_name='filter', default=None)), +)) + ) + permissions = sgqlc.types.Field(VendorUserPermissions, graphql_name='permissions') + + +class VendorUserMachineUser(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('vendor_user_id', 'machine_user_id') + vendor_user_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='vendorUserId') + machine_user_id = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='machineUserId') + + +class VirtualPointInterval(sgqlc.types.Type, Node): + __schema__ = nionic_schema + __field_names__ = ('parent_id', 'child_id', 'start_time', 'end_time', 'parent', 'child') + parent_id = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='parentId') + child_id = sgqlc.types.Field(sgqlc.types.non_null(BigInt), graphql_name='childId') + start_time = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='startTime') + end_time = sgqlc.types.Field(Datetime, graphql_name='endTime') + parent = sgqlc.types.Field(DataPoint, graphql_name='parent') + child = sgqlc.types.Field(DataPoint, graphql_name='child') + + + +######################################################################## +# Unions +######################################################################## + +######################################################################## +# Schema Entry Points +######################################################################## +nionic_schema.query_type = Query +nionic_schema.mutation_type = Mutation +nionic_schema.subscription_type = None + diff --git a/contxt/models/ems.py b/contxt/models/ems.py index a6e20c0b..894cbe11 100644 --- a/contxt/models/ems.py +++ b/contxt/models/ems.py @@ -5,7 +5,6 @@ from . import ApiField, ApiObject, Formatters, Parsers from .events import Event -from .iot import Field class ResourceType(Enum): @@ -22,10 +21,8 @@ class MainService(ApiObject): ApiField("facility_id", data_type=int), ApiField("name"), ApiField("type", attr_key="resource_type", data_type=ResourceType), - ApiField("demand_field_id", data_type=int), - ApiField("usage_field_id", data_type=int), - ApiField("demand_field", data_type=Field), - ApiField("usage_field", data_type=Field), + ApiField("demand_datapoint_id", data_type=int), + ApiField("usage_datapointid", data_type=int), ApiField("created_at", data_type=Parsers.datetime), ApiField("updated_at", data_type=Parsers.datetime), ) @@ -34,10 +31,8 @@ class MainService(ApiObject): facility_id: int name: str resource_type: ResourceType - demand_field_id: int - usage_field_id: int - demand_field: Field - usage_field: Field + demand_datapoint_id: int + usage_datapoint_id: int created_at: datetime updated_at: datetime @@ -94,25 +89,6 @@ class MetricValue(ApiObject): is_estimated: Optional[bool] = None -@dataclass -class Facility(ApiObject): - _api_fields: ClassVar = ( - ApiField("id", data_type=int), - ApiField("name"), - ApiField("organization_id"), - ApiField("main_services", data_type=MainService), - ApiField("created_at", data_type=Parsers.datetime), - ApiField("updated_at", data_type=Parsers.datetime), - ) - - id: int - name: str - organization_id: str - main_services: List[MainService] - created_at: datetime - updated_at: datetime - - @dataclass class UtilityPeriod(ApiObject): _api_fields: ClassVar = ( diff --git a/contxt/models/facilities.py b/contxt/models/facilities.py deleted file mode 100644 index ed4d881e..00000000 --- a/contxt/models/facilities.py +++ /dev/null @@ -1,77 +0,0 @@ -from sgqlc.types import Arg, Enum, Field, Input, Int, String, Type, list_of, non_null -from sgqlc.types.relay import Node - - -class Facility(Type, Node): - id = Field(non_null(Int), graphql_name="id") - name = Field(non_null(String), graphql_name="name") - slug = Field(non_null(String), graphql_name="slug") - address = Field(String, graphql_name="address") - city = Field(String, graphql_name="city") - state = Field(String, graphql_name="state") - zip = Field(String, graphql_name="zip") - timezone_name = Field(String, graphql_name="timezoneName") - - -class FacilitiesConnection(Type, Node): - nodes = list_of(Facility) - - -class FacilityInput(Input): - name = non_null(str) - slug = non_null(str) - timezone_name = non_null(str) - - -class CreateFacilityInput(Input): - facility = Field(non_null("FacilityInput"), graphql_name="facility") - - -class CreateFacilityPayload(Type): - facility = Field("Facility", graphql_name="facility") - - -class MetricLabel(Type): - source_id = non_null(str) - label = non_null(str) - - -class MetricDataAggregationMethod(Enum): - __choices__ = ("AVG", "COUNT", "FIRST", "LAST", "MAX", "MEDIAN", "MIN", "SUM") - - -class MetricDataOrderBy(Enum): - __choices__ = ("TIME_ASC", "TIME_DESC") - - -class MetricData(Type, Node): - time = non_null(str) - source_id = Field(non_null(str), graphql_name="sourceId") - label = str - data = str - metadata = str - - -class MetricDataConnection(Type, Node): - nodes = list_of(MetricData) - - -class Query(Type): - facilities = Field(FacilitiesConnection) - metric_labels = Field(non_null(list_of(non_null(MetricLabel))), graphql_name="metricLabels") - metric_data = Field( - MetricDataConnection, - graphql_name="metricData", - args={ - "source_id": Arg(non_null(str), graphql_name="sourceId", default=None), - "label": Arg(non_null(str), graphql_name="label", default=None), - }, - ) - - -class Mutation(Type): - create_facility = Field( - CreateFacilityPayload, - graphql_name="createFacility", - args={"input": Arg(non_null(CreateFacilityInput))}, - ) diff --git a/contxt/services/api.py b/contxt/services/api.py index a336ca65..736e60f8 100644 --- a/contxt/services/api.py +++ b/contxt/services/api.py @@ -202,8 +202,8 @@ def query(self, query: str, variables: Optional[Any] = None) -> Dict: raise Exception(resp["errors"][0]["message"]) return resp["data"] - def run(self, op: Operation) -> Any: - data = self.endpoint(op) + def run(self, op: Operation, variables: Optional[Any] = None) -> Any: + data = self.endpoint(op, variables) if "errors" in data: raise Exception(data["errors"][0]["message"]) return data diff --git a/contxt/services/ems.py b/contxt/services/ems.py index f5437f35..2d3b5f87 100644 --- a/contxt/services/ems.py +++ b/contxt/services/ems.py @@ -1,8 +1,8 @@ from datetime import date, datetime, timedelta, timezone -from typing import Iterable, List, Optional +from typing import Iterable from ..auth import Auth -from ..models.ems import Facility, MainService, ResourceType, UtilityContract, UtilitySpend, UtilityUsage +from ..models.ems import ResourceType, UtilityContract, UtilitySpend, UtilityUsage from .api import ApiEnvironment, ConfiguredApi from .pagination import PagedRecords @@ -30,20 +30,6 @@ def __init__( self.org_id = org_id self.base_url = self.base_url.format(tenant=org_slug) - def get_facility(self, id: int) -> Facility: - return Facility.from_api(self.get(f"{self.org_id}/facilities/{id}")) - - def get_main_services( - self, facility_id: int, resource_type: Optional[ResourceType] = None - ) -> List[MainService]: - facility = self.get_facility(facility_id) - main_services = facility.main_services - - # Manually filter on resource type - if resource_type: - main_services = [s for s in main_services if s.resource_type == resource_type] - return main_services - def get_monthly_utility_spend( self, facility_id: int, diff --git a/contxt/services/nionic.py b/contxt/services/nionic.py index 143d69e9..4762ea19 100644 --- a/contxt/services/nionic.py +++ b/contxt/services/nionic.py @@ -1,12 +1,15 @@ -from typing import List +from typing import Any, Iterable, List, Optional from sgqlc.endpoint.requests import RequestsEndpoint -from sgqlc.operation import Operation -from contxt.models.facilities import Facility, MetricData, MetricLabel, Mutation, Query +from contxt.generated.nionic_queries import Operations as nionic_operations +from contxt.generated.nionic_schema import Facility, MainService, MetricLabel +from contxt.models.ems import ResourceType +from contxt.models.iot import Window from contxt.services.api import ApiEnvironment, BaseGraphService from ..auth import Auth +from .pagination import DataPoint, PagedGQLTimeSeries class NionicService(BaseGraphService): @@ -31,23 +34,77 @@ def __init__(self, auth: Auth, org_slug: str, env: str = "production", **kwargs) self.endpoint = RequestsEndpoint(self.base_url.rstrip("/") + "/graphql", session=self.session) def get_facilities(self) -> List[Facility]: - op = Operation(Query) - op.facilities().nodes().__fields__(*list(Facility._ContainerTypeMeta__fields.keys())) + op = nionic_operations.query.facilities return (op + self.run(op)).facilities.nodes def create_facility(self, data: dict) -> Facility: - op = Operation(Mutation) - op.create_facility(input={"facility": data}).__fields__("facility") - return self.run(op)["data"]["createFacility"]["facility"] + op = nionic_operations.mutation.create_facility + return self.run(op, data)["data"]["createFacility"]["facility"] def get_metric_labels(self) -> List[MetricLabel]: - op = Operation(Query) - op.metric_labels().__fields__(*list(MetricLabel._ContainerTypeMeta__fields.keys())) + op = nionic_operations.query.metric_labels return self.run(op).get("data").get("metricLabels") - def get_metric_data(self, label: str, source_id: str) -> List[MetricData]: - op = Operation(Query) - fields = list(MetricData._ContainerTypeMeta__fields.keys()) - fields.remove("id") - op.metric_data(source_id=source_id, label=label).nodes().__fields__(*fields) - return (op + self.run(op)).metric_data.nodes + def get_metric_data(self, label: str, facility_id: int, start: str) -> List[Any]: + query = """ + query metricData($facilityId: Int!, $label: String!, $from: String!) { + facility(id: $facilityId) { + metricData(label: $label, from: $from) { + nodes { + time + data + } + } + } + } + """ + resp = self.query(query, {"facilityId": int(facility_id), "label": label, "from": start}) + return resp["facility"]["metricData"]["nodes"] + + def get_main_services( + self, facility_id: int, resource_type: Optional[ResourceType] = None + ) -> List[MainService]: + op = nionic_operations.query.main_services + filterValues = {"facilityId": int(facility_id)} + return [ + x + for x in (op + self.run(op, variables=filterValues)).main_services.nodes + if resource_type is None or x.type.lower() == resource_type.value + ] + + def get_data_point_data( + self, name: str, data_source_name: str, start: str, end: str, window: Window, per_page: int + ) -> Iterable[DataPoint]: + return PagedGQLTimeSeries( + api=self, + query=""" + query dataPointData($dataSourceName: String!, $name: String! + , $from: String!, $to: String!, $window: String!, $samplingWindow: String! + , $limit: Int!, $after: Cursor) { + dataPoint(dataSourceName: $dataSourceName, name: $name) { + data(from: $from, to: $to, orderBy: TIME_DESC + , window: $window, samplingWindow: $samplingWindow + , first: $limit, after: $after) { + nodes { + time + data + } + pageInfo { + hasNextPage + endCursor + } + } + } + } + """, + params={ + "dataSourceName": data_source_name, + "name": name, + "from": start, + "to": end, + "window": f"{window.value} seconds", + # limit to 1 day if window is greater than 1 day + "samplingWindow": f"{min(window.value, 86400)} seconds", + }, + per_page=per_page, + ) diff --git a/contxt/services/pagination.py b/contxt/services/pagination.py index 9ac0e9a8..e70deaa0 100644 --- a/contxt/services/pagination.py +++ b/contxt/services/pagination.py @@ -3,6 +3,8 @@ from math import ceil from typing import Any, Callable, Dict, Generic, Iterator, List, Optional, Tuple, TypeVar, Union +from contxt.services.api import BaseGraphService + from ..models import Parsers from ..utils.object_mapper import ObjectMapper from .api import Api @@ -199,3 +201,78 @@ def next_page_url(self) -> Optional[str]: @property def per_page(self) -> int: return self.params["limit"] + + +@dataclass +class GQLTimeSeriesPageMetadata: + hasNextPage: bool + endCursor: str + + +@dataclass +class GQLTimeSeriesPage: + nodes: List[Record] + pageInfo: GQLTimeSeriesPageMetadata + + def __len__(self) -> int: + return len(self.nodes) + + def __iter__(self) -> Iterator[Record]: + yield from self.nodes + + def __getitem__(self, index: Union[int, slice]) -> Union[Record, List[Record]]: + return self.nodes[index] + + +class PagedGQLTimeSeries: + def __init__( + self, api: BaseGraphService, query: str, params: Optional[Dict] = None, per_page: int = 1000 + ): + self.api = api + self.query = query + self.params = params or {} + self.params.setdefault("limit", per_page) + + # Fetch first page + self.page_index = 0 + self.page = self._get_page() + + def __iter__(self): + # HACK: Reset to first page + if self.page_index != 0: + self.page_index = 0 + self.page = self._get_page() + yield from self.page + while self.next_page_cursor: + yield from self.get_next_page() + + def _get_page(self, cursor: Optional[str] = None) -> GQLTimeSeriesPage: + params = self.params + if cursor is not None: + params = dict(self.params) + params["after"] = cursor + resp = self.api.query(self.query, variables=params) + page = ObjectMapper.tree_to_object(resp["dataPoint"]["data"], GQLTimeSeriesPage) + # NOTE: this post processing is not ideal, but works for now + page.nodes = [self._record_parser(rec) for rec in page.nodes] # type: ignore + return page + + def _record_parser(self, record: Dict) -> DataPoint: + return Parsers.datetime(record["time"]), Parsers.unknown(record["data"]) + + def get_next_page(self) -> GQLTimeSeriesPage: + if not self.next_page_cursor: + raise IndexError("No next page") + self.page_index += 1 + self.page = self._get_page(cursor=self.next_page_cursor) + return self.page + + @property + def next_page_cursor(self) -> Optional[str]: + if not self.page.pageInfo.hasNextPage: + return None + return self.page.pageInfo.endCursor + + @property + def per_page(self) -> int: + return self.params["limit"] diff --git a/graphql/nionic_queries.graphql b/graphql/nionic_queries.graphql new file mode 100644 index 00000000..8c112c13 --- /dev/null +++ b/graphql/nionic_queries.graphql @@ -0,0 +1,88 @@ +query facilities { + facilities { + nodes { + id + name + slug + address + city + state + zip + timezoneName + } + } +} + +mutation createFacility($name: String!, $slug: String!, $timezoneName: String!) { + createFacility(input: {facility: {name: $name, slug: $slug, timezoneName: $timezoneName}}) { + facility { + id + } + } +} + +query metricLabels { + sourceLabels { + sourceId + label + } +} + +# the sgqlc code generator complains that orderBy is not specified +#query metricData($facilityId: Int!, $label: String!, $from: String!, $window: String!) { +# facility(id: $facilityId) { +# metricData(label: $label, from: $from, orderBy: TIME_ASC, window: $window) { +# nodes { +# time +# data +# } +# } +# } +#} + +query mainServices($facilityId: Int!) { + mainServices(filter: {facilityId: {equalTo: $facilityId}}) { + nodes { + id + facilityId + name + type + usage: dataPointByUsage { + id + dataSourceName + name + alias + dataType + } + demand: dataPointByDemand { + id + dataSourceName + name + alias + dataType + } + createdAt + updatedAt + } + } +} + +# the sgqlc code generator complains that orderBy is not specified +#query dataPointData($dataSourceName: String!, $name: String! +# , $from: String!, $to: String!, $window: String!, $samplingWindow: String! +# , $limit: Int!, $after: Cursor) { +# dataPoint(dataSourceName: $dataSourceName, name: $name) { +# data(from: $from, to: $to, orderBy: TIME_DESC +# , window: $window, samplingWindow: $samplingWindow +# , first: $limit, after: $after) { +# nodes { +# time +# data +# } +# pageInfo { +# hasNextPage +# endCursor +# } +# } +# } +#} diff --git a/graphql/nionic_schema.json b/graphql/nionic_schema.json new file mode 100644 index 00000000..67dcf74c --- /dev/null +++ b/graphql/nionic_schema.json @@ -0,0 +1,141858 @@ +{ + "data": { + "__schema": { + "directives": [ + { + "args": [ + { + "defaultValue": null, + "name": "if", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + } + ], + "locations": [ + "FIELD", + "FRAGMENT_SPREAD", + "INLINE_FRAGMENT" + ], + "name": "include" + }, + { + "args": [ + { + "defaultValue": null, + "name": "if", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + } + ], + "locations": [ + "FIELD", + "FRAGMENT_SPREAD", + "INLINE_FRAGMENT" + ], + "name": "skip" + }, + { + "args": [ + { + "defaultValue": "\"No longer supported\"", + "name": "reason", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "locations": [ + "FIELD_DEFINITION", + "ARGUMENT_DEFINITION", + "INPUT_FIELD_DEFINITION", + "ENUM_VALUE" + ], + "name": "deprecated" + }, + { + "args": [ + { + "defaultValue": null, + "name": "url", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "locations": [ + "SCALAR" + ], + "name": "specifiedBy" + }, + { + "args": [ + { + "defaultValue": "\"\"", + "name": "value", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "locations": [ + "FIELD_DEFINITION" + ], + "name": "defaultValue" + }, + { + "args": [], + "locations": [ + "FIELD_DEFINITION" + ], + "name": "index" + }, + { + "args": [], + "locations": [ + "FIELD_DEFINITION" + ], + "name": "unique" + }, + { + "args": [ + { + "defaultValue": "false", + "name": "delete", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + ], + "locations": [ + "FIELD_DEFINITION" + ], + "name": "cascade" + }, + { + "args": [], + "locations": [ + "OBJECT" + ], + "name": "auditable" + }, + { + "args": [ + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + } + } + ], + "locations": [ + "OBJECT" + ], + "name": "capability" + }, + { + "args": [ + { + "defaultValue": null, + "name": "properties", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + } + } + ], + "locations": [ + "OBJECT" + ], + "name": "uniqueOn" + } + ], + "mutationType": { + "name": "Mutation" + }, + "queryType": { + "name": "Query" + }, + "subscriptionType": null, + "types": [ + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "geojson", + "type": { + "kind": "SCALAR", + "name": "GeoJSON", + "ofType": null + } + }, + { + "args": [], + "name": "srid", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "x", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "y", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "GeometryInterface", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "GeometryGeometry", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "GeometryPoint", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "geojson", + "type": { + "kind": "SCALAR", + "name": "GeoJSON", + "ofType": null + } + }, + { + "args": [], + "name": "srid", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "INTERFACE", + "name": "GeometryInterface", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "GeometryPoint", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryPointM", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryPointZ", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryPointZM", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryLineString", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryLineStringM", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryLineStringZ", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryLineStringZM", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryPolygon", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryPolygonM", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryPolygonZ", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryPolygonZM", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryMultiPoint", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryMultiPointM", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryMultiPointZ", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryMultiPointZM", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryMultiLineString", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryMultiLineStringM", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryMultiLineStringZ", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryMultiLineStringZM", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryMultiPolygon", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryMultiPolygonM", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryMultiPolygonZ", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryMultiPolygonZM", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryGeometryCollection", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryGeometryCollectionM", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryGeometryCollectionZ", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryGeometryCollectionZM", + "ofType": null + } + ] + }, + { + "enumValues": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "SCALAR", + "name": "GeoJSON", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "SCALAR", + "name": "Int", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "geojson", + "type": { + "kind": "SCALAR", + "name": "GeoJSON", + "ofType": null + } + }, + { + "args": [], + "name": "srid", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "INTERFACE", + "name": "GeometryGeometry", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "GeometryPoint", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryLineString", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryPolygon", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryMultiPoint", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryMultiLineString", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryMultiPolygon", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryGeometryCollection", + "ofType": null + } + ] + }, + { + "enumValues": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "SCALAR", + "name": "Float", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "geojson", + "type": { + "kind": "SCALAR", + "name": "GeoJSON", + "ofType": null + } + }, + { + "args": [], + "name": "srid", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "x", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "y", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "GeometryInterface", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "GeometryGeometryM", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "GeometryPointM", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "geojson", + "type": { + "kind": "SCALAR", + "name": "GeoJSON", + "ofType": null + } + }, + { + "args": [], + "name": "srid", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "INTERFACE", + "name": "GeometryGeometryM", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "GeometryPointM", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryLineStringM", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryPolygonM", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryMultiPointM", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryMultiLineStringM", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryMultiPolygonM", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryGeometryCollectionM", + "ofType": null + } + ] + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "geojson", + "type": { + "kind": "SCALAR", + "name": "GeoJSON", + "ofType": null + } + }, + { + "args": [], + "name": "srid", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "x", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "y", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "z", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "GeometryInterface", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "GeometryGeometryZ", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "GeometryPointZ", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "geojson", + "type": { + "kind": "SCALAR", + "name": "GeoJSON", + "ofType": null + } + }, + { + "args": [], + "name": "srid", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "INTERFACE", + "name": "GeometryGeometryZ", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "GeometryPointZ", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryLineStringZ", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryPolygonZ", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryMultiPointZ", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryMultiLineStringZ", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryMultiPolygonZ", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryGeometryCollectionZ", + "ofType": null + } + ] + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "geojson", + "type": { + "kind": "SCALAR", + "name": "GeoJSON", + "ofType": null + } + }, + { + "args": [], + "name": "srid", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "x", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "y", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "z", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "GeometryInterface", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "GeometryGeometryZM", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "GeometryPointZM", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "geojson", + "type": { + "kind": "SCALAR", + "name": "GeoJSON", + "ofType": null + } + }, + { + "args": [], + "name": "srid", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "INTERFACE", + "name": "GeometryGeometryZM", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "GeometryPointZM", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryLineStringZM", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryPolygonZM", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryMultiPointZM", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryMultiLineStringZM", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryMultiPolygonZM", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GeometryGeometryCollectionZM", + "ofType": null + } + ] + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "geojson", + "type": { + "kind": "SCALAR", + "name": "GeoJSON", + "ofType": null + } + }, + { + "args": [], + "name": "srid", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "points", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GeometryPoint", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "GeometryInterface", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "GeometryGeometry", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "GeometryLineString", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "geojson", + "type": { + "kind": "SCALAR", + "name": "GeoJSON", + "ofType": null + } + }, + { + "args": [], + "name": "srid", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "points", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GeometryPointM", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "GeometryInterface", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "GeometryGeometryM", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "GeometryLineStringM", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "geojson", + "type": { + "kind": "SCALAR", + "name": "GeoJSON", + "ofType": null + } + }, + { + "args": [], + "name": "srid", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "points", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GeometryPointZ", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "GeometryInterface", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "GeometryGeometryZ", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "GeometryLineStringZ", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "geojson", + "type": { + "kind": "SCALAR", + "name": "GeoJSON", + "ofType": null + } + }, + { + "args": [], + "name": "srid", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "points", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GeometryPointZM", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "GeometryInterface", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "GeometryGeometryZM", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "GeometryLineStringZM", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "geojson", + "type": { + "kind": "SCALAR", + "name": "GeoJSON", + "ofType": null + } + }, + { + "args": [], + "name": "srid", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "exterior", + "type": { + "kind": "OBJECT", + "name": "GeometryLineString", + "ofType": null + } + }, + { + "args": [], + "name": "interiors", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GeometryLineString", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "GeometryInterface", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "GeometryGeometry", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "GeometryPolygon", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "geojson", + "type": { + "kind": "SCALAR", + "name": "GeoJSON", + "ofType": null + } + }, + { + "args": [], + "name": "srid", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "exterior", + "type": { + "kind": "OBJECT", + "name": "GeometryLineStringM", + "ofType": null + } + }, + { + "args": [], + "name": "interiors", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GeometryLineStringM", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "GeometryInterface", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "GeometryGeometryM", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "GeometryPolygonM", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "geojson", + "type": { + "kind": "SCALAR", + "name": "GeoJSON", + "ofType": null + } + }, + { + "args": [], + "name": "srid", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "exterior", + "type": { + "kind": "OBJECT", + "name": "GeometryLineStringZ", + "ofType": null + } + }, + { + "args": [], + "name": "interiors", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GeometryLineStringZ", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "GeometryInterface", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "GeometryGeometryZ", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "GeometryPolygonZ", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "geojson", + "type": { + "kind": "SCALAR", + "name": "GeoJSON", + "ofType": null + } + }, + { + "args": [], + "name": "srid", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "exterior", + "type": { + "kind": "OBJECT", + "name": "GeometryLineStringZM", + "ofType": null + } + }, + { + "args": [], + "name": "interiors", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GeometryLineStringZM", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "GeometryInterface", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "GeometryGeometryZM", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "GeometryPolygonZM", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "geojson", + "type": { + "kind": "SCALAR", + "name": "GeoJSON", + "ofType": null + } + }, + { + "args": [], + "name": "srid", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "points", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GeometryPoint", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "GeometryInterface", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "GeometryGeometry", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "GeometryMultiPoint", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "geojson", + "type": { + "kind": "SCALAR", + "name": "GeoJSON", + "ofType": null + } + }, + { + "args": [], + "name": "srid", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "points", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GeometryPointM", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "GeometryInterface", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "GeometryGeometryM", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "GeometryMultiPointM", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "geojson", + "type": { + "kind": "SCALAR", + "name": "GeoJSON", + "ofType": null + } + }, + { + "args": [], + "name": "srid", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "points", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GeometryPointZ", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "GeometryInterface", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "GeometryGeometryZ", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "GeometryMultiPointZ", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "geojson", + "type": { + "kind": "SCALAR", + "name": "GeoJSON", + "ofType": null + } + }, + { + "args": [], + "name": "srid", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "points", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GeometryPointZM", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "GeometryInterface", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "GeometryGeometryZM", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "GeometryMultiPointZM", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "geojson", + "type": { + "kind": "SCALAR", + "name": "GeoJSON", + "ofType": null + } + }, + { + "args": [], + "name": "srid", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "lines", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GeometryLineString", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "GeometryInterface", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "GeometryGeometry", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "GeometryMultiLineString", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "geojson", + "type": { + "kind": "SCALAR", + "name": "GeoJSON", + "ofType": null + } + }, + { + "args": [], + "name": "srid", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "lines", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GeometryLineStringM", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "GeometryInterface", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "GeometryGeometryM", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "GeometryMultiLineStringM", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "geojson", + "type": { + "kind": "SCALAR", + "name": "GeoJSON", + "ofType": null + } + }, + { + "args": [], + "name": "srid", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "lines", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GeometryLineStringZ", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "GeometryInterface", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "GeometryGeometryZ", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "GeometryMultiLineStringZ", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "geojson", + "type": { + "kind": "SCALAR", + "name": "GeoJSON", + "ofType": null + } + }, + { + "args": [], + "name": "srid", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "lines", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GeometryLineStringZM", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "GeometryInterface", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "GeometryGeometryZM", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "GeometryMultiLineStringZM", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "geojson", + "type": { + "kind": "SCALAR", + "name": "GeoJSON", + "ofType": null + } + }, + { + "args": [], + "name": "srid", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "polygons", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GeometryPolygon", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "GeometryInterface", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "GeometryGeometry", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "GeometryMultiPolygon", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "geojson", + "type": { + "kind": "SCALAR", + "name": "GeoJSON", + "ofType": null + } + }, + { + "args": [], + "name": "srid", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "polygons", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GeometryPolygonM", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "GeometryInterface", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "GeometryGeometryM", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "GeometryMultiPolygonM", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "geojson", + "type": { + "kind": "SCALAR", + "name": "GeoJSON", + "ofType": null + } + }, + { + "args": [], + "name": "srid", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "polygons", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GeometryPolygonZ", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "GeometryInterface", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "GeometryGeometryZ", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "GeometryMultiPolygonZ", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "geojson", + "type": { + "kind": "SCALAR", + "name": "GeoJSON", + "ofType": null + } + }, + { + "args": [], + "name": "srid", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "polygons", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GeometryPolygonZM", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "GeometryInterface", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "GeometryGeometryZM", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "GeometryMultiPolygonZM", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "geojson", + "type": { + "kind": "SCALAR", + "name": "GeoJSON", + "ofType": null + } + }, + { + "args": [], + "name": "srid", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "geometries", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "GeometryGeometry", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "GeometryInterface", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "GeometryGeometry", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "GeometryGeometryCollection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "geojson", + "type": { + "kind": "SCALAR", + "name": "GeoJSON", + "ofType": null + } + }, + { + "args": [], + "name": "srid", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "geometries", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "GeometryGeometryM", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "GeometryInterface", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "GeometryGeometryM", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "GeometryGeometryCollectionM", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "geojson", + "type": { + "kind": "SCALAR", + "name": "GeoJSON", + "ofType": null + } + }, + { + "args": [], + "name": "srid", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "geometries", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "GeometryGeometryZ", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "GeometryInterface", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "GeometryGeometryZ", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "GeometryGeometryCollectionZ", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "geojson", + "type": { + "kind": "SCALAR", + "name": "GeoJSON", + "ofType": null + } + }, + { + "args": [], + "name": "srid", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "geometries", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "GeometryGeometryZM", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "GeometryInterface", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "GeometryGeometryZM", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "GeometryGeometryCollectionZM", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "query", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + } + }, + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "node", + "type": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AccountChargesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountChargeCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountChargeFilter", + "ofType": null + } + } + ], + "name": "accountCharges", + "type": { + "kind": "OBJECT", + "name": "AccountChargesConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[NATURAL]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AccountStatementHistoriesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountStatementHistoryCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountStatementHistoryFilter", + "ofType": null + } + } + ], + "name": "accountStatementHistories", + "type": { + "kind": "OBJECT", + "name": "AccountStatementHistoriesConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AccountStatementsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountStatementCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountStatementFilter", + "ofType": null + } + } + ], + "name": "accountStatements", + "type": { + "kind": "OBJECT", + "name": "AccountStatementsConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "BalancingAuthoritiesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "BalancingAuthorityCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "BalancingAuthorityFilter", + "ofType": null + } + } + ], + "name": "balancingAuthorities", + "type": { + "kind": "OBJECT", + "name": "BalancingAuthoritiesConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "BuildingAreaTypesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "BuildingAreaTypeCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "BuildingAreaTypeFilter", + "ofType": null + } + } + ], + "name": "buildingAreaTypes", + "type": { + "kind": "OBJECT", + "name": "BuildingAreaTypesConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "BuildingAreasOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "BuildingAreaCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "BuildingAreaFilter", + "ofType": null + } + } + ], + "name": "buildingAreas", + "type": { + "kind": "OBJECT", + "name": "BuildingAreasConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ComponentsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ComponentCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ComponentFilter", + "ofType": null + } + } + ], + "name": "components", + "type": { + "kind": "OBJECT", + "name": "ComponentsConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ControlEventsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ControlEventCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ControlEventFilter", + "ofType": null + } + } + ], + "name": "controlEvents", + "type": { + "kind": "OBJECT", + "name": "ControlEventsConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "DataPointsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "DataPointCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "DataPointFilter", + "ofType": null + } + } + ], + "name": "dataPoints", + "type": { + "kind": "OBJECT", + "name": "DataPointsConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "DataSourcesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "DataSourceCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "DataSourceFilter", + "ofType": null + } + } + ], + "name": "dataSources", + "type": { + "kind": "OBJECT", + "name": "DataSourcesConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "DependenciesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "DependencyCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "DependencyFilter", + "ofType": null + } + } + ], + "name": "dependencies", + "type": { + "kind": "OBJECT", + "name": "DependenciesConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilitiesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityFilter", + "ofType": null + } + } + ], + "name": "facilities", + "type": { + "kind": "OBJECT", + "name": "FacilitiesConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilityCommunicationsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityCommunicationCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityCommunicationFilter", + "ofType": null + } + } + ], + "name": "facilityCommunications", + "type": { + "kind": "OBJECT", + "name": "FacilityCommunicationsConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilityDataSourcesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityDataSourceCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityDataSourceFilter", + "ofType": null + } + } + ], + "name": "facilityDataSources", + "type": { + "kind": "OBJECT", + "name": "FacilityDataSourcesConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilityGroupsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityGroupCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityGroupFilter", + "ofType": null + } + } + ], + "name": "facilityGroups", + "type": { + "kind": "OBJECT", + "name": "FacilityGroupsConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilityGroupsLinkersOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityGroupsLinkerCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityGroupsLinkerFilter", + "ofType": null + } + } + ], + "name": "facilityGroupsLinkers", + "type": { + "kind": "OBJECT", + "name": "FacilityGroupsLinkersConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FieldGroupsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "FieldGroupCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "FieldGroupFilter", + "ofType": null + } + } + ], + "name": "fieldGroups", + "type": { + "kind": "OBJECT", + "name": "FieldGroupsConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MachineUsersOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "MachineUserCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "MachineUserFilter", + "ofType": null + } + } + ], + "name": "machineUsers", + "type": { + "kind": "OBJECT", + "name": "MachineUsersConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MainServicesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "MainServiceCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "MainServiceFilter", + "ofType": null + } + } + ], + "name": "mainServices", + "type": { + "kind": "OBJECT", + "name": "MainServicesConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MeterChargesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "MeterChargeCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "MeterChargeFilter", + "ofType": null + } + } + ], + "name": "meterCharges", + "type": { + "kind": "OBJECT", + "name": "MeterChargesConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[NATURAL]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MeterStatementHistoriesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "MeterStatementHistoryCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "MeterStatementHistoryFilter", + "ofType": null + } + } + ], + "name": "meterStatementHistories", + "type": { + "kind": "OBJECT", + "name": "MeterStatementHistoriesConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MeterStatementsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "MeterStatementCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "MeterStatementFilter", + "ofType": null + } + } + ], + "name": "meterStatements", + "type": { + "kind": "OBJECT", + "name": "MeterStatementsConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MeterUsagesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "MeterUsageCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "MeterUsageFilter", + "ofType": null + } + } + ], + "name": "meterUsages", + "type": { + "kind": "OBJECT", + "name": "MeterUsagesConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricMetadataOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "MetricMetadatumCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "MetricMetadatumFilter", + "ofType": null + } + } + ], + "name": "metricMetadata", + "type": { + "kind": "OBJECT", + "name": "MetricMetadataConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[NATURAL]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "PlatformAccessTokensOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "PlatformAccessTokenCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "PlatformAccessTokenFilter", + "ofType": null + } + } + ], + "name": "platformAccessTokens", + "type": { + "kind": "OBJECT", + "name": "PlatformAccessTokensConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProgramsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProgramCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProgramFilter", + "ofType": null + } + } + ], + "name": "programs", + "type": { + "kind": "OBJECT", + "name": "ProgramsConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectFieldsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFieldCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFieldFilter", + "ofType": null + } + } + ], + "name": "projectFields", + "type": { + "kind": "OBJECT", + "name": "ProjectFieldsConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectTypesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectTypeCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectTypeFilter", + "ofType": null + } + } + ], + "name": "projectTypes", + "type": { + "kind": "OBJECT", + "name": "ProjectTypesConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectWatchersOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectWatcherCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectWatcherFilter", + "ofType": null + } + } + ], + "name": "projectWatchers", + "type": { + "kind": "OBJECT", + "name": "ProjectWatchersConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFilter", + "ofType": null + } + } + ], + "name": "projects", + "type": { + "kind": "OBJECT", + "name": "ProjectsConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ReportExecutionsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ReportExecutionCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ReportExecutionFilter", + "ofType": null + } + } + ], + "name": "reportExecutions", + "type": { + "kind": "OBJECT", + "name": "ReportExecutionsConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ReportQueriesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ReportQueryCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ReportQueryFilter", + "ofType": null + } + } + ], + "name": "reportQueries", + "type": { + "kind": "OBJECT", + "name": "ReportQueriesConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ReportsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ReportCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ReportFilter", + "ofType": null + } + } + ], + "name": "reports", + "type": { + "kind": "OBJECT", + "name": "ReportsConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SavingsEventsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "SavingsEventCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "SavingsEventFilter", + "ofType": null + } + } + ], + "name": "savingsEvents", + "type": { + "kind": "OBJECT", + "name": "SavingsEventsConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[NATURAL]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SuggestionActivityLogsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "SuggestionActivityLogCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "SuggestionActivityLogFilter", + "ofType": null + } + } + ], + "name": "suggestionActivityLogs", + "type": { + "kind": "OBJECT", + "name": "SuggestionActivityLogsConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SuggestionsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "SuggestionCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "SuggestionFilter", + "ofType": null + } + } + ], + "name": "suggestions", + "type": { + "kind": "OBJECT", + "name": "SuggestionsConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "TimezonesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "TimezoneCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "TimezoneFilter", + "ofType": null + } + } + ], + "name": "timezones", + "type": { + "kind": "OBJECT", + "name": "TimezonesConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UnitDimensionsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UnitDimensionCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UnitDimensionFilter", + "ofType": null + } + } + ], + "name": "unitDimensions", + "type": { + "kind": "OBJECT", + "name": "UnitDimensionsConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UnitGroupDimensionsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UnitGroupDimensionCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UnitGroupDimensionFilter", + "ofType": null + } + } + ], + "name": "unitGroupDimensions", + "type": { + "kind": "OBJECT", + "name": "UnitGroupDimensionsConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UnitGroupsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UnitGroupCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UnitGroupFilter", + "ofType": null + } + } + ], + "name": "unitGroups", + "type": { + "kind": "OBJECT", + "name": "UnitGroupsConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UsersOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UserCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UserFilter", + "ofType": null + } + } + ], + "name": "users", + "type": { + "kind": "OBJECT", + "name": "UsersConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityAccountStatementRollupsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountStatementRollupCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountStatementRollupFilter", + "ofType": null + } + } + ], + "name": "utilityAccountStatementRollups", + "type": { + "kind": "OBJECT", + "name": "UtilityAccountStatementRollupsConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityAccountStatementsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountStatementCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountStatementFilter", + "ofType": null + } + } + ], + "name": "utilityAccountStatements", + "type": { + "kind": "OBJECT", + "name": "UtilityAccountStatementsConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityAccountsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountFilter", + "ofType": null + } + } + ], + "name": "utilityAccounts", + "type": { + "kind": "OBJECT", + "name": "UtilityAccountsConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterStatementRollupsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupFilter", + "ofType": null + } + } + ], + "name": "utilityMeterStatementRollups", + "type": { + "kind": "OBJECT", + "name": "UtilityMeterStatementRollupsConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterStatementsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementFilter", + "ofType": null + } + } + ], + "name": "utilityMeterStatements", + "type": { + "kind": "OBJECT", + "name": "UtilityMeterStatementsConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMetersOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterFilter", + "ofType": null + } + } + ], + "name": "utilityMeters", + "type": { + "kind": "OBJECT", + "name": "UtilityMetersConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityProvidersOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityProviderCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityProviderFilter", + "ofType": null + } + } + ], + "name": "utilityProviders", + "type": { + "kind": "OBJECT", + "name": "UtilityProvidersConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "VendorUsersOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "VendorUserCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "VendorUserFilter", + "ofType": null + } + } + ], + "name": "vendorUsers", + "type": { + "kind": "OBJECT", + "name": "VendorUsersConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "VirtualPointIntervalsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "VirtualPointIntervalCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "VirtualPointIntervalFilter", + "ofType": null + } + } + ], + "name": "virtualPointIntervals", + "type": { + "kind": "OBJECT", + "name": "VirtualPointIntervalsConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "name": "accountCharge", + "type": { + "kind": "OBJECT", + "name": "AccountCharge", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "name": "accountStatement", + "type": { + "kind": "OBJECT", + "name": "AccountStatement", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "slug", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "name": "balancingAuthority", + "type": { + "kind": "OBJECT", + "name": "BalancingAuthority", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "type", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "name": "buildingAreaType", + "type": { + "kind": "OBJECT", + "name": "BuildingAreaType", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "name": "buildingArea", + "type": { + "kind": "OBJECT", + "name": "BuildingArea", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "name": "buildingAreaByFacilityIdAndLabel", + "type": { + "kind": "OBJECT", + "name": "BuildingArea", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "name": "component", + "type": { + "kind": "OBJECT", + "name": "Component", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "name": "controlEventLog", + "type": { + "kind": "OBJECT", + "name": "ControlEventLog", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "name": "controlEvent", + "type": { + "kind": "OBJECT", + "name": "ControlEvent", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + } + ], + "name": "dataPointById", + "type": { + "kind": "OBJECT", + "name": "DataPoint", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "dataSourceName", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "name": "dataPoint", + "type": { + "kind": "OBJECT", + "name": "DataPoint", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "name": "dataSource", + "type": { + "kind": "OBJECT", + "name": "DataSource", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + } + ], + "name": "dependency", + "type": { + "kind": "OBJECT", + "name": "Dependency", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "path", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "name": "dependencyByPath", + "type": { + "kind": "OBJECT", + "name": "Dependency", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "type", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "handler", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "name": "eventHandlerMetadatum", + "type": { + "kind": "OBJECT", + "name": "EventHandlerMetadatum", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "handler", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "name": "eventHandler", + "type": { + "kind": "OBJECT", + "name": "EventHandler", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "name": "eventType", + "type": { + "kind": "OBJECT", + "name": "EventType", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + } + ], + "name": "event", + "type": { + "kind": "OBJECT", + "name": "Event", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "name": "facility", + "type": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "slug", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "name": "facilityBySlug", + "type": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "name": "facilityCommunication", + "type": { + "kind": "OBJECT", + "name": "FacilityCommunication", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "dataSourceName", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "name": "facilityDataSource", + "type": { + "kind": "OBJECT", + "name": "FacilityDataSource", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + } + ], + "name": "facilityGroup", + "type": { + "kind": "OBJECT", + "name": "FacilityGroup", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "facilityGroupingId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + } + ], + "name": "facilityGroupsLinker", + "type": { + "kind": "OBJECT", + "name": "FacilityGroupsLinker", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "name": "fieldGroup", + "type": { + "kind": "OBJECT", + "name": "FieldGroup", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + } + ], + "name": "machineUser", + "type": { + "kind": "OBJECT", + "name": "MachineUser", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "name": "mainService", + "type": { + "kind": "OBJECT", + "name": "MainService", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "name": "mainServiceByFacilityIdAndName", + "type": { + "kind": "OBJECT", + "name": "MainService", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "usage", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "demand", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "name": "mainServiceByFacilityIdAndUsageAndDemand", + "type": { + "kind": "OBJECT", + "name": "MainService", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "originalId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "name": "mainServiceByOriginalId", + "type": { + "kind": "OBJECT", + "name": "MainService", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "name": "meterCharge", + "type": { + "kind": "OBJECT", + "name": "MeterCharge", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "name": "meterStatement", + "type": { + "kind": "OBJECT", + "name": "MeterStatement", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "name": "meterUsage", + "type": { + "kind": "OBJECT", + "name": "MeterUsage", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "name": "metricMetadatum", + "type": { + "kind": "OBJECT", + "name": "MetricMetadatum", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "name": "program", + "type": { + "kind": "OBJECT", + "name": "Program", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "projectTypeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "name": "programByProjectTypeIdAndName", + "type": { + "kind": "OBJECT", + "name": "Program", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "projectId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "componentId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "name": "projectComponent", + "type": { + "kind": "OBJECT", + "name": "ProjectComponent", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "projectId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "fieldId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "name": "projectFieldByProjectIdAndFieldId", + "type": { + "kind": "OBJECT", + "name": "ProjectField", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "name": "projectField", + "type": { + "kind": "OBJECT", + "name": "ProjectField", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "name": "projectType", + "type": { + "kind": "OBJECT", + "name": "ProjectType", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "name": "projectTypeByName", + "type": { + "kind": "OBJECT", + "name": "ProjectType", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "projectId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "userId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "name": "projectWatcher", + "type": { + "kind": "OBJECT", + "name": "ProjectWatcher", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "name": "project", + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "name": "reportExecution", + "type": { + "kind": "OBJECT", + "name": "ReportExecution", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "name": "reportQuery", + "type": { + "kind": "OBJECT", + "name": "ReportQuery", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "reportId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "name": "reportQueryByReportIdAndLabel", + "type": { + "kind": "OBJECT", + "name": "ReportQuery", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "name": "report", + "type": { + "kind": "OBJECT", + "name": "Report", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "name": "reportByLabel", + "type": { + "kind": "OBJECT", + "name": "Report", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "name": "savingsEvent", + "type": { + "kind": "OBJECT", + "name": "SavingsEvent", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "projectId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "startTime", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "endTime", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + } + ], + "name": "savingsEventByProjectIdAndStartTimeAndEndTime", + "type": { + "kind": "OBJECT", + "name": "SavingsEvent", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "suggestionId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "controlEventId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "name": "suggestionControlEvent", + "type": { + "kind": "OBJECT", + "name": "SuggestionControlEvent", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "controlEventId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "name": "suggestionControlEventByControlEventId", + "type": { + "kind": "OBJECT", + "name": "SuggestionControlEvent", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "name": "suggestion", + "type": { + "kind": "OBJECT", + "name": "Suggestion", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "name": "timezone", + "type": { + "kind": "OBJECT", + "name": "Timezone", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "name": "unitDimension", + "type": { + "kind": "OBJECT", + "name": "UnitDimension", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "unitGroup", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "unitDimension", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "name": "unitGroupDimension", + "type": { + "kind": "OBJECT", + "name": "UnitGroupDimension", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "name": "unitGroup", + "type": { + "kind": "OBJECT", + "name": "UnitGroup", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "name": "utilityAccountStatementRollup", + "type": { + "kind": "OBJECT", + "name": "UtilityAccountStatementRollup", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "name": "utilityAccountStatement", + "type": { + "kind": "OBJECT", + "name": "UtilityAccountStatement", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "name": "utilityAccount", + "type": { + "kind": "OBJECT", + "name": "UtilityAccount", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "meterStatementId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "name": "utilityMeterStatementRollup", + "type": { + "kind": "OBJECT", + "name": "UtilityMeterStatementRollup", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "meterStatementId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "name": "utilityMeterStatement", + "type": { + "kind": "OBJECT", + "name": "UtilityMeterStatement", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "name": "utilityMeter", + "type": { + "kind": "OBJECT", + "name": "UtilityMeter", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "name": "utilityProvider", + "type": { + "kind": "OBJECT", + "name": "UtilityProvider", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "name": "utilityProviderByName", + "type": { + "kind": "OBJECT", + "name": "UtilityProvider", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "vendorUserId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "machineUserId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + } + ], + "name": "vendorUserMachineUser", + "type": { + "kind": "OBJECT", + "name": "VendorUserMachineUser", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "machineUserId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + } + ], + "name": "vendorUserMachineUserByMachineUserId", + "type": { + "kind": "OBJECT", + "name": "VendorUserMachineUser", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "name": "vendorUser", + "type": { + "kind": "OBJECT", + "name": "VendorUser", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "email", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "name": "vendorUserByEmail", + "type": { + "kind": "OBJECT", + "name": "VendorUser", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "parentId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "childId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + } + ], + "name": "virtualPointInterval", + "type": { + "kind": "OBJECT", + "name": "VirtualPointInterval", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "intervalBegin", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "intervalEnd", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + } + } + ], + "name": "deriveStatementDate", + "type": { + "kind": "OBJECT", + "name": "DerivedStatementDate", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "JSONFilter", + "ofType": null + } + } + ], + "name": "groupings", + "type": { + "kind": "OBJECT", + "name": "GroupingsConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "facilityFields", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "JSONFilter", + "ofType": null + } + } + ], + "name": "groupingsWithFacilities", + "type": { + "kind": "OBJECT", + "name": "GroupingsWithFacilitiesConnection", + "ofType": null + } + }, + { + "args": [], + "name": "profile", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "accountChargeByNodeId", + "type": { + "kind": "OBJECT", + "name": "AccountCharge", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "accountStatementByNodeId", + "type": { + "kind": "OBJECT", + "name": "AccountStatement", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "balancingAuthorityByNodeId", + "type": { + "kind": "OBJECT", + "name": "BalancingAuthority", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "buildingAreaTypeByNodeId", + "type": { + "kind": "OBJECT", + "name": "BuildingAreaType", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "buildingAreaByNodeId", + "type": { + "kind": "OBJECT", + "name": "BuildingArea", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "componentByNodeId", + "type": { + "kind": "OBJECT", + "name": "Component", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "controlEventLogByNodeId", + "type": { + "kind": "OBJECT", + "name": "ControlEventLog", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "controlEventStateByNodeId", + "type": { + "kind": "OBJECT", + "name": "ControlEventState", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "controlEventByNodeId", + "type": { + "kind": "OBJECT", + "name": "ControlEvent", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "dataPointByNodeId", + "type": { + "kind": "OBJECT", + "name": "DataPoint", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "dataSourceByNodeId", + "type": { + "kind": "OBJECT", + "name": "DataSource", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "dependencyByNodeId", + "type": { + "kind": "OBJECT", + "name": "Dependency", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "eventHandlerMetadatumByNodeId", + "type": { + "kind": "OBJECT", + "name": "EventHandlerMetadatum", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "eventHandlerByNodeId", + "type": { + "kind": "OBJECT", + "name": "EventHandler", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "eventTypeByNodeId", + "type": { + "kind": "OBJECT", + "name": "EventType", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "eventByNodeId", + "type": { + "kind": "OBJECT", + "name": "Event", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "facilityByNodeId", + "type": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "facilityCommunicationByNodeId", + "type": { + "kind": "OBJECT", + "name": "FacilityCommunication", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "facilityDataSourceByNodeId", + "type": { + "kind": "OBJECT", + "name": "FacilityDataSource", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "facilityGroupByNodeId", + "type": { + "kind": "OBJECT", + "name": "FacilityGroup", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "facilityGroupsLinkerByNodeId", + "type": { + "kind": "OBJECT", + "name": "FacilityGroupsLinker", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "fieldGroupByNodeId", + "type": { + "kind": "OBJECT", + "name": "FieldGroup", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "machineUserByNodeId", + "type": { + "kind": "OBJECT", + "name": "MachineUser", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "mainServiceByNodeId", + "type": { + "kind": "OBJECT", + "name": "MainService", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "meterChargeByNodeId", + "type": { + "kind": "OBJECT", + "name": "MeterCharge", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "meterStatementByNodeId", + "type": { + "kind": "OBJECT", + "name": "MeterStatement", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "meterUsageByNodeId", + "type": { + "kind": "OBJECT", + "name": "MeterUsage", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "metricMetadatumByNodeId", + "type": { + "kind": "OBJECT", + "name": "MetricMetadatum", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "programByNodeId", + "type": { + "kind": "OBJECT", + "name": "Program", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "projectComponentByNodeId", + "type": { + "kind": "OBJECT", + "name": "ProjectComponent", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "projectFieldByNodeId", + "type": { + "kind": "OBJECT", + "name": "ProjectField", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "projectTypeByNodeId", + "type": { + "kind": "OBJECT", + "name": "ProjectType", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "projectWatcherByNodeId", + "type": { + "kind": "OBJECT", + "name": "ProjectWatcher", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "projectByNodeId", + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "reportExecutionByNodeId", + "type": { + "kind": "OBJECT", + "name": "ReportExecution", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "reportQueryByNodeId", + "type": { + "kind": "OBJECT", + "name": "ReportQuery", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "reportByNodeId", + "type": { + "kind": "OBJECT", + "name": "Report", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "savingsEventByNodeId", + "type": { + "kind": "OBJECT", + "name": "SavingsEvent", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "suggestionControlEventByNodeId", + "type": { + "kind": "OBJECT", + "name": "SuggestionControlEvent", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "suggestionByNodeId", + "type": { + "kind": "OBJECT", + "name": "Suggestion", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "timezoneByNodeId", + "type": { + "kind": "OBJECT", + "name": "Timezone", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "unitDimensionByNodeId", + "type": { + "kind": "OBJECT", + "name": "UnitDimension", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "unitGroupDimensionByNodeId", + "type": { + "kind": "OBJECT", + "name": "UnitGroupDimension", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "unitGroupByNodeId", + "type": { + "kind": "OBJECT", + "name": "UnitGroup", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "userByNodeId", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "utilityAccountStatementRollupByNodeId", + "type": { + "kind": "OBJECT", + "name": "UtilityAccountStatementRollup", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "utilityAccountStatementByNodeId", + "type": { + "kind": "OBJECT", + "name": "UtilityAccountStatement", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "utilityAccountByNodeId", + "type": { + "kind": "OBJECT", + "name": "UtilityAccount", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "utilityMeterStatementRollupByNodeId", + "type": { + "kind": "OBJECT", + "name": "UtilityMeterStatementRollup", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "utilityMeterStatementByNodeId", + "type": { + "kind": "OBJECT", + "name": "UtilityMeterStatement", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "utilityMeterByNodeId", + "type": { + "kind": "OBJECT", + "name": "UtilityMeter", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "utilityProviderByNodeId", + "type": { + "kind": "OBJECT", + "name": "UtilityProvider", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "vendorUserMachineUserByNodeId", + "type": { + "kind": "OBJECT", + "name": "VendorUserMachineUser", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "vendorUserByNodeId", + "type": { + "kind": "OBJECT", + "name": "VendorUser", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "name": "virtualPointIntervalByNodeId", + "type": { + "kind": "OBJECT", + "name": "VirtualPointInterval", + "ofType": null + } + }, + { + "args": [], + "name": "platformErrors", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "PlatformError", + "ofType": null + } + } + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "sourceId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "from", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "to", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "aggregation", + "type": { + "kind": "ENUM", + "name": "MetricDataAggregationMethod", + "ofType": null + } + }, + { + "defaultValue": "\"1hr\"", + "name": "window", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "TIME_ASC", + "name": "orderBy", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataOrderBy", + "ofType": null + } + } + } + ], + "name": "sourceData", + "type": { + "kind": "OBJECT", + "name": "MetricDataConnection", + "ofType": null + } + }, + { + "args": [], + "name": "sourceLabels", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SourceLabel", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "currentIdentity", + "type": { + "kind": "INTERFACE", + "name": "Identity", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "Query", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "INTERFACE", + "name": "Node", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Query", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "AccountCharge", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "AccountStatement", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "UtilityAccount", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "UtilityProvider", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "UtilityMeter", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Timezone", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "MetricData", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "UnitGroup", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "UnitGroupDimension", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "UnitDimension", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "BuildingArea", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "BuildingAreaType", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Component", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "MachineUser", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ProjectWatcher", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ProjectType", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Program", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ProjectComponent", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ProjectField", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "FieldGroup", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "DataPoint", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "DataSource", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "FacilityDataSource", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "VirtualPointInterval", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SavingsEvent", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Suggestion", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ControlEvent", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ControlEventLog", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ControlEventState", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SuggestionControlEvent", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "UserSubscription", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "EventType", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "EventHandler", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Event", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "VendorUser", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "FacilityCommunication", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "FacilityGroupsLinker", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "FacilityGroup", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "MainService", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "UtilityMeterStatementRollup", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "MeterStatement", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "MeterCharge", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "MeterUsage", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "UtilityMeterStatement", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "UtilityAccountStatementRollup", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "UtilityAccountStatement", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "MetricLabel", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "BalancingAuthority", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Dependency", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "MetricMetadatum", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ReportExecution", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Report", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ReportQuery", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "EventHandlerMetadatum", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "VendorUserMachineUser", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SourceLabel", + "ofType": null + } + ] + }, + { + "enumValues": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "SCALAR", + "name": "ID", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AccountCharge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AccountChargesEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "AccountChargesConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "accountStatementId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "category", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityAccountChargeCategory", + "ofType": null + } + } + }, + { + "args": [], + "name": "intervalStart", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + } + }, + { + "args": [], + "name": "intervalEnd", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + } + }, + { + "args": [], + "name": "statementDate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + } + }, + { + "args": [], + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "overrideAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "args": [], + "name": "value", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "lineNumber", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "deletedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "args": [], + "name": "overrideStatementYear", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "overrideStatementMonth", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "accountStatement", + "type": { + "kind": "OBJECT", + "name": "AccountStatement", + "ofType": null + } + }, + { + "args": [], + "name": "statementMonth", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "statementYear", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "AccountCharge", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "USAGE" + }, + { + "name": "DEMAND" + }, + { + "name": "FEES" + }, + { + "name": "TAXES" + }, + { + "name": "CREDITS" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "UtilityAccountChargeCategory", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "SCALAR", + "name": "Date", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "SCALAR", + "name": "String", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "SCALAR", + "name": "Datetime", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "integration", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityIntegration", + "ofType": null + } + } + }, + { + "args": [], + "name": "integrationKey", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "utilityAccountId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "statementYear", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "statementMonth", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "currencyCode", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "overrideAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "args": [], + "name": "isValidated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "args": [], + "name": "metadata", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + }, + { + "args": [], + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "intervalStart", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + } + }, + { + "args": [], + "name": "intervalEnd", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + } + }, + { + "args": [], + "name": "utilityAccount", + "type": { + "kind": "OBJECT", + "name": "UtilityAccount", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AccountChargesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountChargeCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountChargeFilter", + "ofType": null + } + } + ], + "name": "accountCharges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AccountChargesConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MeterStatementsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "MeterStatementCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "MeterStatementFilter", + "ofType": null + } + } + ], + "name": "meterStatements", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MeterStatementsConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[NATURAL]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AccountStatementHistoriesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountStatementHistoryCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountStatementHistoryFilter", + "ofType": null + } + } + ], + "name": "accountStatementHistories", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AccountStatementHistoriesConnection", + "ofType": null + } + } + }, + { + "args": [], + "name": "utilityAccountStatementRollup", + "type": { + "kind": "OBJECT", + "name": "UtilityAccountStatementRollup", + "ofType": null + } + }, + { + "args": [], + "name": "utilityAccountStatement", + "type": { + "kind": "OBJECT", + "name": "UtilityAccountStatement", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterStatementsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementFilter", + "ofType": null + } + } + ], + "name": "utilityMeterStatements", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeterStatementsConnection", + "ofType": null + } + } + }, + { + "args": [], + "name": "deletedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "args": [], + "name": "normalizedTotalCharges", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "totalCharges", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMetersOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterFilter", + "ofType": null + } + } + ], + "name": "utilityMetersByMeterStatementAccountStatementIdAndUtilityMeterId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AccountStatementUtilityMetersByMeterStatementAccountStatementIdAndUtilityMeterIdManyToManyConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilitiesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityFilter", + "ofType": null + } + } + ], + "name": "facilitiesByUtilityMeterStatementAccountStatementIdAndFacilityId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AccountStatementFacilitiesByUtilityMeterStatementAccountStatementIdAndFacilityIdManyToManyConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityAccountsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountFilter", + "ofType": null + } + } + ], + "name": "utilityAccountsByUtilityMeterStatementAccountStatementIdAndUtilityAccountId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AccountStatementUtilityAccountsByUtilityMeterStatementAccountStatementIdAndUtilityAccountIdManyToManyConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMetersOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterFilter", + "ofType": null + } + } + ], + "name": "utilityMetersByUtilityMeterStatementAccountStatementIdAndUtilityMeterId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AccountStatementUtilityMetersByUtilityMeterStatementAccountStatementIdAndUtilityMeterIdManyToManyConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "AccountStatement", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "MANUAL" + }, + { + "name": "URJANET" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "UtilityIntegration", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "SCALAR", + "name": "Boolean", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "SCALAR", + "name": "JSON", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "integration", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityIntegration", + "ofType": null + } + } + }, + { + "args": [], + "name": "integrationAccountKey", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "accountNumber", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "metadata", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + }, + { + "args": [], + "name": "utilityProviderId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "deletedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "args": [], + "name": "utilityProvider", + "type": { + "kind": "OBJECT", + "name": "UtilityProvider", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AccountStatementsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountStatementCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountStatementFilter", + "ofType": null + } + } + ], + "name": "accountStatements", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AccountStatementsConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMetersOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterFilter", + "ofType": null + } + } + ], + "name": "utilityMeters", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMetersConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityAccountStatementRollupsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountStatementRollupCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountStatementRollupFilter", + "ofType": null + } + } + ], + "name": "utilityAccountStatementRollups", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityAccountStatementRollupsConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityAccountStatementsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountStatementCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountStatementFilter", + "ofType": null + } + } + ], + "name": "utilityAccountStatements", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityAccountStatementsConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterStatementRollupsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupFilter", + "ofType": null + } + } + ], + "name": "utilityMeterStatementRollups", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeterStatementRollupsConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterStatementsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementFilter", + "ofType": null + } + } + ], + "name": "utilityMeterStatements", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeterStatementsConnection", + "ofType": null + } + } + }, + { + "args": [], + "name": "displayName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountMissingStatementFilter", + "ofType": null + } + } + ], + "name": "missingStatements", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AccountMissingStatementsConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilitiesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityFilter", + "ofType": null + } + } + ], + "name": "facilitiesByUtilityMeterUtilityAccountIdAndFacilityId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityAccountFacilitiesByUtilityMeterUtilityAccountIdAndFacilityIdManyToManyConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilitiesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityFilter", + "ofType": null + } + } + ], + "name": "facilitiesByUtilityMeterStatementRollupUtilityAccountIdAndFacilityId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityAccountFacilitiesByUtilityMeterStatementRollupUtilityAccountIdAndFacilityIdManyToManyConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMetersOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterFilter", + "ofType": null + } + } + ], + "name": "utilityMetersByUtilityMeterStatementRollupUtilityAccountIdAndUtilityMeterId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityAccountUtilityMetersByUtilityMeterStatementRollupUtilityAccountIdAndUtilityMeterIdManyToManyConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilitiesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityFilter", + "ofType": null + } + } + ], + "name": "facilitiesByUtilityMeterStatementUtilityAccountIdAndFacilityId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityAccountFacilitiesByUtilityMeterStatementUtilityAccountIdAndFacilityIdManyToManyConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMetersOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterFilter", + "ofType": null + } + } + ], + "name": "utilityMetersByUtilityMeterStatementUtilityAccountIdAndUtilityMeterId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityAccountUtilityMetersByUtilityMeterStatementUtilityAccountIdAndUtilityMeterIdManyToManyConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AccountStatementsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountStatementCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountStatementFilter", + "ofType": null + } + } + ], + "name": "accountStatementsByUtilityMeterStatementUtilityAccountIdAndAccountStatementId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityAccountAccountStatementsByUtilityMeterStatementUtilityAccountIdAndAccountStatementIdManyToManyConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "UtilityAccount", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityAccountsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountFilter", + "ofType": null + } + } + ], + "name": "utilityAccounts", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityAccountsConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "UtilityProvider", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityAccount", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityAccountsEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityAccountsConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityAccount", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityAccountsEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "SCALAR", + "name": "Cursor", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "hasNextPage", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "args": [], + "name": "hasPreviousPage", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "args": [], + "name": "startCursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "endCursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "PageInfo", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "ID_ASC" + }, + { + "name": "ID_DESC" + }, + { + "name": "INTEGRATION_ASC" + }, + { + "name": "INTEGRATION_DESC" + }, + { + "name": "INTEGRATION_ACCOUNT_KEY_ASC" + }, + { + "name": "INTEGRATION_ACCOUNT_KEY_DESC" + }, + { + "name": "ACCOUNT_NUMBER_ASC" + }, + { + "name": "ACCOUNT_NUMBER_DESC" + }, + { + "name": "NAME_ASC" + }, + { + "name": "NAME_DESC" + }, + { + "name": "METADATA_ASC" + }, + { + "name": "METADATA_DESC" + }, + { + "name": "UTILITY_PROVIDER_ID_ASC" + }, + { + "name": "UTILITY_PROVIDER_ID_DESC" + }, + { + "name": "CREATED_AT_ASC" + }, + { + "name": "CREATED_AT_DESC" + }, + { + "name": "UPDATED_AT_ASC" + }, + { + "name": "UPDATED_AT_DESC" + }, + { + "name": "DELETED_AT_ASC" + }, + { + "name": "DELETED_AT_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_COUNT_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_COUNT_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_PROVIDER_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_PROVIDER_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_INTERVAL_START_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_INTERVAL_START_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_INTERVAL_END_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_INTERVAL_END_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_BILL_COST_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_BILL_COST_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_BILL_USAGE_COST_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_BILL_USAGE_COST_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_BILL_DEMAND_COST_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_BILL_DEMAND_COST_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_FEES_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_FEES_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_TAXES_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_TAXES_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_CREDITS_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_CREDITS_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_PERCENT_CHANGE_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_PERCENT_CHANGE_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_SUM_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_PROVIDER_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_PROVIDER_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_INTERVAL_START_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_INTERVAL_START_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_INTERVAL_END_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_INTERVAL_END_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_COST_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_COST_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_USAGE_COST_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_USAGE_COST_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_DEMAND_COST_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_DEMAND_COST_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_FEES_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_FEES_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_TAXES_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_TAXES_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_CREDITS_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_CREDITS_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_PERCENT_CHANGE_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_PERCENT_CHANGE_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_COUNT_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_PROVIDER_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_PROVIDER_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_INTERVAL_START_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_INTERVAL_START_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_INTERVAL_END_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_INTERVAL_END_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_BILL_COST_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_BILL_COST_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_BILL_USAGE_COST_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_BILL_USAGE_COST_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_BILL_DEMAND_COST_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_BILL_DEMAND_COST_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_FEES_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_FEES_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_TAXES_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_TAXES_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_CREDITS_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_CREDITS_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_PERCENT_CHANGE_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_PERCENT_CHANGE_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MIN_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_PROVIDER_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_PROVIDER_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_INTERVAL_START_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_INTERVAL_START_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_INTERVAL_END_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_INTERVAL_END_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_BILL_COST_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_BILL_COST_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_BILL_USAGE_COST_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_BILL_USAGE_COST_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_BILL_DEMAND_COST_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_BILL_DEMAND_COST_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_FEES_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_FEES_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_TAXES_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_TAXES_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_CREDITS_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_CREDITS_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_PERCENT_CHANGE_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_PERCENT_CHANGE_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_MAX_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_PROVIDER_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_PROVIDER_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_INTERVAL_START_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_INTERVAL_START_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_INTERVAL_END_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_INTERVAL_END_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_BILL_COST_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_BILL_COST_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_BILL_USAGE_COST_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_BILL_USAGE_COST_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_BILL_DEMAND_COST_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_BILL_DEMAND_COST_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_FEES_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_FEES_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_TAXES_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_TAXES_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_CREDITS_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_CREDITS_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_PERCENT_CHANGE_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_PERCENT_CHANGE_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_AVERAGE_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_PROVIDER_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_PROVIDER_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_INTERVAL_START_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_INTERVAL_START_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_INTERVAL_END_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_INTERVAL_END_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_COST_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_COST_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_USAGE_COST_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_USAGE_COST_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_DEMAND_COST_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_DEMAND_COST_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_FEES_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_FEES_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_TAXES_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_TAXES_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_CREDITS_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_CREDITS_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_PERCENT_CHANGE_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_PERCENT_CHANGE_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_SAMPLE_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_PROVIDER_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_PROVIDER_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_INTERVAL_START_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_INTERVAL_START_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_INTERVAL_END_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_INTERVAL_END_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_COST_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_COST_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_USAGE_COST_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_USAGE_COST_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_DEMAND_COST_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_DEMAND_COST_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_FEES_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_FEES_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_TAXES_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_TAXES_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_CREDITS_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_CREDITS_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_PERCENT_CHANGE_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_PERCENT_CHANGE_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_STDDEV_POPULATION_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_PROVIDER_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_PROVIDER_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_INTERVAL_START_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_INTERVAL_START_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_INTERVAL_END_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_INTERVAL_END_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_COST_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_COST_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_USAGE_COST_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_USAGE_COST_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_DEMAND_COST_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_DEMAND_COST_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_FEES_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_FEES_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_TAXES_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_TAXES_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_CREDITS_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_CREDITS_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_PERCENT_CHANGE_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_PERCENT_CHANGE_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_PROVIDER_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_PROVIDER_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_INTERVAL_START_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_INTERVAL_START_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_INTERVAL_END_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_INTERVAL_END_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_COST_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_COST_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_USAGE_COST_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_USAGE_COST_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_DEMAND_COST_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_DEMAND_COST_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_FEES_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_FEES_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_TAXES_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_TAXES_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_CREDITS_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_CREDITS_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_PERCENT_CHANGE_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_PERCENT_CHANGE_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_VARIANCE_POPULATION_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_PROVIDER_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_PROVIDER_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_INTERVAL_START_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_INTERVAL_START_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_INTERVAL_END_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_INTERVAL_END_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_BILL_COST_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_BILL_COST_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_BILL_USAGE_COST_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_BILL_USAGE_COST_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_BILL_DEMAND_COST_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_BILL_DEMAND_COST_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_FEES_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_FEES_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_TAXES_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_TAXES_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_CREDITS_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_CREDITS_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_PERCENT_CHANGE_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_PERCENT_CHANGE_DESC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_ACCOUNT_STATEMENT_ROLLUPS_DISTINCT_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_COUNT_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_COUNT_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_NET_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_NET_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_USAGE_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_USAGE_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_DEMAND_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_DEMAND_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_DEMAND_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_DEMAND_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_FEES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_FEES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_TAXES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_TAXES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_CREDITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_CREDITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_BLENDED_RATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_BLENDED_RATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_LOAD_FACTOR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_LOAD_FACTOR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_PERCENT_CHANGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_PERCENT_CHANGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_NET_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_NET_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_USAGE_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_USAGE_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_DEMAND_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_DEMAND_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_DEMAND_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_DEMAND_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_FEES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_FEES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_TAXES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_TAXES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_CREDITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_CREDITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BLENDED_RATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BLENDED_RATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_LOAD_FACTOR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_LOAD_FACTOR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_PERCENT_CHANGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_PERCENT_CHANGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_NET_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_NET_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_USAGE_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_USAGE_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_DEMAND_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_DEMAND_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_DEMAND_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_DEMAND_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_FEES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_FEES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_TAXES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_TAXES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_CREDITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_CREDITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_BLENDED_RATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_BLENDED_RATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_LOAD_FACTOR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_LOAD_FACTOR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_PERCENT_CHANGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_PERCENT_CHANGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_NET_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_NET_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_USAGE_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_USAGE_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_DEMAND_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_DEMAND_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_DEMAND_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_DEMAND_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_FEES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_FEES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_TAXES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_TAXES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_CREDITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_CREDITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_BLENDED_RATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_BLENDED_RATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_LOAD_FACTOR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_LOAD_FACTOR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_PERCENT_CHANGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_PERCENT_CHANGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_NET_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_NET_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_USAGE_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_USAGE_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_DEMAND_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_DEMAND_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_DEMAND_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_DEMAND_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_FEES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_FEES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_TAXES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_TAXES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_CREDITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_CREDITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BLENDED_RATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BLENDED_RATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_LOAD_FACTOR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_LOAD_FACTOR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_PERCENT_CHANGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_PERCENT_CHANGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_NET_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_NET_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_USAGE_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_USAGE_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_DEMAND_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_DEMAND_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_DEMAND_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_DEMAND_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_FEES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_FEES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_TAXES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_TAXES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_CREDITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_CREDITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BLENDED_RATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BLENDED_RATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_LOAD_FACTOR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_LOAD_FACTOR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_PERCENT_CHANGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_PERCENT_CHANGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_NET_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_NET_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_USAGE_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_USAGE_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_DEMAND_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_DEMAND_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_DEMAND_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_DEMAND_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_FEES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_FEES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_TAXES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_TAXES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_CREDITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_CREDITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BLENDED_RATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BLENDED_RATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_LOAD_FACTOR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_LOAD_FACTOR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_PERCENT_CHANGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_PERCENT_CHANGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_NET_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_NET_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_USAGE_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_USAGE_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_DEMAND_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_DEMAND_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_DEMAND_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_DEMAND_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_FEES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_FEES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_TAXES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_TAXES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_CREDITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_CREDITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BLENDED_RATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BLENDED_RATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_LOAD_FACTOR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_LOAD_FACTOR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_PERCENT_CHANGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_PERCENT_CHANGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_NET_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_NET_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_USAGE_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_USAGE_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_DEMAND_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_DEMAND_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_DEMAND_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_DEMAND_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_FEES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_FEES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_TAXES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_TAXES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_CREDITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_CREDITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BLENDED_RATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BLENDED_RATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_LOAD_FACTOR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_LOAD_FACTOR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_PERCENT_CHANGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_PERCENT_CHANGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_NET_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_NET_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_USAGE_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_USAGE_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_DEMAND_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_DEMAND_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_DEMAND_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_DEMAND_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_FEES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_FEES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_TAXES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_TAXES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_CREDITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_CREDITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BLENDED_RATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BLENDED_RATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_LOAD_FACTOR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_LOAD_FACTOR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_PERCENT_CHANGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_PERCENT_CHANGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_COUNT_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_COUNT_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_EXCLUDE_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_EXCLUDE_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_EXCLUDE_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_EXCLUDE_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_EXCLUDE_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_EXCLUDE_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_EXCLUDE_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_EXCLUDE_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_EXCLUDE_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_EXCLUDE_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_EXCLUDE_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_EXCLUDE_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_EXCLUDE_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_EXCLUDE_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_EXCLUDE_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_EXCLUDE_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_EXCLUDE_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_EXCLUDE_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_EXCLUDE_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_EXCLUDE_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_ACCOUNT_STATEMENT_ID_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "UtilityAccountsOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "integration", + "type": { + "kind": "ENUM", + "name": "UtilityIntegration", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "integrationAccountKey", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountNumber", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "metadata", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityProviderId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "deletedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityAccountCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "integration", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityIntegrationFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "integrationAccountKey", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountNumber", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "metadata", + "type": { + "kind": "INPUT_OBJECT", + "name": "JSONFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityProviderId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "deletedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "displayName", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityAccountFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "isNull", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "equalTo", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notEqualTo", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "distinctFrom", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notDistinctFrom", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "in", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "notIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "lessThan", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "lessThanOrEqualTo", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThan", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThanOrEqualTo", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "isNull", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "equalTo", + "type": { + "kind": "ENUM", + "name": "UtilityIntegration", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notEqualTo", + "type": { + "kind": "ENUM", + "name": "UtilityIntegration", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "distinctFrom", + "type": { + "kind": "ENUM", + "name": "UtilityIntegration", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notDistinctFrom", + "type": { + "kind": "ENUM", + "name": "UtilityIntegration", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "in", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityIntegration", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "notIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityIntegration", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "lessThan", + "type": { + "kind": "ENUM", + "name": "UtilityIntegration", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "lessThanOrEqualTo", + "type": { + "kind": "ENUM", + "name": "UtilityIntegration", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThan", + "type": { + "kind": "ENUM", + "name": "UtilityIntegration", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThanOrEqualTo", + "type": { + "kind": "ENUM", + "name": "UtilityIntegration", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityIntegrationFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "isNull", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "equalTo", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notEqualTo", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "distinctFrom", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notDistinctFrom", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "in", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "notIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "lessThan", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "lessThanOrEqualTo", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThan", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThanOrEqualTo", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "includes", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notIncludes", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "includesInsensitive", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notIncludesInsensitive", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startsWith", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notStartsWith", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startsWithInsensitive", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notStartsWithInsensitive", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "endsWith", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notEndsWith", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "endsWithInsensitive", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notEndsWithInsensitive", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "like", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notLike", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "likeInsensitive", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notLikeInsensitive", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "equalToInsensitive", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notEqualToInsensitive", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "distinctFromInsensitive", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notDistinctFromInsensitive", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "inInsensitive", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "notInInsensitive", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "lessThanInsensitive", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "lessThanOrEqualToInsensitive", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThanInsensitive", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThanOrEqualToInsensitive", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "isNull", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "equalTo", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notEqualTo", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "distinctFrom", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notDistinctFrom", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "in", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "notIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "lessThan", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "lessThanOrEqualTo", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThan", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThanOrEqualTo", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "contains", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "containsKey", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "containsAllKeys", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "containsAnyKeys", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "containedBy", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "JSONFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "isNull", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "equalTo", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notEqualTo", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "distinctFrom", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notDistinctFrom", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "in", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "notIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "lessThan", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "lessThanOrEqualTo", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThan", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThanOrEqualTo", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AccountStatement", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AccountStatementsEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "AccountStatementsConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AccountStatement", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "AccountStatementsEdge", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "ID_ASC" + }, + { + "name": "ID_DESC" + }, + { + "name": "INTEGRATION_ASC" + }, + { + "name": "INTEGRATION_DESC" + }, + { + "name": "INTEGRATION_KEY_ASC" + }, + { + "name": "INTEGRATION_KEY_DESC" + }, + { + "name": "UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "STATEMENT_YEAR_ASC" + }, + { + "name": "STATEMENT_YEAR_DESC" + }, + { + "name": "STATEMENT_MONTH_ASC" + }, + { + "name": "STATEMENT_MONTH_DESC" + }, + { + "name": "NORMALIZED_CURRENCY_CODE_ASC" + }, + { + "name": "NORMALIZED_CURRENCY_CODE_DESC" + }, + { + "name": "CURRENCY_CODE_ASC" + }, + { + "name": "CURRENCY_CODE_DESC" + }, + { + "name": "OVERRIDE_CURRENCY_CODE_ASC" + }, + { + "name": "OVERRIDE_CURRENCY_CODE_DESC" + }, + { + "name": "OVERRIDE_AT_ASC" + }, + { + "name": "OVERRIDE_AT_DESC" + }, + { + "name": "IS_VALIDATED_ASC" + }, + { + "name": "IS_VALIDATED_DESC" + }, + { + "name": "METADATA_ASC" + }, + { + "name": "METADATA_DESC" + }, + { + "name": "CREATED_AT_ASC" + }, + { + "name": "CREATED_AT_DESC" + }, + { + "name": "UPDATED_AT_ASC" + }, + { + "name": "UPDATED_AT_DESC" + }, + { + "name": "INTERVAL_START_ASC" + }, + { + "name": "INTERVAL_START_DESC" + }, + { + "name": "INTERVAL_END_ASC" + }, + { + "name": "INTERVAL_END_DESC" + }, + { + "name": "DELETED_AT_ASC" + }, + { + "name": "DELETED_AT_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_COUNT_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_COUNT_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_EXCLUDE_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_EXCLUDE_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_EXCLUDE_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_EXCLUDE_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_EXCLUDE_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_EXCLUDE_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_EXCLUDE_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_EXCLUDE_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_EXCLUDE_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_EXCLUDE_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_EXCLUDE_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_EXCLUDE_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_EXCLUDE_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_EXCLUDE_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_EXCLUDE_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_EXCLUDE_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_EXCLUDE_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_EXCLUDE_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_EXCLUDE_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_EXCLUDE_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_ACCOUNT_STATEMENT_ID_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "AccountStatementsOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "integration", + "type": { + "kind": "ENUM", + "name": "UtilityIntegration", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "integrationKey", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityAccountId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementYear", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementMonth", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "normalizedCurrencyCode", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "overrideAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "isValidated", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "metadata", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "intervalStart", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "intervalEnd", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "AccountStatementCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "currencyCode", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "integration", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityIntegrationFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "integrationKey", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityAccountId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementYear", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementMonth", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "normalizedCurrencyCode", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "overrideAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "isValidated", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "metadata", + "type": { + "kind": "INPUT_OBJECT", + "name": "JSONFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "intervalStart", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "intervalEnd", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "deletedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "normalizedTotalCharges", + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "totalCharges", + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AccountStatementFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AccountStatementFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountStatementFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "AccountStatementFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "isNull", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "equalTo", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notEqualTo", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "distinctFrom", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notDistinctFrom", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "in", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "notIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "lessThan", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "lessThanOrEqualTo", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThan", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThanOrEqualTo", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "BooleanFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "isNull", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "equalTo", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notEqualTo", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "distinctFrom", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notDistinctFrom", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "in", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "notIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "lessThan", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "lessThanOrEqualTo", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThan", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThanOrEqualTo", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DateFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "isNull", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "equalTo", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notEqualTo", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "distinctFrom", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notDistinctFrom", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "in", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "notIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "lessThan", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "lessThanOrEqualTo", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThan", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThanOrEqualTo", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "FloatFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeter", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMetersEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityMetersConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "utilityAccountId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "serviceType", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterServiceType", + "ofType": null + } + } + }, + { + "args": [], + "name": "integrationMeterKey", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "facilityId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "meterNumber", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "activeStart", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + } + }, + { + "args": [], + "name": "activeEnd", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "args": [], + "name": "metadata", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + }, + { + "args": [], + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "overrideAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "args": [], + "name": "excludeUsage", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "args": [], + "name": "defaultDemandUnits", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "defaultUsageUnits", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "utilityAccount", + "type": { + "kind": "OBJECT", + "name": "UtilityAccount", + "ofType": null + } + }, + { + "args": [], + "name": "facility", + "type": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MeterStatementsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "MeterStatementCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "MeterStatementFilter", + "ofType": null + } + } + ], + "name": "meterStatements", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MeterStatementsConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterStatementRollupsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupFilter", + "ofType": null + } + } + ], + "name": "utilityMeterStatementRollups", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeterStatementRollupsConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterStatementsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementFilter", + "ofType": null + } + } + ], + "name": "utilityMeterStatements", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeterStatementsConnection", + "ofType": null + } + } + }, + { + "args": [], + "name": "deletedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMetersMissingStatementsRecordFilter", + "ofType": null + } + } + ], + "name": "missingStatements", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMetersMissingStatementsConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AccountStatementsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountStatementCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountStatementFilter", + "ofType": null + } + } + ], + "name": "accountStatementsByMeterStatementUtilityMeterIdAndAccountStatementId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeterAccountStatementsByMeterStatementUtilityMeterIdAndAccountStatementIdManyToManyConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilitiesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityFilter", + "ofType": null + } + } + ], + "name": "facilitiesByUtilityMeterStatementRollupUtilityMeterIdAndFacilityId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeterFacilitiesByUtilityMeterStatementRollupUtilityMeterIdAndFacilityIdManyToManyConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityAccountsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountFilter", + "ofType": null + } + } + ], + "name": "utilityAccountsByUtilityMeterStatementRollupUtilityMeterIdAndUtilityAccountId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeterUtilityAccountsByUtilityMeterStatementRollupUtilityMeterIdAndUtilityAccountIdManyToManyConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilitiesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityFilter", + "ofType": null + } + } + ], + "name": "facilitiesByUtilityMeterStatementUtilityMeterIdAndFacilityId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeterFacilitiesByUtilityMeterStatementUtilityMeterIdAndFacilityIdManyToManyConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityAccountsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountFilter", + "ofType": null + } + } + ], + "name": "utilityAccountsByUtilityMeterStatementUtilityMeterIdAndUtilityAccountId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeterUtilityAccountsByUtilityMeterStatementUtilityMeterIdAndUtilityAccountIdManyToManyConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AccountStatementsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountStatementCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountStatementFilter", + "ofType": null + } + } + ], + "name": "accountStatementsByUtilityMeterStatementUtilityMeterIdAndAccountStatementId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeterAccountStatementsByUtilityMeterStatementUtilityMeterIdAndAccountStatementIdManyToManyConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "UtilityMeter", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "ELECTRIC" + }, + { + "name": "WATER" + }, + { + "name": "SEWER" + }, + { + "name": "NATURAL_GAS" + }, + { + "name": "IRRIGATION" + }, + { + "name": "SANITATION" + }, + { + "name": "SOLAR" + }, + { + "name": "LIGHTING" + }, + { + "name": "PROPANE" + }, + { + "name": "OTHER" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "UtilityMeterServiceType", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "slug", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "address", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "city", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "zip", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "args": [], + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "args": [], + "name": "timezoneName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "unitGroup", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "country", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "Country", + "ofType": null + } + } + }, + { + "args": [], + "name": "config", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + }, + { + "args": [], + "name": "geometry", + "type": { + "kind": "INTERFACE", + "name": "GeometryInterface", + "ofType": null + } + }, + { + "args": [], + "name": "retiredAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "args": [], + "name": "facilityContacts", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "latitude", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "longitude", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "nSight2Active", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "args": [], + "name": "nSightActive", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "args": [], + "name": "realTimeEnabled", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "args": [], + "name": "bonusLtr", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "args": [], + "name": "commodity", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "goLiveDate", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "args": [], + "name": "linkActive", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "args": [], + "name": "metricsOneActive", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "args": [], + "name": "preBonusEbitda", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "args": [], + "name": "suppresseFinancials", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "args": [], + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "wms", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "costCenter", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "timezone", + "type": { + "kind": "OBJECT", + "name": "Timezone", + "ofType": null + } + }, + { + "args": [], + "name": "unitGroupByUnitGroup", + "type": { + "kind": "OBJECT", + "name": "UnitGroup", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMetersOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterFilter", + "ofType": null + } + } + ], + "name": "utilityMeters", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMetersConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "BuildingAreasOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "BuildingAreaCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "BuildingAreaFilter", + "ofType": null + } + } + ], + "name": "buildingAreas", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "BuildingAreasConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ComponentsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ComponentCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ComponentFilter", + "ofType": null + } + } + ], + "name": "components", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ComponentsConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilityCommunicationsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityCommunicationCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityCommunicationFilter", + "ofType": null + } + } + ], + "name": "communications", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityCommunicationsConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilityDataSourcesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityDataSourceCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityDataSourceFilter", + "ofType": null + } + } + ], + "name": "facilityDataSources", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityDataSourcesConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilityGroupsLinkersOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityGroupsLinkerCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityGroupsLinkerFilter", + "ofType": null + } + } + ], + "name": "facilityGroupsLinkers", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityGroupsLinkersConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFilter", + "ofType": null + } + } + ], + "name": "projects", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectsConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MainServicesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "MainServiceCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "MainServiceFilter", + "ofType": null + } + } + ], + "name": "mainServices", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MainServicesConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterStatementRollupsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupFilter", + "ofType": null + } + } + ], + "name": "utilityMeterStatementRollups", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeterStatementRollupsConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterStatementsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementFilter", + "ofType": null + } + } + ], + "name": "utilityMeterStatements", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeterStatementsConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountStatementFilter", + "ofType": null + } + } + ], + "name": "accountStatements", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AccountStatementsConnection", + "ofType": null + } + } + }, + { + "args": [], + "name": "activeCommunication", + "type": { + "kind": "OBJECT", + "name": "FacilityCommunication", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountStatementRollupFilter", + "ofType": null + } + } + ], + "name": "activeUtilityAccountStatementRollups", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityAccountStatementRollupsConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountStatementRollupFilter", + "ofType": null + } + } + ], + "name": "utilityAccountStatementRollups", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityAccountStatementRollupsConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountStatementFilter", + "ofType": null + } + } + ], + "name": "utilityAccountStatements", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityAccountStatementsConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountFilter", + "ofType": null + } + } + ], + "name": "utilityAccounts", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityAccountsConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": "false", + "name": "mutableOnly", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + ], + "name": "metricLabels", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MetricLabel", + "ofType": null + } + } + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "from", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "to", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "TIME_ASC", + "name": "orderBy", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataOrderBy", + "ofType": null + } + } + } + ], + "name": "mutableMetricData", + "type": { + "kind": "OBJECT", + "name": "MetricDataConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "from", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "to", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "aggregation", + "type": { + "kind": "ENUM", + "name": "MetricDataAggregationMethod", + "ofType": null + } + }, + { + "defaultValue": "\"1 day\"", + "name": "window", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "samplingWindow", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "TIME_ASC", + "name": "orderBy", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataOrderBy", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "unit", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "unitGroup", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "name": "metricData", + "type": { + "kind": "OBJECT", + "name": "MetricDataConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityAccountsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountFilter", + "ofType": null + } + } + ], + "name": "utilityAccountsByUtilityMeterFacilityIdAndUtilityAccountId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityUtilityAccountsByUtilityMeterFacilityIdAndUtilityAccountIdManyToManyConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "BuildingAreaTypesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "BuildingAreaTypeCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "BuildingAreaTypeFilter", + "ofType": null + } + } + ], + "name": "buildingAreaTypesByBuildingAreaFacilityIdAndBuildingAreaTypeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityBuildingAreaTypesByBuildingAreaFacilityIdAndBuildingAreaTypeIdManyToManyConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MachineUsersOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "MachineUserCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "MachineUserFilter", + "ofType": null + } + } + ], + "name": "machineUsersByComponentFacilityIdAndMachineUserId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityMachineUsersByComponentFacilityIdAndMachineUserIdManyToManyConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "EventTypesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "EventTypeCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "EventTypeFilter", + "ofType": null + } + } + ], + "name": "eventTypesByEventFacilityIdAndType", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityEventTypesByEventFacilityIdAndTypeManyToManyConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "DataSourcesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "DataSourceCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "DataSourceFilter", + "ofType": null + } + } + ], + "name": "dataSources", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityDataSourcesManyToManyConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilityGroupsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityGroupCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityGroupFilter", + "ofType": null + } + } + ], + "name": "facilityGroups", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityFacilityGroupsManyToManyConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectTypesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectTypeCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectTypeFilter", + "ofType": null + } + } + ], + "name": "projectTypesByProjectFacilityIdAndProjectTypeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityProjectTypesByProjectFacilityIdAndProjectTypeIdManyToManyConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProgramsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProgramCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProgramFilter", + "ofType": null + } + } + ], + "name": "programsByProjectFacilityIdAndProgramId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityProgramsByProjectFacilityIdAndProgramIdManyToManyConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityAccountsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountFilter", + "ofType": null + } + } + ], + "name": "utilityAccountsByUtilityMeterStatementRollupFacilityIdAndUtilityAccountId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityUtilityAccountsByUtilityMeterStatementRollupFacilityIdAndUtilityAccountIdManyToManyConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMetersOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterFilter", + "ofType": null + } + } + ], + "name": "utilityMetersByUtilityMeterStatementRollupFacilityIdAndUtilityMeterId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityUtilityMetersByUtilityMeterStatementRollupFacilityIdAndUtilityMeterIdManyToManyConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityAccountsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountFilter", + "ofType": null + } + } + ], + "name": "utilityAccountsByUtilityMeterStatementFacilityIdAndUtilityAccountId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityUtilityAccountsByUtilityMeterStatementFacilityIdAndUtilityAccountIdManyToManyConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMetersOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterFilter", + "ofType": null + } + } + ], + "name": "utilityMetersByUtilityMeterStatementFacilityIdAndUtilityMeterId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityUtilityMetersByUtilityMeterStatementFacilityIdAndUtilityMeterIdManyToManyConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AccountStatementsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountStatementCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountStatementFilter", + "ofType": null + } + } + ], + "name": "accountStatementsByUtilityMeterStatementFacilityIdAndAccountStatementId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityAccountStatementsByUtilityMeterStatementFacilityIdAndAccountStatementIdManyToManyConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "Asset", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "Facility", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "INTERFACE", + "name": "Asset", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + ] + }, + { + "enumValues": [ + { + "name": "DZA" + }, + { + "name": "EGY" + }, + { + "name": "LBY" + }, + { + "name": "MAR" + }, + { + "name": "SDN" + }, + { + "name": "TUN" + }, + { + "name": "ESH" + }, + { + "name": "IOT" + }, + { + "name": "BDI" + }, + { + "name": "COM" + }, + { + "name": "DJI" + }, + { + "name": "ERI" + }, + { + "name": "ETH" + }, + { + "name": "ATF" + }, + { + "name": "KEN" + }, + { + "name": "MDG" + }, + { + "name": "MWI" + }, + { + "name": "MUS" + }, + { + "name": "MYT" + }, + { + "name": "MOZ" + }, + { + "name": "REU" + }, + { + "name": "RWA" + }, + { + "name": "SYC" + }, + { + "name": "SOM" + }, + { + "name": "SSD" + }, + { + "name": "UGA" + }, + { + "name": "TZA" + }, + { + "name": "ZMB" + }, + { + "name": "ZWE" + }, + { + "name": "AGO" + }, + { + "name": "CMR" + }, + { + "name": "CAF" + }, + { + "name": "TCD" + }, + { + "name": "COG" + }, + { + "name": "COD" + }, + { + "name": "GNQ" + }, + { + "name": "GAB" + }, + { + "name": "STP" + }, + { + "name": "BWA" + }, + { + "name": "SWZ" + }, + { + "name": "LSO" + }, + { + "name": "NAM" + }, + { + "name": "ZAF" + }, + { + "name": "BEN" + }, + { + "name": "BFA" + }, + { + "name": "CPV" + }, + { + "name": "CIV" + }, + { + "name": "GMB" + }, + { + "name": "GHA" + }, + { + "name": "GIN" + }, + { + "name": "GNB" + }, + { + "name": "LBR" + }, + { + "name": "MLI" + }, + { + "name": "MRT" + }, + { + "name": "NER" + }, + { + "name": "NGA" + }, + { + "name": "SHN" + }, + { + "name": "SEN" + }, + { + "name": "SLE" + }, + { + "name": "TGO" + }, + { + "name": "AIA" + }, + { + "name": "ATG" + }, + { + "name": "ABW" + }, + { + "name": "BHS" + }, + { + "name": "BRB" + }, + { + "name": "BES" + }, + { + "name": "VGB" + }, + { + "name": "CYM" + }, + { + "name": "CUB" + }, + { + "name": "CUW" + }, + { + "name": "DMA" + }, + { + "name": "DOM" + }, + { + "name": "GRD" + }, + { + "name": "GLP" + }, + { + "name": "HTI" + }, + { + "name": "JAM" + }, + { + "name": "MTQ" + }, + { + "name": "MSR" + }, + { + "name": "PRI" + }, + { + "name": "BLM" + }, + { + "name": "KNA" + }, + { + "name": "LCA" + }, + { + "name": "MAF" + }, + { + "name": "VCT" + }, + { + "name": "SXM" + }, + { + "name": "TTO" + }, + { + "name": "TCA" + }, + { + "name": "VIR" + }, + { + "name": "BLZ" + }, + { + "name": "CRI" + }, + { + "name": "SLV" + }, + { + "name": "GTM" + }, + { + "name": "HND" + }, + { + "name": "MEX" + }, + { + "name": "NIC" + }, + { + "name": "PAN" + }, + { + "name": "ARG" + }, + { + "name": "BOL" + }, + { + "name": "BVT" + }, + { + "name": "BRA" + }, + { + "name": "CHL" + }, + { + "name": "COL" + }, + { + "name": "ECU" + }, + { + "name": "FLK" + }, + { + "name": "GUF" + }, + { + "name": "GUY" + }, + { + "name": "PRY" + }, + { + "name": "PER" + }, + { + "name": "SGS" + }, + { + "name": "SUR" + }, + { + "name": "URY" + }, + { + "name": "VEN" + }, + { + "name": "BMU" + }, + { + "name": "CAN" + }, + { + "name": "GRL" + }, + { + "name": "SPM" + }, + { + "name": "USA" + }, + { + "name": "ATA" + }, + { + "name": "KAZ" + }, + { + "name": "KGZ" + }, + { + "name": "TJK" + }, + { + "name": "TKM" + }, + { + "name": "UZB" + }, + { + "name": "CHN" + }, + { + "name": "HKG" + }, + { + "name": "MAC" + }, + { + "name": "PRK" + }, + { + "name": "JPN" + }, + { + "name": "MNG" + }, + { + "name": "KOR" + }, + { + "name": "BRN" + }, + { + "name": "KHM" + }, + { + "name": "IDN" + }, + { + "name": "LAO" + }, + { + "name": "MYS" + }, + { + "name": "MMR" + }, + { + "name": "PHL" + }, + { + "name": "SGP" + }, + { + "name": "THA" + }, + { + "name": "TLS" + }, + { + "name": "VNM" + }, + { + "name": "AFG" + }, + { + "name": "BGD" + }, + { + "name": "BTN" + }, + { + "name": "IND" + }, + { + "name": "IRN" + }, + { + "name": "MDV" + }, + { + "name": "NPL" + }, + { + "name": "PAK" + }, + { + "name": "LKA" + }, + { + "name": "ARM" + }, + { + "name": "AZE" + }, + { + "name": "BHR" + }, + { + "name": "CYP" + }, + { + "name": "GEO" + }, + { + "name": "IRQ" + }, + { + "name": "ISR" + }, + { + "name": "JOR" + }, + { + "name": "KWT" + }, + { + "name": "LBN" + }, + { + "name": "OMN" + }, + { + "name": "QAT" + }, + { + "name": "SAU" + }, + { + "name": "PSE" + }, + { + "name": "SYR" + }, + { + "name": "TUR" + }, + { + "name": "ARE" + }, + { + "name": "YEM" + }, + { + "name": "BLR" + }, + { + "name": "BGR" + }, + { + "name": "CZE" + }, + { + "name": "HUN" + }, + { + "name": "POL" + }, + { + "name": "MDA" + }, + { + "name": "ROU" + }, + { + "name": "RUS" + }, + { + "name": "SVK" + }, + { + "name": "UKR" + }, + { + "name": "ALA" + }, + { + "name": "GGY" + }, + { + "name": "JEY" + }, + { + "name": "DNK" + }, + { + "name": "EST" + }, + { + "name": "FRO" + }, + { + "name": "FIN" + }, + { + "name": "ISL" + }, + { + "name": "IRL" + }, + { + "name": "IMN" + }, + { + "name": "LVA" + }, + { + "name": "LTU" + }, + { + "name": "NOR" + }, + { + "name": "SJM" + }, + { + "name": "SWE" + }, + { + "name": "GBR" + }, + { + "name": "ALB" + }, + { + "name": "AND" + }, + { + "name": "BIH" + }, + { + "name": "HRV" + }, + { + "name": "GIB" + }, + { + "name": "GRC" + }, + { + "name": "VAT" + }, + { + "name": "ITA" + }, + { + "name": "MLT" + }, + { + "name": "MNE" + }, + { + "name": "MKD" + }, + { + "name": "PRT" + }, + { + "name": "SMR" + }, + { + "name": "SRB" + }, + { + "name": "SVN" + }, + { + "name": "ESP" + }, + { + "name": "AUT" + }, + { + "name": "BEL" + }, + { + "name": "FRA" + }, + { + "name": "DEU" + }, + { + "name": "LIE" + }, + { + "name": "LUX" + }, + { + "name": "MCO" + }, + { + "name": "NLD" + }, + { + "name": "CHE" + }, + { + "name": "AUS" + }, + { + "name": "CXR" + }, + { + "name": "CCK" + }, + { + "name": "HMD" + }, + { + "name": "NZL" + }, + { + "name": "NFK" + }, + { + "name": "FJI" + }, + { + "name": "NCL" + }, + { + "name": "PNG" + }, + { + "name": "SLB" + }, + { + "name": "VUT" + }, + { + "name": "GUM" + }, + { + "name": "KIR" + }, + { + "name": "MHL" + }, + { + "name": "FSM" + }, + { + "name": "NRU" + }, + { + "name": "MNP" + }, + { + "name": "PLW" + }, + { + "name": "UMI" + }, + { + "name": "ASM" + }, + { + "name": "COK" + }, + { + "name": "PYF" + }, + { + "name": "NIU" + }, + { + "name": "PCN" + }, + { + "name": "WSM" + }, + { + "name": "TKL" + }, + { + "name": "TON" + }, + { + "name": "TUV" + }, + { + "name": "WLF" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "Country", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "abbreviation", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "utcOffset", + "type": { + "kind": "OBJECT", + "name": "Interval", + "ofType": null + } + }, + { + "args": [], + "name": "isDst", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilitiesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityFilter", + "ofType": null + } + } + ], + "name": "facilitiesByTimezoneName", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilitiesConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UnitGroupsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UnitGroupCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UnitGroupFilter", + "ofType": null + } + } + ], + "name": "unitGroupsByFacilityTimezoneNameAndUnitGroup", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TimezoneUnitGroupsByFacilityTimezoneNameAndUnitGroupManyToManyConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "Timezone", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "seconds", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "minutes", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "hours", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "days", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "months", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "years", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "Interval", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilitiesEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "aggregates", + "type": { + "kind": "OBJECT", + "name": "FacilityAggregates", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "groupBy", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilitiesGroupBy", + "ofType": null + } + } + } + } + }, + { + "defaultValue": null, + "name": "having", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilitiesHavingInput", + "ofType": null + } + } + ], + "name": "groupedAggregates", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityAggregates", + "ofType": null + } + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "from", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "to", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "SUM", + "name": "aggregation", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataAggregationMethod", + "ofType": null + } + } + }, + { + "defaultValue": "\"1 day\"", + "name": "window", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "samplingWindow", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "TIME_ASC", + "name": "orderBy", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataOrderBy", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "unit", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "unitGroup", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "name": "metricData", + "type": { + "kind": "OBJECT", + "name": "MetricDataConnection", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilitiesConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilitiesEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "keys", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + { + "args": [], + "name": "sum", + "type": { + "kind": "OBJECT", + "name": "FacilitySumAggregates", + "ofType": null + } + }, + { + "args": [], + "name": "distinctCount", + "type": { + "kind": "OBJECT", + "name": "FacilityDistinctCountAggregates", + "ofType": null + } + }, + { + "args": [], + "name": "min", + "type": { + "kind": "OBJECT", + "name": "FacilityMinAggregates", + "ofType": null + } + }, + { + "args": [], + "name": "max", + "type": { + "kind": "OBJECT", + "name": "FacilityMaxAggregates", + "ofType": null + } + }, + { + "args": [], + "name": "average", + "type": { + "kind": "OBJECT", + "name": "FacilityAverageAggregates", + "ofType": null + } + }, + { + "args": [], + "name": "stddevSample", + "type": { + "kind": "OBJECT", + "name": "FacilityStddevSampleAggregates", + "ofType": null + } + }, + { + "args": [], + "name": "stddevPopulation", + "type": { + "kind": "OBJECT", + "name": "FacilityStddevPopulationAggregates", + "ofType": null + } + }, + { + "args": [], + "name": "varianceSample", + "type": { + "kind": "OBJECT", + "name": "FacilityVarianceSampleAggregates", + "ofType": null + } + }, + { + "args": [], + "name": "variancePopulation", + "type": { + "kind": "OBJECT", + "name": "FacilityVariancePopulationAggregates", + "ofType": null + } + }, + { + "args": [], + "name": "distinct", + "type": { + "kind": "OBJECT", + "name": "FacilityDistinctAggregates", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilityAggregates", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + { + "args": [], + "name": "latitude", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "longitude", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilitySumAggregates", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "SCALAR", + "name": "BigInt", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "id", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "name", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "slug", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "address", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "city", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "state", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "zip", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "timezoneName", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "unitGroup", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "country", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "config", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "geometry", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "retiredAt", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "facilityContacts", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "latitude", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "longitude", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "nSight2Active", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "nSightActive", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "realTimeEnabled", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "bonusLtr", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "commodity", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "goLiveDate", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "linkActive", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "metricsOneActive", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "preBonusEbitda", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "suppresseFinancials", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "type", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "wms", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "costCenter", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "activeCommunication", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilityDistinctCountAggregates", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "latitude", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "longitude", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilityMinAggregates", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "latitude", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "longitude", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilityMaxAggregates", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "id", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "latitude", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "longitude", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilityAverageAggregates", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "SCALAR", + "name": "BigFloat", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "id", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "latitude", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "longitude", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilityStddevSampleAggregates", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "id", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "latitude", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "longitude", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilityStddevPopulationAggregates", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "id", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "latitude", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "longitude", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilityVarianceSampleAggregates", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "id", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "latitude", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "longitude", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilityVariancePopulationAggregates", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "slug", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "address", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "city", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "zip", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "args": [], + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "args": [], + "name": "timezoneName", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "unitGroup", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "country", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "args": [], + "name": "config", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "args": [], + "name": "geometry", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "args": [], + "name": "retiredAt", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "args": [], + "name": "facilityContacts", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "latitude", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "longitude", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "nSight2Active", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "args": [], + "name": "nSightActive", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "args": [], + "name": "realTimeEnabled", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "args": [], + "name": "bonusLtr", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "args": [], + "name": "commodity", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "goLiveDate", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "args": [], + "name": "linkActive", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "args": [], + "name": "metricsOneActive", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "args": [], + "name": "preBonusEbitda", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "args": [], + "name": "suppresseFinancials", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "args": [], + "name": "type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "wms", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "costCenter", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "activeCommunication", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilityDistinctAggregates", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NAME" + }, + { + "name": "NAME_DISTINCT" + }, + { + "name": "ADDRESS" + }, + { + "name": "ADDRESS_DISTINCT" + }, + { + "name": "CITY" + }, + { + "name": "CITY_DISTINCT" + }, + { + "name": "STATE" + }, + { + "name": "STATE_DISTINCT" + }, + { + "name": "ZIP" + }, + { + "name": "ZIP_DISTINCT" + }, + { + "name": "CREATED_AT" + }, + { + "name": "CREATED_AT_TRUNCATED_TO_HOUR" + }, + { + "name": "CREATED_AT_TRUNCATED_TO_DAY" + }, + { + "name": "CREATED_AT_DISTINCT" + }, + { + "name": "UPDATED_AT" + }, + { + "name": "UPDATED_AT_TRUNCATED_TO_HOUR" + }, + { + "name": "UPDATED_AT_TRUNCATED_TO_DAY" + }, + { + "name": "UPDATED_AT_DISTINCT" + }, + { + "name": "TIMEZONE_NAME" + }, + { + "name": "TIMEZONE_NAME_DISTINCT" + }, + { + "name": "UNIT_GROUP" + }, + { + "name": "UNIT_GROUP_DISTINCT" + }, + { + "name": "COUNTRY" + }, + { + "name": "COUNTRY_DISTINCT" + }, + { + "name": "CONFIG" + }, + { + "name": "CONFIG_DISTINCT" + }, + { + "name": "GEOMETRY" + }, + { + "name": "GEOMETRY_DISTINCT" + }, + { + "name": "RETIRED_AT" + }, + { + "name": "RETIRED_AT_TRUNCATED_TO_HOUR" + }, + { + "name": "RETIRED_AT_TRUNCATED_TO_DAY" + }, + { + "name": "RETIRED_AT_DISTINCT" + }, + { + "name": "FACILITY_CONTACTS" + }, + { + "name": "FACILITY_CONTACTS_DISTINCT" + }, + { + "name": "LATITUDE" + }, + { + "name": "LATITUDE_DISTINCT" + }, + { + "name": "LONGITUDE" + }, + { + "name": "LONGITUDE_DISTINCT" + }, + { + "name": "N_SIGHT_2_ACTIVE" + }, + { + "name": "N_SIGHT_2_ACTIVE_DISTINCT" + }, + { + "name": "N_SIGHT_ACTIVE" + }, + { + "name": "N_SIGHT_ACTIVE_DISTINCT" + }, + { + "name": "REAL_TIME_ENABLED" + }, + { + "name": "REAL_TIME_ENABLED_DISTINCT" + }, + { + "name": "BONUS_LTR" + }, + { + "name": "BONUS_LTR_DISTINCT" + }, + { + "name": "COMMODITY" + }, + { + "name": "COMMODITY_DISTINCT" + }, + { + "name": "GO_LIVE_DATE" + }, + { + "name": "GO_LIVE_DATE_TRUNCATED_TO_HOUR" + }, + { + "name": "GO_LIVE_DATE_TRUNCATED_TO_DAY" + }, + { + "name": "GO_LIVE_DATE_DISTINCT" + }, + { + "name": "LINK_ACTIVE" + }, + { + "name": "LINK_ACTIVE_DISTINCT" + }, + { + "name": "METRICS_ONE_ACTIVE" + }, + { + "name": "METRICS_ONE_ACTIVE_DISTINCT" + }, + { + "name": "PRE_BONUS_EBITDA" + }, + { + "name": "PRE_BONUS_EBITDA_DISTINCT" + }, + { + "name": "SUPPRESSE_FINANCIALS" + }, + { + "name": "SUPPRESSE_FINANCIALS_DISTINCT" + }, + { + "name": "TYPE" + }, + { + "name": "TYPE_DISTINCT" + }, + { + "name": "WMS" + }, + { + "name": "WMS_DISTINCT" + }, + { + "name": "COST_CENTER" + }, + { + "name": "COST_CENTER_DISTINCT" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "FacilitiesGroupBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "AND", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FacilitiesHavingInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "OR", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FacilitiesHavingInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "sum", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilitiesHavingSumInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "distinctCount", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilitiesHavingDistinctCountInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "min", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilitiesHavingMinInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "max", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilitiesHavingMaxInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "average", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilitiesHavingAverageInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "stddevSample", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilitiesHavingStddevSampleInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "stddevPopulation", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilitiesHavingStddevPopulationInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "varianceSample", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilitiesHavingVarianceSampleInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "variancePopulation", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilitiesHavingVariancePopulationInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "distinct", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilitiesHavingDistinctInput", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "FacilitiesHavingInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "retiredAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "latitude", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "longitude", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "goLiveDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "FacilitiesHavingSumInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "equalTo", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notEqualTo", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThan", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThanOrEqualTo", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "lessThan", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "lessThanOrEqualTo", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "equalTo", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notEqualTo", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThan", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThanOrEqualTo", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "lessThan", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "lessThanOrEqualTo", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "equalTo", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notEqualTo", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThan", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThanOrEqualTo", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "lessThan", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "lessThanOrEqualTo", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "retiredAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "latitude", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "longitude", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "goLiveDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "FacilitiesHavingDistinctCountInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "retiredAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "latitude", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "longitude", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "goLiveDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "FacilitiesHavingMinInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "retiredAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "latitude", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "longitude", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "goLiveDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "FacilitiesHavingMaxInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "retiredAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "latitude", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "longitude", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "goLiveDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "FacilitiesHavingAverageInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "retiredAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "latitude", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "longitude", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "goLiveDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "FacilitiesHavingStddevSampleInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "retiredAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "latitude", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "longitude", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "goLiveDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "FacilitiesHavingStddevPopulationInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "retiredAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "latitude", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "longitude", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "goLiveDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "FacilitiesHavingVarianceSampleInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "retiredAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "latitude", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "longitude", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "goLiveDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "FacilitiesHavingVariancePopulationInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "retiredAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "latitude", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "longitude", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "goLiveDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "FacilitiesHavingDistinctInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MetricDataEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MetricData", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "aggregates", + "type": { + "kind": "OBJECT", + "name": "MetricAggregate", + "ofType": null + } + }, + { + "args": [], + "name": "explain", + "type": { + "kind": "OBJECT", + "name": "MetricDataExplain", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "MetricDataConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MetricData", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "MetricDataEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "time", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "sourceId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "data", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": "false", + "name": "drillIn", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + ], + "name": "metadata", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "MetricData", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "AVG", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "args": [], + "name": "COUNT", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "args": [], + "name": "FIRST", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "args": [], + "name": "LAST", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "args": [], + "name": "MAX", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "args": [], + "name": "MEDIAN", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "args": [], + "name": "MIN", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "args": [], + "name": "SUM", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "MetricAggregate", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "unit", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "MetricDataExplain", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "AVG" + }, + { + "name": "COUNT" + }, + { + "name": "FIRST" + }, + { + "name": "LAST" + }, + { + "name": "MAX" + }, + { + "name": "MEDIAN" + }, + { + "name": "MIN" + }, + { + "name": "SUM" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "MetricDataAggregationMethod", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "TIME_ASC" + }, + { + "name": "TIME_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "MetricDataOrderBy", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "ID_ASC" + }, + { + "name": "ID_DESC" + }, + { + "name": "NAME_ASC" + }, + { + "name": "NAME_DESC" + }, + { + "name": "SLUG_ASC" + }, + { + "name": "SLUG_DESC" + }, + { + "name": "ADDRESS_ASC" + }, + { + "name": "ADDRESS_DESC" + }, + { + "name": "CITY_ASC" + }, + { + "name": "CITY_DESC" + }, + { + "name": "STATE_ASC" + }, + { + "name": "STATE_DESC" + }, + { + "name": "ZIP_ASC" + }, + { + "name": "ZIP_DESC" + }, + { + "name": "CREATED_AT_ASC" + }, + { + "name": "CREATED_AT_DESC" + }, + { + "name": "UPDATED_AT_ASC" + }, + { + "name": "UPDATED_AT_DESC" + }, + { + "name": "TIMEZONE_NAME_ASC" + }, + { + "name": "TIMEZONE_NAME_DESC" + }, + { + "name": "UNIT_GROUP_ASC" + }, + { + "name": "UNIT_GROUP_DESC" + }, + { + "name": "COUNTRY_ASC" + }, + { + "name": "COUNTRY_DESC" + }, + { + "name": "CONFIG_ASC" + }, + { + "name": "CONFIG_DESC" + }, + { + "name": "GEOMETRY_ASC" + }, + { + "name": "GEOMETRY_DESC" + }, + { + "name": "RETIRED_AT_ASC" + }, + { + "name": "RETIRED_AT_DESC" + }, + { + "name": "FACILITY_CONTACTS_ASC" + }, + { + "name": "FACILITY_CONTACTS_DESC" + }, + { + "name": "LATITUDE_ASC" + }, + { + "name": "LATITUDE_DESC" + }, + { + "name": "LONGITUDE_ASC" + }, + { + "name": "LONGITUDE_DESC" + }, + { + "name": "N_SIGHT_2_ACTIVE_ASC" + }, + { + "name": "N_SIGHT_2_ACTIVE_DESC" + }, + { + "name": "N_SIGHT_ACTIVE_ASC" + }, + { + "name": "N_SIGHT_ACTIVE_DESC" + }, + { + "name": "REAL_TIME_ENABLED_ASC" + }, + { + "name": "REAL_TIME_ENABLED_DESC" + }, + { + "name": "BONUS_LTR_ASC" + }, + { + "name": "BONUS_LTR_DESC" + }, + { + "name": "COMMODITY_ASC" + }, + { + "name": "COMMODITY_DESC" + }, + { + "name": "GO_LIVE_DATE_ASC" + }, + { + "name": "GO_LIVE_DATE_DESC" + }, + { + "name": "LINK_ACTIVE_ASC" + }, + { + "name": "LINK_ACTIVE_DESC" + }, + { + "name": "METRICS_ONE_ACTIVE_ASC" + }, + { + "name": "METRICS_ONE_ACTIVE_DESC" + }, + { + "name": "PRE_BONUS_EBITDA_ASC" + }, + { + "name": "PRE_BONUS_EBITDA_DESC" + }, + { + "name": "SUPPRESSE_FINANCIALS_ASC" + }, + { + "name": "SUPPRESSE_FINANCIALS_DESC" + }, + { + "name": "TYPE_ASC" + }, + { + "name": "TYPE_DESC" + }, + { + "name": "WMS_ASC" + }, + { + "name": "WMS_DESC" + }, + { + "name": "COST_CENTER_ASC" + }, + { + "name": "COST_CENTER_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_COUNT_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_COUNT_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_NET_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_NET_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_USAGE_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_USAGE_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_DEMAND_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_DEMAND_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_DEMAND_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_DEMAND_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_FEES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_FEES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_TAXES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_TAXES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_CREDITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_CREDITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_BLENDED_RATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_BLENDED_RATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_LOAD_FACTOR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_LOAD_FACTOR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_PERCENT_CHANGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_PERCENT_CHANGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_NET_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_NET_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_USAGE_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_USAGE_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_DEMAND_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_DEMAND_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_DEMAND_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_DEMAND_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_FEES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_FEES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_TAXES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_TAXES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_CREDITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_CREDITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BLENDED_RATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BLENDED_RATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_LOAD_FACTOR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_LOAD_FACTOR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_PERCENT_CHANGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_PERCENT_CHANGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_NET_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_NET_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_USAGE_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_USAGE_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_DEMAND_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_DEMAND_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_DEMAND_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_DEMAND_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_FEES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_FEES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_TAXES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_TAXES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_CREDITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_CREDITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_BLENDED_RATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_BLENDED_RATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_LOAD_FACTOR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_LOAD_FACTOR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_PERCENT_CHANGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_PERCENT_CHANGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_NET_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_NET_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_USAGE_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_USAGE_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_DEMAND_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_DEMAND_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_DEMAND_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_DEMAND_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_FEES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_FEES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_TAXES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_TAXES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_CREDITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_CREDITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_BLENDED_RATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_BLENDED_RATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_LOAD_FACTOR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_LOAD_FACTOR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_PERCENT_CHANGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_PERCENT_CHANGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_NET_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_NET_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_USAGE_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_USAGE_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_DEMAND_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_DEMAND_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_DEMAND_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_DEMAND_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_FEES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_FEES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_TAXES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_TAXES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_CREDITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_CREDITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BLENDED_RATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BLENDED_RATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_LOAD_FACTOR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_LOAD_FACTOR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_PERCENT_CHANGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_PERCENT_CHANGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_NET_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_NET_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_USAGE_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_USAGE_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_DEMAND_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_DEMAND_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_DEMAND_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_DEMAND_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_FEES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_FEES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_TAXES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_TAXES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_CREDITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_CREDITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BLENDED_RATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BLENDED_RATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_LOAD_FACTOR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_LOAD_FACTOR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_PERCENT_CHANGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_PERCENT_CHANGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_NET_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_NET_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_USAGE_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_USAGE_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_DEMAND_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_DEMAND_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_DEMAND_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_DEMAND_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_FEES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_FEES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_TAXES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_TAXES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_CREDITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_CREDITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BLENDED_RATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BLENDED_RATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_LOAD_FACTOR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_LOAD_FACTOR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_PERCENT_CHANGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_PERCENT_CHANGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_NET_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_NET_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_USAGE_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_USAGE_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_DEMAND_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_DEMAND_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_DEMAND_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_DEMAND_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_FEES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_FEES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_TAXES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_TAXES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_CREDITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_CREDITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BLENDED_RATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BLENDED_RATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_LOAD_FACTOR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_LOAD_FACTOR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_PERCENT_CHANGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_PERCENT_CHANGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_NET_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_NET_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_USAGE_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_USAGE_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_DEMAND_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_DEMAND_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_DEMAND_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_DEMAND_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_FEES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_FEES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_TAXES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_TAXES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_CREDITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_CREDITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BLENDED_RATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BLENDED_RATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_LOAD_FACTOR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_LOAD_FACTOR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_PERCENT_CHANGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_PERCENT_CHANGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_NET_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_NET_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_USAGE_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_USAGE_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_DEMAND_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_DEMAND_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_DEMAND_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_DEMAND_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_FEES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_FEES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_TAXES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_TAXES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_CREDITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_CREDITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BLENDED_RATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BLENDED_RATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_LOAD_FACTOR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_LOAD_FACTOR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_PERCENT_CHANGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_PERCENT_CHANGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_COUNT_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_COUNT_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_EXCLUDE_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_EXCLUDE_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_EXCLUDE_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_EXCLUDE_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_EXCLUDE_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_EXCLUDE_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_EXCLUDE_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_EXCLUDE_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_EXCLUDE_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_EXCLUDE_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_EXCLUDE_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_EXCLUDE_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_EXCLUDE_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_EXCLUDE_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_EXCLUDE_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_EXCLUDE_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_EXCLUDE_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_EXCLUDE_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_EXCLUDE_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_EXCLUDE_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_ACCOUNT_STATEMENT_ID_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "FacilitiesOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "slug", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "address", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "city", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "zip", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "timezoneName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "unitGroup", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "country", + "type": { + "kind": "ENUM", + "name": "Country", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "config", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "geometry", + "type": { + "kind": "SCALAR", + "name": "GeoJSON", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "retiredAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "facilityContacts", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "latitude", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "longitude", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nSight2Active", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nSightActive", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "realTimeEnabled", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "bonusLtr", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "commodity", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "goLiveDate", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "linkActive", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "metricsOneActive", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "preBonusEbitda", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "suppresseFinancials", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "wms", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "costCenter", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "FacilityCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "slug", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "address", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "city", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "state", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "zip", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "timezoneName", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "unitGroup", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "country", + "type": { + "kind": "INPUT_OBJECT", + "name": "CountryFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "config", + "type": { + "kind": "INPUT_OBJECT", + "name": "JSONFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "retiredAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "facilityContacts", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "latitude", + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "longitude", + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nSight2Active", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nSightActive", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "realTimeEnabled", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "bonusLtr", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "commodity", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "goLiveDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "linkActive", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "metricsOneActive", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "preBonusEbitda", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "suppresseFinancials", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "type", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "wms", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "costCenter", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FacilityFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FacilityFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "FacilityFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "isNull", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "equalTo", + "type": { + "kind": "ENUM", + "name": "Country", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notEqualTo", + "type": { + "kind": "ENUM", + "name": "Country", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "distinctFrom", + "type": { + "kind": "ENUM", + "name": "Country", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notDistinctFrom", + "type": { + "kind": "ENUM", + "name": "Country", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "in", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "Country", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "notIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "Country", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "lessThan", + "type": { + "kind": "ENUM", + "name": "Country", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "lessThanOrEqualTo", + "type": { + "kind": "ENUM", + "name": "Country", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThan", + "type": { + "kind": "ENUM", + "name": "Country", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThanOrEqualTo", + "type": { + "kind": "ENUM", + "name": "Country", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CountryFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UnitGroup", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TimezoneUnitGroupsByFacilityTimezoneNameAndUnitGroupManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "TimezoneUnitGroupsByFacilityTimezoneNameAndUnitGroupManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilitiesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityFilter", + "ofType": null + } + } + ], + "name": "facilitiesByUnitGroup", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilitiesConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UnitGroupDimensionsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UnitGroupDimensionCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UnitGroupDimensionFilter", + "ofType": null + } + } + ], + "name": "unitGroupDimensionsByUnitGroup", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UnitGroupDimensionsConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "TimezonesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "TimezoneCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "TimezoneFilter", + "ofType": null + } + } + ], + "name": "timezonesByFacilityUnitGroupAndTimezoneName", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UnitGroupTimezonesByFacilityUnitGroupAndTimezoneNameManyToManyConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UnitDimensionsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UnitDimensionCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UnitDimensionFilter", + "ofType": null + } + } + ], + "name": "unitDimensionsByUnitGroupDimensionUnitGroupAndUnitDimension", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UnitGroupUnitDimensionsByUnitGroupDimensionUnitGroupAndUnitDimensionManyToManyConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "UnitGroup", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UnitGroupDimension", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UnitGroupDimensionsEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UnitGroupDimensionsConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "unitGroup", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "unitDimension", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "unit", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "unitGroupByUnitGroup", + "type": { + "kind": "OBJECT", + "name": "UnitGroup", + "ofType": null + } + }, + { + "args": [], + "name": "unitDimensionByUnitDimension", + "type": { + "kind": "OBJECT", + "name": "UnitDimension", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "UnitGroupDimension", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UnitGroupDimensionsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UnitGroupDimensionCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UnitGroupDimensionFilter", + "ofType": null + } + } + ], + "name": "unitGroupDimensionsByUnitDimension", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UnitGroupDimensionsConnection", + "ofType": null + } + } + }, + { + "args": [], + "name": "activeMappings", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UnitGroupsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UnitGroupCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UnitGroupFilter", + "ofType": null + } + } + ], + "name": "unitGroupsByUnitGroupDimensionUnitDimensionAndUnitGroup", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UnitDimensionUnitGroupsByUnitGroupDimensionUnitDimensionAndUnitGroupManyToManyConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "UnitDimension", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "UNIT_GROUP_ASC" + }, + { + "name": "UNIT_GROUP_DESC" + }, + { + "name": "UNIT_DIMENSION_ASC" + }, + { + "name": "UNIT_DIMENSION_DESC" + }, + { + "name": "UNIT_ASC" + }, + { + "name": "UNIT_DESC" + }, + { + "name": "CREATED_AT_ASC" + }, + { + "name": "CREATED_AT_DESC" + }, + { + "name": "UPDATED_AT_ASC" + }, + { + "name": "UPDATED_AT_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "UnitGroupDimensionsOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "unitGroup", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "unitDimension", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "unit", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UnitGroupDimensionCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "unitGroup", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "unitDimension", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "unit", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UnitGroupDimensionFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UnitGroupDimensionFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "UnitGroupDimensionFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UnitGroupDimensionFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UnitGroup", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UnitDimensionUnitGroupsByUnitGroupDimensionUnitDimensionAndUnitGroupManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UnitDimensionUnitGroupsByUnitGroupDimensionUnitDimensionAndUnitGroupManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UnitGroup", + "ofType": null + } + } + }, + { + "args": [], + "name": "unit", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UnitDimensionUnitGroupsByUnitGroupDimensionUnitDimensionAndUnitGroupManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "NAME_ASC" + }, + { + "name": "NAME_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_COUNT_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_COUNT_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_ID_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_ID_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_NAME_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_NAME_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_SLUG_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_SLUG_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_ADDRESS_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_ADDRESS_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_CITY_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_CITY_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_STATE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_STATE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_ZIP_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_ZIP_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_CREATED_AT_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_CREATED_AT_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_UPDATED_AT_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_UPDATED_AT_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_TIMEZONE_NAME_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_TIMEZONE_NAME_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_UNIT_GROUP_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_UNIT_GROUP_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_COUNTRY_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_COUNTRY_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_CONFIG_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_CONFIG_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_GEOMETRY_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_GEOMETRY_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_RETIRED_AT_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_RETIRED_AT_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_FACILITY_CONTACTS_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_FACILITY_CONTACTS_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_LATITUDE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_LATITUDE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_LONGITUDE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_LONGITUDE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_N_SIGHT_2_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_N_SIGHT_2_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_N_SIGHT_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_N_SIGHT_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_REAL_TIME_ENABLED_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_REAL_TIME_ENABLED_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_BONUS_LTR_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_BONUS_LTR_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_COMMODITY_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_COMMODITY_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_GO_LIVE_DATE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_GO_LIVE_DATE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_LINK_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_LINK_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_METRICS_ONE_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_METRICS_ONE_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_PRE_BONUS_EBITDA_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_PRE_BONUS_EBITDA_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_SUPPRESSE_FINANCIALS_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_SUPPRESSE_FINANCIALS_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_TYPE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_TYPE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_WMS_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_WMS_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_COST_CENTER_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_SUM_COST_CENTER_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_ID_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_ID_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_NAME_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_NAME_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_SLUG_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_SLUG_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_ADDRESS_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_ADDRESS_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_CITY_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_CITY_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_STATE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_STATE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_ZIP_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_ZIP_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_CREATED_AT_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_CREATED_AT_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_UPDATED_AT_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_UPDATED_AT_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_TIMEZONE_NAME_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_TIMEZONE_NAME_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_UNIT_GROUP_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_UNIT_GROUP_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_COUNTRY_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_COUNTRY_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_CONFIG_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_CONFIG_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_GEOMETRY_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_GEOMETRY_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_RETIRED_AT_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_RETIRED_AT_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_FACILITY_CONTACTS_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_FACILITY_CONTACTS_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_LATITUDE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_LATITUDE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_LONGITUDE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_LONGITUDE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_N_SIGHT_2_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_N_SIGHT_2_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_N_SIGHT_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_N_SIGHT_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_REAL_TIME_ENABLED_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_REAL_TIME_ENABLED_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_BONUS_LTR_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_BONUS_LTR_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_COMMODITY_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_COMMODITY_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_GO_LIVE_DATE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_GO_LIVE_DATE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_LINK_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_LINK_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_METRICS_ONE_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_METRICS_ONE_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_PRE_BONUS_EBITDA_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_PRE_BONUS_EBITDA_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_SUPPRESSE_FINANCIALS_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_SUPPRESSE_FINANCIALS_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_TYPE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_TYPE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_WMS_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_WMS_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_COST_CENTER_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNT_COST_CENTER_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_ID_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_ID_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_NAME_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_NAME_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_SLUG_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_SLUG_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_ADDRESS_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_ADDRESS_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_CITY_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_CITY_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_STATE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_STATE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_ZIP_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_ZIP_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_CREATED_AT_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_CREATED_AT_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_UPDATED_AT_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_UPDATED_AT_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_TIMEZONE_NAME_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_TIMEZONE_NAME_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_UNIT_GROUP_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_UNIT_GROUP_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_COUNTRY_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_COUNTRY_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_CONFIG_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_CONFIG_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_GEOMETRY_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_GEOMETRY_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_RETIRED_AT_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_RETIRED_AT_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_FACILITY_CONTACTS_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_FACILITY_CONTACTS_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_LATITUDE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_LATITUDE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_LONGITUDE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_LONGITUDE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_N_SIGHT_2_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_N_SIGHT_2_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_N_SIGHT_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_N_SIGHT_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_REAL_TIME_ENABLED_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_REAL_TIME_ENABLED_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_BONUS_LTR_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_BONUS_LTR_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_COMMODITY_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_COMMODITY_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_GO_LIVE_DATE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_GO_LIVE_DATE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_LINK_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_LINK_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_METRICS_ONE_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_METRICS_ONE_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_PRE_BONUS_EBITDA_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_PRE_BONUS_EBITDA_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_SUPPRESSE_FINANCIALS_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_SUPPRESSE_FINANCIALS_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_TYPE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_TYPE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_WMS_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_WMS_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_COST_CENTER_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MIN_COST_CENTER_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_ID_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_ID_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_NAME_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_NAME_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_SLUG_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_SLUG_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_ADDRESS_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_ADDRESS_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_CITY_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_CITY_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_STATE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_STATE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_ZIP_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_ZIP_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_CREATED_AT_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_CREATED_AT_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_UPDATED_AT_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_UPDATED_AT_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_TIMEZONE_NAME_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_TIMEZONE_NAME_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_UNIT_GROUP_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_UNIT_GROUP_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_COUNTRY_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_COUNTRY_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_CONFIG_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_CONFIG_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_GEOMETRY_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_GEOMETRY_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_RETIRED_AT_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_RETIRED_AT_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_FACILITY_CONTACTS_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_FACILITY_CONTACTS_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_LATITUDE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_LATITUDE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_LONGITUDE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_LONGITUDE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_N_SIGHT_2_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_N_SIGHT_2_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_N_SIGHT_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_N_SIGHT_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_REAL_TIME_ENABLED_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_REAL_TIME_ENABLED_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_BONUS_LTR_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_BONUS_LTR_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_COMMODITY_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_COMMODITY_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_GO_LIVE_DATE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_GO_LIVE_DATE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_LINK_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_LINK_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_METRICS_ONE_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_METRICS_ONE_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_PRE_BONUS_EBITDA_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_PRE_BONUS_EBITDA_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_SUPPRESSE_FINANCIALS_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_SUPPRESSE_FINANCIALS_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_TYPE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_TYPE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_WMS_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_WMS_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_COST_CENTER_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_MAX_COST_CENTER_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_ID_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_ID_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_NAME_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_NAME_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_SLUG_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_SLUG_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_ADDRESS_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_ADDRESS_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_CITY_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_CITY_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_STATE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_STATE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_ZIP_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_ZIP_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_CREATED_AT_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_CREATED_AT_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_UPDATED_AT_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_UPDATED_AT_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_TIMEZONE_NAME_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_TIMEZONE_NAME_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_UNIT_GROUP_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_UNIT_GROUP_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_COUNTRY_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_COUNTRY_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_CONFIG_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_CONFIG_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_GEOMETRY_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_GEOMETRY_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_RETIRED_AT_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_RETIRED_AT_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_FACILITY_CONTACTS_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_FACILITY_CONTACTS_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_LATITUDE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_LATITUDE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_LONGITUDE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_LONGITUDE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_N_SIGHT_2_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_N_SIGHT_2_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_N_SIGHT_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_N_SIGHT_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_REAL_TIME_ENABLED_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_REAL_TIME_ENABLED_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_BONUS_LTR_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_BONUS_LTR_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_COMMODITY_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_COMMODITY_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_GO_LIVE_DATE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_GO_LIVE_DATE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_LINK_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_LINK_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_METRICS_ONE_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_METRICS_ONE_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_PRE_BONUS_EBITDA_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_PRE_BONUS_EBITDA_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_SUPPRESSE_FINANCIALS_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_SUPPRESSE_FINANCIALS_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_TYPE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_TYPE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_WMS_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_WMS_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_COST_CENTER_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_AVERAGE_COST_CENTER_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_ID_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_ID_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_NAME_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_NAME_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_SLUG_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_SLUG_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_ADDRESS_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_ADDRESS_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_CITY_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_CITY_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_STATE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_STATE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_ZIP_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_ZIP_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_CREATED_AT_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_CREATED_AT_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_UPDATED_AT_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_UPDATED_AT_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_TIMEZONE_NAME_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_TIMEZONE_NAME_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_UNIT_GROUP_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_UNIT_GROUP_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_COUNTRY_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_COUNTRY_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_CONFIG_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_CONFIG_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_GEOMETRY_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_GEOMETRY_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_RETIRED_AT_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_RETIRED_AT_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_FACILITY_CONTACTS_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_FACILITY_CONTACTS_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_LATITUDE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_LATITUDE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_LONGITUDE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_LONGITUDE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_N_SIGHT_2_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_N_SIGHT_2_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_N_SIGHT_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_N_SIGHT_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_REAL_TIME_ENABLED_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_REAL_TIME_ENABLED_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_BONUS_LTR_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_BONUS_LTR_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_COMMODITY_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_COMMODITY_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_GO_LIVE_DATE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_GO_LIVE_DATE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_LINK_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_LINK_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_METRICS_ONE_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_METRICS_ONE_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_PRE_BONUS_EBITDA_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_PRE_BONUS_EBITDA_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_SUPPRESSE_FINANCIALS_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_SUPPRESSE_FINANCIALS_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_TYPE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_TYPE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_WMS_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_WMS_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_COST_CENTER_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_SAMPLE_COST_CENTER_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_ID_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_ID_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_NAME_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_NAME_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_SLUG_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_SLUG_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_ADDRESS_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_ADDRESS_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_CITY_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_CITY_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_STATE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_STATE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_ZIP_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_ZIP_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_CREATED_AT_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_CREATED_AT_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_UPDATED_AT_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_UPDATED_AT_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_TIMEZONE_NAME_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_TIMEZONE_NAME_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_UNIT_GROUP_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_UNIT_GROUP_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_COUNTRY_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_COUNTRY_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_CONFIG_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_CONFIG_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_GEOMETRY_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_GEOMETRY_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_RETIRED_AT_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_RETIRED_AT_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_FACILITY_CONTACTS_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_FACILITY_CONTACTS_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_LATITUDE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_LATITUDE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_LONGITUDE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_LONGITUDE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_N_SIGHT_2_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_N_SIGHT_2_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_N_SIGHT_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_N_SIGHT_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_REAL_TIME_ENABLED_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_REAL_TIME_ENABLED_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_BONUS_LTR_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_BONUS_LTR_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_COMMODITY_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_COMMODITY_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_GO_LIVE_DATE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_GO_LIVE_DATE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_LINK_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_LINK_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_METRICS_ONE_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_METRICS_ONE_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_PRE_BONUS_EBITDA_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_PRE_BONUS_EBITDA_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_SUPPRESSE_FINANCIALS_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_SUPPRESSE_FINANCIALS_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_TYPE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_TYPE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_WMS_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_WMS_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_COST_CENTER_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_STDDEV_POPULATION_COST_CENTER_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_ID_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_ID_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_NAME_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_NAME_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_SLUG_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_SLUG_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_ADDRESS_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_ADDRESS_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_CITY_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_CITY_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_STATE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_STATE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_ZIP_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_ZIP_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_CREATED_AT_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_CREATED_AT_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_UPDATED_AT_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_UPDATED_AT_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_TIMEZONE_NAME_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_TIMEZONE_NAME_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_UNIT_GROUP_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_UNIT_GROUP_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_COUNTRY_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_COUNTRY_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_CONFIG_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_CONFIG_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_GEOMETRY_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_GEOMETRY_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_RETIRED_AT_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_RETIRED_AT_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_FACILITY_CONTACTS_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_FACILITY_CONTACTS_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_LATITUDE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_LATITUDE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_LONGITUDE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_LONGITUDE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_N_SIGHT_2_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_N_SIGHT_2_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_N_SIGHT_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_N_SIGHT_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_REAL_TIME_ENABLED_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_REAL_TIME_ENABLED_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_BONUS_LTR_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_BONUS_LTR_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_COMMODITY_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_COMMODITY_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_GO_LIVE_DATE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_GO_LIVE_DATE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_LINK_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_LINK_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_METRICS_ONE_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_METRICS_ONE_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_PRE_BONUS_EBITDA_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_PRE_BONUS_EBITDA_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_SUPPRESSE_FINANCIALS_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_SUPPRESSE_FINANCIALS_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_TYPE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_TYPE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_WMS_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_WMS_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_COST_CENTER_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_SAMPLE_COST_CENTER_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_ID_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_ID_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_NAME_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_NAME_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_SLUG_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_SLUG_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_ADDRESS_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_ADDRESS_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_CITY_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_CITY_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_STATE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_STATE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_ZIP_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_ZIP_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_CREATED_AT_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_CREATED_AT_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_UPDATED_AT_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_UPDATED_AT_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_TIMEZONE_NAME_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_TIMEZONE_NAME_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_UNIT_GROUP_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_UNIT_GROUP_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_COUNTRY_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_COUNTRY_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_CONFIG_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_CONFIG_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_GEOMETRY_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_GEOMETRY_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_RETIRED_AT_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_RETIRED_AT_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_FACILITY_CONTACTS_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_FACILITY_CONTACTS_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_LATITUDE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_LATITUDE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_LONGITUDE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_LONGITUDE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_N_SIGHT_2_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_N_SIGHT_2_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_N_SIGHT_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_N_SIGHT_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_REAL_TIME_ENABLED_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_REAL_TIME_ENABLED_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_BONUS_LTR_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_BONUS_LTR_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_COMMODITY_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_COMMODITY_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_GO_LIVE_DATE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_GO_LIVE_DATE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_LINK_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_LINK_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_METRICS_ONE_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_METRICS_ONE_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_PRE_BONUS_EBITDA_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_PRE_BONUS_EBITDA_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_SUPPRESSE_FINANCIALS_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_SUPPRESSE_FINANCIALS_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_TYPE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_TYPE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_WMS_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_WMS_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_COST_CENTER_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_VARIANCE_POPULATION_COST_CENTER_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_ID_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_ID_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_NAME_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_NAME_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_SLUG_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_SLUG_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_ADDRESS_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_ADDRESS_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_CITY_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_CITY_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_STATE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_STATE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_ZIP_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_ZIP_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_CREATED_AT_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_CREATED_AT_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_UPDATED_AT_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_UPDATED_AT_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_TIMEZONE_NAME_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_TIMEZONE_NAME_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_UNIT_GROUP_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_UNIT_GROUP_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNTRY_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COUNTRY_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_CONFIG_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_CONFIG_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_GEOMETRY_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_GEOMETRY_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_RETIRED_AT_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_RETIRED_AT_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_FACILITY_CONTACTS_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_FACILITY_CONTACTS_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_LATITUDE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_LATITUDE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_LONGITUDE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_LONGITUDE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_N_SIGHT_2_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_N_SIGHT_2_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_N_SIGHT_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_N_SIGHT_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_REAL_TIME_ENABLED_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_REAL_TIME_ENABLED_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_BONUS_LTR_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_BONUS_LTR_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COMMODITY_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COMMODITY_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_GO_LIVE_DATE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_GO_LIVE_DATE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_LINK_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_LINK_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_METRICS_ONE_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_METRICS_ONE_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_PRE_BONUS_EBITDA_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_PRE_BONUS_EBITDA_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_SUPPRESSE_FINANCIALS_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_SUPPRESSE_FINANCIALS_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_TYPE_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_TYPE_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_WMS_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_WMS_DESC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COST_CENTER_ASC" + }, + { + "name": "FACILITIES_BY_UNIT_GROUP_DISTINCT_COST_CENTER_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "UnitGroupsOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UnitGroupCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UnitGroupFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UnitGroupFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "UnitGroupFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UnitGroupFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UnitGroupDimension", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UnitGroupDimensionsEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Timezone", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UnitGroupTimezonesByFacilityUnitGroupAndTimezoneNameManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UnitGroupTimezonesByFacilityUnitGroupAndTimezoneNameManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Timezone", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilitiesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityFilter", + "ofType": null + } + } + ], + "name": "facilitiesByTimezoneName", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilitiesConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UnitGroupTimezonesByFacilityUnitGroupAndTimezoneNameManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "NAME_ASC" + }, + { + "name": "NAME_DESC" + }, + { + "name": "ABBREVIATION_ASC" + }, + { + "name": "ABBREVIATION_DESC" + }, + { + "name": "UTC_OFFSET_ASC" + }, + { + "name": "UTC_OFFSET_DESC" + }, + { + "name": "IS_DST_ASC" + }, + { + "name": "IS_DST_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_COUNT_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_COUNT_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_ID_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_ID_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_NAME_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_NAME_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_SLUG_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_SLUG_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_ADDRESS_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_ADDRESS_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_CITY_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_CITY_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_STATE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_STATE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_ZIP_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_ZIP_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_CREATED_AT_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_CREATED_AT_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_UPDATED_AT_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_UPDATED_AT_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_TIMEZONE_NAME_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_TIMEZONE_NAME_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_UNIT_GROUP_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_UNIT_GROUP_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_COUNTRY_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_COUNTRY_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_CONFIG_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_CONFIG_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_GEOMETRY_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_GEOMETRY_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_RETIRED_AT_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_RETIRED_AT_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_FACILITY_CONTACTS_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_FACILITY_CONTACTS_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_LATITUDE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_LATITUDE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_LONGITUDE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_LONGITUDE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_N_SIGHT_2_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_N_SIGHT_2_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_N_SIGHT_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_N_SIGHT_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_REAL_TIME_ENABLED_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_REAL_TIME_ENABLED_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_BONUS_LTR_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_BONUS_LTR_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_COMMODITY_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_COMMODITY_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_GO_LIVE_DATE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_GO_LIVE_DATE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_LINK_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_LINK_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_METRICS_ONE_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_METRICS_ONE_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_PRE_BONUS_EBITDA_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_PRE_BONUS_EBITDA_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_SUPPRESSE_FINANCIALS_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_SUPPRESSE_FINANCIALS_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_TYPE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_TYPE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_WMS_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_WMS_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_COST_CENTER_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_SUM_COST_CENTER_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_ID_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_ID_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_NAME_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_NAME_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_SLUG_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_SLUG_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_ADDRESS_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_ADDRESS_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_CITY_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_CITY_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_STATE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_STATE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_ZIP_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_ZIP_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_CREATED_AT_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_CREATED_AT_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_UPDATED_AT_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_UPDATED_AT_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_TIMEZONE_NAME_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_TIMEZONE_NAME_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_UNIT_GROUP_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_UNIT_GROUP_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_COUNTRY_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_COUNTRY_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_CONFIG_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_CONFIG_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_GEOMETRY_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_GEOMETRY_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_RETIRED_AT_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_RETIRED_AT_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_FACILITY_CONTACTS_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_FACILITY_CONTACTS_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_LATITUDE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_LATITUDE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_LONGITUDE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_LONGITUDE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_N_SIGHT_2_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_N_SIGHT_2_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_N_SIGHT_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_N_SIGHT_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_REAL_TIME_ENABLED_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_REAL_TIME_ENABLED_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_BONUS_LTR_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_BONUS_LTR_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_COMMODITY_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_COMMODITY_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_GO_LIVE_DATE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_GO_LIVE_DATE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_LINK_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_LINK_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_METRICS_ONE_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_METRICS_ONE_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_PRE_BONUS_EBITDA_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_PRE_BONUS_EBITDA_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_SUPPRESSE_FINANCIALS_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_SUPPRESSE_FINANCIALS_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_TYPE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_TYPE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_WMS_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_WMS_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_COST_CENTER_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNT_COST_CENTER_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_ID_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_ID_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_NAME_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_NAME_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_SLUG_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_SLUG_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_ADDRESS_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_ADDRESS_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_CITY_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_CITY_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_STATE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_STATE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_ZIP_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_ZIP_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_CREATED_AT_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_CREATED_AT_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_UPDATED_AT_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_UPDATED_AT_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_TIMEZONE_NAME_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_TIMEZONE_NAME_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_UNIT_GROUP_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_UNIT_GROUP_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_COUNTRY_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_COUNTRY_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_CONFIG_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_CONFIG_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_GEOMETRY_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_GEOMETRY_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_RETIRED_AT_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_RETIRED_AT_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_FACILITY_CONTACTS_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_FACILITY_CONTACTS_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_LATITUDE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_LATITUDE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_LONGITUDE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_LONGITUDE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_N_SIGHT_2_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_N_SIGHT_2_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_N_SIGHT_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_N_SIGHT_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_REAL_TIME_ENABLED_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_REAL_TIME_ENABLED_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_BONUS_LTR_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_BONUS_LTR_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_COMMODITY_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_COMMODITY_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_GO_LIVE_DATE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_GO_LIVE_DATE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_LINK_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_LINK_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_METRICS_ONE_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_METRICS_ONE_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_PRE_BONUS_EBITDA_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_PRE_BONUS_EBITDA_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_SUPPRESSE_FINANCIALS_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_SUPPRESSE_FINANCIALS_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_TYPE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_TYPE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_WMS_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_WMS_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_COST_CENTER_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MIN_COST_CENTER_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_ID_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_ID_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_NAME_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_NAME_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_SLUG_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_SLUG_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_ADDRESS_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_ADDRESS_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_CITY_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_CITY_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_STATE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_STATE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_ZIP_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_ZIP_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_CREATED_AT_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_CREATED_AT_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_UPDATED_AT_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_UPDATED_AT_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_TIMEZONE_NAME_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_TIMEZONE_NAME_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_UNIT_GROUP_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_UNIT_GROUP_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_COUNTRY_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_COUNTRY_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_CONFIG_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_CONFIG_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_GEOMETRY_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_GEOMETRY_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_RETIRED_AT_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_RETIRED_AT_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_FACILITY_CONTACTS_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_FACILITY_CONTACTS_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_LATITUDE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_LATITUDE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_LONGITUDE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_LONGITUDE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_N_SIGHT_2_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_N_SIGHT_2_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_N_SIGHT_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_N_SIGHT_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_REAL_TIME_ENABLED_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_REAL_TIME_ENABLED_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_BONUS_LTR_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_BONUS_LTR_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_COMMODITY_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_COMMODITY_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_GO_LIVE_DATE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_GO_LIVE_DATE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_LINK_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_LINK_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_METRICS_ONE_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_METRICS_ONE_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_PRE_BONUS_EBITDA_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_PRE_BONUS_EBITDA_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_SUPPRESSE_FINANCIALS_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_SUPPRESSE_FINANCIALS_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_TYPE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_TYPE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_WMS_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_WMS_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_COST_CENTER_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_MAX_COST_CENTER_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_ID_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_ID_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_NAME_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_NAME_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_SLUG_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_SLUG_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_ADDRESS_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_ADDRESS_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_CITY_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_CITY_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_STATE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_STATE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_ZIP_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_ZIP_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_CREATED_AT_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_CREATED_AT_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_UPDATED_AT_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_UPDATED_AT_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_TIMEZONE_NAME_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_TIMEZONE_NAME_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_UNIT_GROUP_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_UNIT_GROUP_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_COUNTRY_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_COUNTRY_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_CONFIG_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_CONFIG_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_GEOMETRY_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_GEOMETRY_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_RETIRED_AT_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_RETIRED_AT_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_FACILITY_CONTACTS_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_FACILITY_CONTACTS_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_LATITUDE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_LATITUDE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_LONGITUDE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_LONGITUDE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_N_SIGHT_2_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_N_SIGHT_2_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_N_SIGHT_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_N_SIGHT_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_REAL_TIME_ENABLED_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_REAL_TIME_ENABLED_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_BONUS_LTR_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_BONUS_LTR_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_COMMODITY_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_COMMODITY_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_GO_LIVE_DATE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_GO_LIVE_DATE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_LINK_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_LINK_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_METRICS_ONE_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_METRICS_ONE_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_PRE_BONUS_EBITDA_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_PRE_BONUS_EBITDA_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_SUPPRESSE_FINANCIALS_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_SUPPRESSE_FINANCIALS_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_TYPE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_TYPE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_WMS_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_WMS_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_COST_CENTER_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_AVERAGE_COST_CENTER_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_ID_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_ID_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_NAME_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_NAME_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_SLUG_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_SLUG_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_ADDRESS_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_ADDRESS_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_CITY_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_CITY_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_STATE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_STATE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_ZIP_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_ZIP_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_CREATED_AT_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_CREATED_AT_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_UPDATED_AT_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_UPDATED_AT_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_TIMEZONE_NAME_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_TIMEZONE_NAME_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_UNIT_GROUP_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_UNIT_GROUP_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_COUNTRY_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_COUNTRY_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_CONFIG_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_CONFIG_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_GEOMETRY_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_GEOMETRY_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_RETIRED_AT_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_RETIRED_AT_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_FACILITY_CONTACTS_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_FACILITY_CONTACTS_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_LATITUDE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_LATITUDE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_LONGITUDE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_LONGITUDE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_N_SIGHT_2_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_N_SIGHT_2_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_N_SIGHT_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_N_SIGHT_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_REAL_TIME_ENABLED_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_REAL_TIME_ENABLED_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_BONUS_LTR_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_BONUS_LTR_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_COMMODITY_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_COMMODITY_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_GO_LIVE_DATE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_GO_LIVE_DATE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_LINK_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_LINK_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_METRICS_ONE_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_METRICS_ONE_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_PRE_BONUS_EBITDA_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_PRE_BONUS_EBITDA_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_SUPPRESSE_FINANCIALS_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_SUPPRESSE_FINANCIALS_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_TYPE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_TYPE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_WMS_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_WMS_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_COST_CENTER_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_SAMPLE_COST_CENTER_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_ID_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_ID_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_NAME_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_NAME_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_SLUG_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_SLUG_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_ADDRESS_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_ADDRESS_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_CITY_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_CITY_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_STATE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_STATE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_ZIP_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_ZIP_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_CREATED_AT_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_CREATED_AT_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_UPDATED_AT_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_UPDATED_AT_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_TIMEZONE_NAME_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_TIMEZONE_NAME_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_UNIT_GROUP_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_UNIT_GROUP_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_COUNTRY_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_COUNTRY_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_CONFIG_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_CONFIG_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_GEOMETRY_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_GEOMETRY_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_RETIRED_AT_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_RETIRED_AT_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_FACILITY_CONTACTS_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_FACILITY_CONTACTS_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_LATITUDE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_LATITUDE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_LONGITUDE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_LONGITUDE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_N_SIGHT_2_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_N_SIGHT_2_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_N_SIGHT_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_N_SIGHT_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_REAL_TIME_ENABLED_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_REAL_TIME_ENABLED_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_BONUS_LTR_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_BONUS_LTR_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_COMMODITY_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_COMMODITY_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_GO_LIVE_DATE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_GO_LIVE_DATE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_LINK_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_LINK_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_METRICS_ONE_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_METRICS_ONE_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_PRE_BONUS_EBITDA_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_PRE_BONUS_EBITDA_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_SUPPRESSE_FINANCIALS_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_SUPPRESSE_FINANCIALS_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_TYPE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_TYPE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_WMS_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_WMS_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_COST_CENTER_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_STDDEV_POPULATION_COST_CENTER_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_ID_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_ID_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_NAME_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_NAME_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_SLUG_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_SLUG_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_ADDRESS_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_ADDRESS_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_CITY_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_CITY_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_STATE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_STATE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_ZIP_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_ZIP_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_CREATED_AT_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_CREATED_AT_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_UPDATED_AT_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_UPDATED_AT_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_TIMEZONE_NAME_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_TIMEZONE_NAME_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_UNIT_GROUP_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_UNIT_GROUP_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_COUNTRY_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_COUNTRY_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_CONFIG_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_CONFIG_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_GEOMETRY_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_GEOMETRY_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_RETIRED_AT_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_RETIRED_AT_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_FACILITY_CONTACTS_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_FACILITY_CONTACTS_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_LATITUDE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_LATITUDE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_LONGITUDE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_LONGITUDE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_N_SIGHT_2_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_N_SIGHT_2_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_N_SIGHT_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_N_SIGHT_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_REAL_TIME_ENABLED_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_REAL_TIME_ENABLED_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_BONUS_LTR_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_BONUS_LTR_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_COMMODITY_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_COMMODITY_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_GO_LIVE_DATE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_GO_LIVE_DATE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_LINK_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_LINK_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_METRICS_ONE_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_METRICS_ONE_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_PRE_BONUS_EBITDA_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_PRE_BONUS_EBITDA_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_SUPPRESSE_FINANCIALS_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_SUPPRESSE_FINANCIALS_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_TYPE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_TYPE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_WMS_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_WMS_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_COST_CENTER_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_SAMPLE_COST_CENTER_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_ID_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_ID_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_NAME_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_NAME_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_SLUG_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_SLUG_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_ADDRESS_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_ADDRESS_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_CITY_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_CITY_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_STATE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_STATE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_ZIP_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_ZIP_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_CREATED_AT_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_CREATED_AT_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_UPDATED_AT_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_UPDATED_AT_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_TIMEZONE_NAME_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_TIMEZONE_NAME_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_UNIT_GROUP_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_UNIT_GROUP_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_COUNTRY_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_COUNTRY_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_CONFIG_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_CONFIG_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_GEOMETRY_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_GEOMETRY_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_RETIRED_AT_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_RETIRED_AT_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_FACILITY_CONTACTS_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_FACILITY_CONTACTS_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_LATITUDE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_LATITUDE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_LONGITUDE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_LONGITUDE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_N_SIGHT_2_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_N_SIGHT_2_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_N_SIGHT_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_N_SIGHT_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_REAL_TIME_ENABLED_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_REAL_TIME_ENABLED_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_BONUS_LTR_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_BONUS_LTR_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_COMMODITY_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_COMMODITY_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_GO_LIVE_DATE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_GO_LIVE_DATE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_LINK_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_LINK_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_METRICS_ONE_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_METRICS_ONE_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_PRE_BONUS_EBITDA_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_PRE_BONUS_EBITDA_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_SUPPRESSE_FINANCIALS_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_SUPPRESSE_FINANCIALS_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_TYPE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_TYPE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_WMS_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_WMS_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_COST_CENTER_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_VARIANCE_POPULATION_COST_CENTER_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_ID_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_ID_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_NAME_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_NAME_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_SLUG_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_SLUG_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_ADDRESS_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_ADDRESS_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_CITY_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_CITY_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_STATE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_STATE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_ZIP_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_ZIP_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_CREATED_AT_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_CREATED_AT_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_UPDATED_AT_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_UPDATED_AT_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_TIMEZONE_NAME_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_TIMEZONE_NAME_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_UNIT_GROUP_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_UNIT_GROUP_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNTRY_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COUNTRY_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_CONFIG_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_CONFIG_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_GEOMETRY_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_GEOMETRY_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_RETIRED_AT_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_RETIRED_AT_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_FACILITY_CONTACTS_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_FACILITY_CONTACTS_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_LATITUDE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_LATITUDE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_LONGITUDE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_LONGITUDE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_N_SIGHT_2_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_N_SIGHT_2_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_N_SIGHT_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_N_SIGHT_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_REAL_TIME_ENABLED_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_REAL_TIME_ENABLED_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_BONUS_LTR_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_BONUS_LTR_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COMMODITY_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COMMODITY_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_GO_LIVE_DATE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_GO_LIVE_DATE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_LINK_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_LINK_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_METRICS_ONE_ACTIVE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_METRICS_ONE_ACTIVE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_PRE_BONUS_EBITDA_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_PRE_BONUS_EBITDA_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_SUPPRESSE_FINANCIALS_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_SUPPRESSE_FINANCIALS_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_TYPE_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_TYPE_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_WMS_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_WMS_DESC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COST_CENTER_ASC" + }, + { + "name": "FACILITIES_BY_TIMEZONE_NAME_DISTINCT_COST_CENTER_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "TimezonesOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "abbreviation", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utcOffset", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntervalInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "isDst", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "TimezoneCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "seconds", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "minutes", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "hours", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "days", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "months", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "years", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "IntervalInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "abbreviation", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utcOffset", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntervalFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "isDst", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TimezoneFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TimezoneFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "TimezoneFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "TimezoneFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "isNull", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "equalTo", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntervalInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notEqualTo", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntervalInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "distinctFrom", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntervalInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notDistinctFrom", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntervalInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "in", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "IntervalInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "notIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "IntervalInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "lessThan", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntervalInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "lessThanOrEqualTo", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntervalInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThan", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntervalInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThanOrEqualTo", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntervalInput", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "IntervalFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UnitDimension", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UnitGroupUnitDimensionsByUnitGroupDimensionUnitGroupAndUnitDimensionManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UnitGroupUnitDimensionsByUnitGroupDimensionUnitGroupAndUnitDimensionManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UnitDimension", + "ofType": null + } + } + }, + { + "args": [], + "name": "unit", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UnitGroupUnitDimensionsByUnitGroupDimensionUnitGroupAndUnitDimensionManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "NAME_ASC" + }, + { + "name": "NAME_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "UnitDimensionsOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UnitDimensionCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "activeMappings", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringListFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UnitDimensionFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UnitDimensionFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "UnitDimensionFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UnitDimensionFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "isNull", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "equalTo", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "notEqualTo", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "distinctFrom", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "notDistinctFrom", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "lessThan", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "lessThanOrEqualTo", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "greaterThan", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "greaterThanOrEqualTo", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "contains", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "containedBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "overlaps", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "anyEqualTo", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "anyNotEqualTo", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "anyLessThan", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "anyLessThanOrEqualTo", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "anyGreaterThan", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "anyGreaterThanOrEqualTo", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "StringListFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UnitGroup", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilitiesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityFilter", + "ofType": null + } + } + ], + "name": "facilitiesByUnitGroup", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilitiesConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "TimezoneUnitGroupsByFacilityTimezoneNameAndUnitGroupManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "ID_ASC" + }, + { + "name": "ID_DESC" + }, + { + "name": "UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "SERVICE_TYPE_ASC" + }, + { + "name": "SERVICE_TYPE_DESC" + }, + { + "name": "INTEGRATION_METER_KEY_ASC" + }, + { + "name": "INTEGRATION_METER_KEY_DESC" + }, + { + "name": "FACILITY_ID_ASC" + }, + { + "name": "FACILITY_ID_DESC" + }, + { + "name": "NAME_ASC" + }, + { + "name": "NAME_DESC" + }, + { + "name": "METER_NUMBER_ASC" + }, + { + "name": "METER_NUMBER_DESC" + }, + { + "name": "ACTIVE_START_ASC" + }, + { + "name": "ACTIVE_START_DESC" + }, + { + "name": "ACTIVE_END_ASC" + }, + { + "name": "ACTIVE_END_DESC" + }, + { + "name": "METADATA_ASC" + }, + { + "name": "METADATA_DESC" + }, + { + "name": "CREATED_AT_ASC" + }, + { + "name": "CREATED_AT_DESC" + }, + { + "name": "UPDATED_AT_ASC" + }, + { + "name": "UPDATED_AT_DESC" + }, + { + "name": "OVERRIDE_METER_NUMBER_ASC" + }, + { + "name": "OVERRIDE_METER_NUMBER_DESC" + }, + { + "name": "OVERRIDE_AT_ASC" + }, + { + "name": "OVERRIDE_AT_DESC" + }, + { + "name": "EXCLUDE_USAGE_ASC" + }, + { + "name": "EXCLUDE_USAGE_DESC" + }, + { + "name": "DEFAULT_DEMAND_UNITS_ASC" + }, + { + "name": "DEFAULT_DEMAND_UNITS_DESC" + }, + { + "name": "DEFAULT_USAGE_UNITS_ASC" + }, + { + "name": "DEFAULT_USAGE_UNITS_DESC" + }, + { + "name": "DELETED_AT_ASC" + }, + { + "name": "DELETED_AT_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_COUNT_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_COUNT_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_NET_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_NET_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_USAGE_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_USAGE_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_DEMAND_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_DEMAND_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_DEMAND_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_BILL_DEMAND_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_FEES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_FEES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_TAXES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_TAXES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_CREDITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_CREDITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_BLENDED_RATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_BLENDED_RATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_LOAD_FACTOR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_LOAD_FACTOR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_PERCENT_CHANGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_PERCENT_CHANGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_SUM_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_NET_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_NET_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_USAGE_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_USAGE_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_DEMAND_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_DEMAND_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_DEMAND_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BILL_DEMAND_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_FEES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_FEES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_TAXES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_TAXES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_CREDITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_CREDITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BLENDED_RATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_BLENDED_RATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_LOAD_FACTOR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_LOAD_FACTOR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_PERCENT_CHANGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_PERCENT_CHANGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_COUNT_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_NET_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_NET_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_USAGE_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_USAGE_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_DEMAND_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_DEMAND_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_DEMAND_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_BILL_DEMAND_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_FEES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_FEES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_TAXES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_TAXES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_CREDITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_CREDITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_BLENDED_RATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_BLENDED_RATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_LOAD_FACTOR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_LOAD_FACTOR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_PERCENT_CHANGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_PERCENT_CHANGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MIN_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_NET_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_NET_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_USAGE_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_USAGE_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_DEMAND_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_DEMAND_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_DEMAND_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_BILL_DEMAND_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_FEES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_FEES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_TAXES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_TAXES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_CREDITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_CREDITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_BLENDED_RATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_BLENDED_RATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_LOAD_FACTOR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_LOAD_FACTOR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_PERCENT_CHANGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_PERCENT_CHANGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_MAX_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_NET_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_NET_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_USAGE_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_USAGE_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_DEMAND_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_DEMAND_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_DEMAND_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BILL_DEMAND_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_FEES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_FEES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_TAXES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_TAXES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_CREDITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_CREDITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BLENDED_RATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_BLENDED_RATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_LOAD_FACTOR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_LOAD_FACTOR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_PERCENT_CHANGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_PERCENT_CHANGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_AVERAGE_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_NET_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_NET_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_USAGE_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_USAGE_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_DEMAND_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_DEMAND_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_DEMAND_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BILL_DEMAND_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_FEES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_FEES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_TAXES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_TAXES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_CREDITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_CREDITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BLENDED_RATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_BLENDED_RATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_LOAD_FACTOR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_LOAD_FACTOR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_PERCENT_CHANGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_PERCENT_CHANGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_SAMPLE_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_NET_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_NET_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_USAGE_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_USAGE_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_DEMAND_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_DEMAND_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_DEMAND_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BILL_DEMAND_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_FEES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_FEES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_TAXES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_TAXES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_CREDITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_CREDITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BLENDED_RATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_BLENDED_RATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_LOAD_FACTOR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_LOAD_FACTOR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_PERCENT_CHANGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_PERCENT_CHANGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_STDDEV_POPULATION_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_NET_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_NET_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_USAGE_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_USAGE_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_DEMAND_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_DEMAND_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_DEMAND_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BILL_DEMAND_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_FEES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_FEES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_TAXES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_TAXES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_CREDITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_CREDITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BLENDED_RATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_BLENDED_RATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_LOAD_FACTOR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_LOAD_FACTOR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_PERCENT_CHANGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_PERCENT_CHANGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_SAMPLE_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_NET_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_NET_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_USAGE_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_USAGE_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_DEMAND_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_DEMAND_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_DEMAND_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BILL_DEMAND_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_FEES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_FEES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_TAXES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_TAXES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_CREDITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_CREDITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BLENDED_RATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_BLENDED_RATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_LOAD_FACTOR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_LOAD_FACTOR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_PERCENT_CHANGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_PERCENT_CHANGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_VARIANCE_POPULATION_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_NET_BILL_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_NET_BILL_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_USAGE_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_USAGE_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_DEMAND_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_DEMAND_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_DEMAND_COST_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BILL_DEMAND_COST_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_FEES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_FEES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_TAXES_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_TAXES_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_CREDITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_CREDITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BLENDED_RATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_BLENDED_RATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_LOAD_FACTOR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_LOAD_FACTOR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_PERCENT_CHANGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_PERCENT_CHANGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENT_ROLLUPS_DISTINCT_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_COUNT_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_COUNT_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_EXCLUDE_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_EXCLUDE_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_SUM_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_EXCLUDE_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_EXCLUDE_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_COUNT_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_EXCLUDE_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_EXCLUDE_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MIN_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_EXCLUDE_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_EXCLUDE_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_MAX_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_EXCLUDE_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_EXCLUDE_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_AVERAGE_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_EXCLUDE_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_EXCLUDE_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_SAMPLE_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_EXCLUDE_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_EXCLUDE_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_STDDEV_POPULATION_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_EXCLUDE_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_EXCLUDE_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_SAMPLE_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_EXCLUDE_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_EXCLUDE_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_VARIANCE_POPULATION_ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_FACILITY_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_FACILITY_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_UTILITY_METER_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_METER_END_DATE_SET_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_METER_END_DATE_SET_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_SERVICE_TYPE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_SERVICE_TYPE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_EXCLUDE_USAGE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_EXCLUDE_USAGE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_USAGE_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_USAGE_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_DEMAND_UNITS_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_DEMAND_UNITS_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_METER_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_METER_STATEMENT_ID_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_IS_VALIDATED_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_IS_VALIDATED_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_METER_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_METER_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_PROVIDER_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_PROVIDER_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_ACCOUNT_LABEL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_ACCOUNT_LABEL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_START_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_START_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_END_DATE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_END_DATE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_STATEMENT_YEAR_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_STATEMENT_YEAR_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_STATEMENT_MONTH_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_STATEMENT_MONTH_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_CURRENCY_CODE_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_CURRENCY_CODE_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_DAYS_IN_BILL_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_DAYS_IN_BILL_DESC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "UTILITY_METER_STATEMENTS_DISTINCT_ACCOUNT_STATEMENT_ID_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "UtilityMetersOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityAccountId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "serviceType", + "type": { + "kind": "ENUM", + "name": "UtilityMeterServiceType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "integrationMeterKey", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "activeStart", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "activeEnd", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "metadata", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "overrideAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "excludeUsage", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "defaultDemandUnits", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "defaultUsageUnits", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "meterNumber", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityAccountId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "serviceType", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterServiceTypeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "integrationMeterKey", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "activeStart", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "activeEnd", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "metadata", + "type": { + "kind": "INPUT_OBJECT", + "name": "JSONFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "overrideAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "excludeUsage", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "defaultDemandUnits", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "defaultUsageUnits", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "deletedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "isNull", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "equalTo", + "type": { + "kind": "ENUM", + "name": "UtilityMeterServiceType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notEqualTo", + "type": { + "kind": "ENUM", + "name": "UtilityMeterServiceType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "distinctFrom", + "type": { + "kind": "ENUM", + "name": "UtilityMeterServiceType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notDistinctFrom", + "type": { + "kind": "ENUM", + "name": "UtilityMeterServiceType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "in", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterServiceType", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "notIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterServiceType", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "lessThan", + "type": { + "kind": "ENUM", + "name": "UtilityMeterServiceType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "lessThanOrEqualTo", + "type": { + "kind": "ENUM", + "name": "UtilityMeterServiceType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThan", + "type": { + "kind": "ENUM", + "name": "UtilityMeterServiceType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThanOrEqualTo", + "type": { + "kind": "ENUM", + "name": "UtilityMeterServiceType", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterServiceTypeFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "BuildingArea", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "BuildingAreasEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "BuildingAreasConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "buildingAreaTypeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "facilityId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "geometry", + "type": { + "kind": "INTERFACE", + "name": "GeometryInterface", + "ofType": null + } + }, + { + "args": [], + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "buildingAreaType", + "type": { + "kind": "OBJECT", + "name": "BuildingAreaType", + "ofType": null + } + }, + { + "args": [], + "name": "facility", + "type": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "TemperatureSensorFilter", + "ofType": null + } + } + ], + "name": "temperatureSensors", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TemperatureSensorsConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "BuildingArea", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "type", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "description", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "metadata", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "BuildingAreasOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "BuildingAreaCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "BuildingAreaFilter", + "ofType": null + } + } + ], + "name": "buildingAreas", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "BuildingAreasConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilitiesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityFilter", + "ofType": null + } + } + ], + "name": "facilitiesByBuildingAreaBuildingAreaTypeIdAndFacilityId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "BuildingAreaTypeFacilitiesByBuildingAreaBuildingAreaTypeIdAndFacilityIdManyToManyConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "BuildingAreaType", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "ID_ASC" + }, + { + "name": "ID_DESC" + }, + { + "name": "BUILDING_AREA_TYPE_ID_ASC" + }, + { + "name": "BUILDING_AREA_TYPE_ID_DESC" + }, + { + "name": "FACILITY_ID_ASC" + }, + { + "name": "FACILITY_ID_DESC" + }, + { + "name": "GEOMETRY_ASC" + }, + { + "name": "GEOMETRY_DESC" + }, + { + "name": "LABEL_ASC" + }, + { + "name": "LABEL_DESC" + }, + { + "name": "DESCRIPTION_ASC" + }, + { + "name": "DESCRIPTION_DESC" + }, + { + "name": "CREATED_AT_ASC" + }, + { + "name": "CREATED_AT_DESC" + }, + { + "name": "UPDATED_AT_ASC" + }, + { + "name": "UPDATED_AT_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "BuildingAreasOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "buildingAreaTypeId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "geometry", + "type": { + "kind": "SCALAR", + "name": "GeoJSON", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "BuildingAreaCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "buildingAreaTypeId", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BuildingAreaFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BuildingAreaFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "BuildingAreaFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "BuildingAreaFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "BuildingAreaTypeFacilitiesByBuildingAreaBuildingAreaTypeIdAndFacilityIdManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "aggregates", + "type": { + "kind": "OBJECT", + "name": "FacilityAggregates", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "groupBy", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilitiesGroupBy", + "ofType": null + } + } + } + } + }, + { + "defaultValue": null, + "name": "having", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilitiesHavingInput", + "ofType": null + } + } + ], + "name": "groupedAggregates", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityAggregates", + "ofType": null + } + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "from", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "to", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "SUM", + "name": "aggregation", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataAggregationMethod", + "ofType": null + } + } + }, + { + "defaultValue": "\"1 day\"", + "name": "window", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "samplingWindow", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "TIME_ASC", + "name": "orderBy", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataOrderBy", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "unit", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "unitGroup", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "name": "metricData", + "type": { + "kind": "OBJECT", + "name": "MetricDataConnection", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "BuildingAreaTypeFacilitiesByBuildingAreaBuildingAreaTypeIdAndFacilityIdManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "BuildingAreasOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "BuildingAreaCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "BuildingAreaFilter", + "ofType": null + } + } + ], + "name": "buildingAreas", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "BuildingAreasConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "BuildingAreaTypeFacilitiesByBuildingAreaBuildingAreaTypeIdAndFacilityIdManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TemperatureSensor", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TemperatureSensorsEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "TemperatureSensorsConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "facilityId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "geometry", + "type": { + "kind": "INTERFACE", + "name": "GeometryInterface", + "ofType": null + } + }, + { + "args": [], + "name": "metadata", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "args": [], + "name": "shortLink", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "batteryId", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "signalId", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "temperatureId", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "TemperatureSensor", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TemperatureSensor", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "TemperatureSensorsEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "metadata", + "type": { + "kind": "INPUT_OBJECT", + "name": "JSONFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "shortLink", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "batteryId", + "type": { + "kind": "INPUT_OBJECT", + "name": "BigIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "signalId", + "type": { + "kind": "INPUT_OBJECT", + "name": "BigIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "temperatureId", + "type": { + "kind": "INPUT_OBJECT", + "name": "BigIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TemperatureSensorFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TemperatureSensorFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "TemperatureSensorFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "TemperatureSensorFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "isNull", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "equalTo", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notEqualTo", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "distinctFrom", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notDistinctFrom", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "in", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "notIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "lessThan", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "lessThanOrEqualTo", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThan", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThanOrEqualTo", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "BigIntFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "BuildingArea", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "BuildingAreasEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Component", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ComponentsEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ComponentsConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "machineUserId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + { + "args": [], + "name": "facilityId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "outOfService", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "args": [], + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "alias", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "machineUser", + "type": { + "kind": "OBJECT", + "name": "MachineUser", + "ofType": null + } + }, + { + "args": [], + "name": "facility", + "type": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ControlEventsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ControlEventCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ControlEventFilter", + "ofType": null + } + } + ], + "name": "controlEvents", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ControlEventsConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ControlEventFilter", + "ofType": null + } + } + ], + "name": "nextControlEvents", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ControlEventsConnection", + "ofType": null + } + } + }, + { + "args": [], + "name": "permissions", + "type": { + "kind": "OBJECT", + "name": "ComponentPermissions", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFilter", + "ofType": null + } + } + ], + "name": "projects", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ComponentProjectsManyToManyConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "Component", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + { + "args": [], + "name": "description", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "createdBy", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ComponentsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ComponentCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ComponentFilter", + "ofType": null + } + } + ], + "name": "components", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ComponentsConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "PlatformAccessTokenFilter", + "ofType": null + } + } + ], + "name": "accessTokens", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PlatformAccessTokensConnection", + "ofType": null + } + } + }, + { + "args": [], + "name": "creator", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + { + "args": [], + "name": "vendorUser", + "type": { + "kind": "OBJECT", + "name": "VendorUser", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "canWrite", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "canRead", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + ], + "name": "capabilities", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PlatformCapabilityAccess", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "permissions", + "type": { + "kind": "OBJECT", + "name": "MachineUserPermissions", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilitiesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityFilter", + "ofType": null + } + } + ], + "name": "facilitiesByComponentMachineUserIdAndFacilityId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MachineUserFacilitiesByComponentMachineUserIdAndFacilityIdManyToManyConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "MachineUser", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "ID_ASC" + }, + { + "name": "ID_DESC" + }, + { + "name": "NAME_ASC" + }, + { + "name": "NAME_DESC" + }, + { + "name": "MACHINE_USER_ID_ASC" + }, + { + "name": "MACHINE_USER_ID_DESC" + }, + { + "name": "FACILITY_ID_ASC" + }, + { + "name": "FACILITY_ID_DESC" + }, + { + "name": "OUT_OF_SERVICE_ASC" + }, + { + "name": "OUT_OF_SERVICE_DESC" + }, + { + "name": "CREATED_AT_ASC" + }, + { + "name": "CREATED_AT_DESC" + }, + { + "name": "UPDATED_AT_ASC" + }, + { + "name": "UPDATED_AT_DESC" + }, + { + "name": "ALIAS_ASC" + }, + { + "name": "ALIAS_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "ComponentsOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "machineUserId", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "outOfService", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "alias", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ComponentCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "canWrite", + "type": { + "kind": "INPUT_OBJECT", + "name": "PermissionBooleanFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "machineUserId", + "type": { + "kind": "INPUT_OBJECT", + "name": "BigIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "outOfService", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "alias", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ComponentFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ComponentFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "ComponentFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ComponentFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "equalTo", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "PermissionBooleanFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PlatformAccessToken", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PlatformAccessTokensEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "PlatformAccessTokensConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "id", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "type", + "type": { + "kind": "ENUM", + "name": "AccessTokenType", + "ofType": null + } + }, + { + "args": [], + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "ownerId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "args": [], + "name": "expiresAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "args": [], + "name": "machineUser", + "type": { + "kind": "OBJECT", + "name": "MachineUser", + "ofType": null + } + }, + { + "args": [], + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "PlatformAccessToken", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "USER" + }, + { + "name": "MACHINE" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "AccessTokenType", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "firstName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "lastName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "email", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "phoneNumber", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "phoneNumberValidated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "args": [], + "name": "preferredLocale", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectWatchersOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectWatcherCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectWatcherFilter", + "ofType": null + } + } + ], + "name": "projectWatchers", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectWatchersConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "PlatformAccessTokenFilter", + "ofType": null + } + } + ], + "name": "accessTokens", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PlatformAccessTokensConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityFilter", + "ofType": null + } + } + ], + "name": "favoriteFacilities", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilitiesConnection", + "ofType": null + } + } + }, + { + "args": [], + "name": "permissions", + "type": { + "kind": "OBJECT", + "name": "UserPermissions", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFilter", + "ofType": null + } + } + ], + "name": "projects", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UserProjectsManyToManyConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "User", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectWatcher", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectWatchersEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ProjectWatchersConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "projectId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "userId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "project", + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + }, + { + "args": [], + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + { + "args": [], + "name": "subscribedChannels", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UserSubscriptionChannel", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "ProjectWatcher", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "facilityId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "projectTypeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "autoAcknowledge", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "args": [], + "name": "config", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + }, + { + "args": [], + "name": "startDate", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "args": [], + "name": "endDate", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "args": [], + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "args": [], + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "args": [], + "name": "acknowledgementWindowThreshold", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "startTimeout", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "endTimeout", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "programId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "facility", + "type": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + }, + { + "args": [], + "name": "projectType", + "type": { + "kind": "OBJECT", + "name": "ProjectType", + "ofType": null + } + }, + { + "args": [], + "name": "program", + "type": { + "kind": "OBJECT", + "name": "Program", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectComponentsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectComponentCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectComponentFilter", + "ofType": null + } + } + ], + "name": "projectComponents", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectComponentsConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectFieldsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFieldCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFieldFilter", + "ofType": null + } + } + ], + "name": "projectFields", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectFieldsConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectWatchersOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectWatcherCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectWatcherFilter", + "ofType": null + } + } + ], + "name": "projectWatchers", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectWatchersConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SavingsEventsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "SavingsEventCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "SavingsEventFilter", + "ofType": null + } + } + ], + "name": "savingsEvents", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SavingsEventsConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SuggestionsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "SuggestionCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "SuggestionFilter", + "ofType": null + } + } + ], + "name": "suggestions", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SuggestionsConnection", + "ofType": null + } + } + }, + { + "args": [], + "name": "controlType", + "type": { + "kind": "ENUM", + "name": "ControlType", + "ofType": null + } + }, + { + "args": [], + "name": "facilityName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "isWatching", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "args": [], + "name": "programName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "projectTypeName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "subscribedChannels", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UserSubscriptionChannel", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UserSubscriptionFilter", + "ofType": null + } + } + ], + "name": "subscriptions", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UserSubscriptionsConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UserSubscriptionFilter", + "ofType": null + } + } + ], + "name": "userSubscriptions", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UserSubscriptionsConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UsersOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UserCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UserFilter", + "ofType": null + } + } + ], + "name": "controllers", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UsersConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "from", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "to", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "aggregation", + "type": { + "kind": "ENUM", + "name": "MetricDataAggregationMethod", + "ofType": null + } + }, + { + "defaultValue": "\"1 day\"", + "name": "window", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "samplingWindow", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "TIME_ASC", + "name": "orderBy", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataOrderBy", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "unit", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "unitGroup", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "name": "savingsEventData", + "type": { + "kind": "OBJECT", + "name": "MetricDataConnection", + "ofType": null + } + }, + { + "args": [], + "name": "permissions", + "type": { + "kind": "OBJECT", + "name": "ProjectPermissions", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ComponentsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ComponentCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ComponentFilter", + "ofType": null + } + } + ], + "name": "components", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectComponentsManyToManyConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FieldGroupsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "FieldGroupCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "FieldGroupFilter", + "ofType": null + } + } + ], + "name": "fieldGroupsByProjectFieldProjectIdAndGroupId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectFieldGroupsByProjectFieldProjectIdAndGroupIdManyToManyConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "DataPointsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "DataPointCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "DataPointFilter", + "ofType": null + } + } + ], + "name": "dataPointsByProjectFieldProjectIdAndDataPointId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectDataPointsByProjectFieldProjectIdAndDataPointIdManyToManyConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UsersOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UserCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UserFilter", + "ofType": null + } + } + ], + "name": "watchers", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectWatchersManyToManyConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SavingsEventsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "SavingsEventCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "SavingsEventFilter", + "ofType": null + } + } + ], + "name": "savingsEventsBySuggestionProjectIdAndSavingsEventId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectSavingsEventsBySuggestionProjectIdAndSavingsEventIdManyToManyConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "Project", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFilter", + "ofType": null + } + } + ], + "name": "projects", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectsConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProgramsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProgramCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProgramFilter", + "ofType": null + } + } + ], + "name": "programs", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProgramsConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilitiesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityFilter", + "ofType": null + } + } + ], + "name": "facilitiesByProjectProjectTypeIdAndFacilityId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectTypeFacilitiesByProjectProjectTypeIdAndFacilityIdManyToManyConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProgramsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProgramCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProgramFilter", + "ofType": null + } + } + ], + "name": "programsByProjectProjectTypeIdAndProgramId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectTypeProgramsByProjectProjectTypeIdAndProgramIdManyToManyConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "ProjectType", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectsEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "from", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "to", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "SUM", + "name": "aggregation", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataAggregationMethod", + "ofType": null + } + } + }, + { + "defaultValue": "\"1 day\"", + "name": "window", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "samplingWindow", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "TIME_ASC", + "name": "orderBy", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataOrderBy", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "unit", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "unitGroup", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "name": "savingsEventData", + "type": { + "kind": "OBJECT", + "name": "MetricDataConnection", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ProjectsConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ProjectsEdge", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "ID_ASC" + }, + { + "name": "ID_DESC" + }, + { + "name": "FACILITY_ID_ASC" + }, + { + "name": "FACILITY_ID_DESC" + }, + { + "name": "PROJECT_TYPE_ID_ASC" + }, + { + "name": "PROJECT_TYPE_ID_DESC" + }, + { + "name": "NAME_ASC" + }, + { + "name": "NAME_DESC" + }, + { + "name": "DESCRIPTION_ASC" + }, + { + "name": "DESCRIPTION_DESC" + }, + { + "name": "AUTO_ACKNOWLEDGE_ASC" + }, + { + "name": "AUTO_ACKNOWLEDGE_DESC" + }, + { + "name": "CONFIG_ASC" + }, + { + "name": "CONFIG_DESC" + }, + { + "name": "START_DATE_ASC" + }, + { + "name": "START_DATE_DESC" + }, + { + "name": "END_DATE_ASC" + }, + { + "name": "END_DATE_DESC" + }, + { + "name": "CREATED_AT_ASC" + }, + { + "name": "CREATED_AT_DESC" + }, + { + "name": "UPDATED_AT_ASC" + }, + { + "name": "UPDATED_AT_DESC" + }, + { + "name": "ACKNOWLEDGEMENT_WINDOW_THRESHOLD_ASC" + }, + { + "name": "ACKNOWLEDGEMENT_WINDOW_THRESHOLD_DESC" + }, + { + "name": "START_TIMEOUT_ASC" + }, + { + "name": "START_TIMEOUT_DESC" + }, + { + "name": "END_TIMEOUT_ASC" + }, + { + "name": "END_TIMEOUT_DESC" + }, + { + "name": "PROGRAM_ID_ASC" + }, + { + "name": "PROGRAM_ID_DESC" + }, + { + "name": "CONTROL_TYPE_ASC" + }, + { + "name": "CONTROL_TYPE_DESC" + }, + { + "name": "FACILITY_NAME_ASC" + }, + { + "name": "FACILITY_NAME_DESC" + }, + { + "name": "IS_WATCHING_ASC" + }, + { + "name": "IS_WATCHING_DESC" + }, + { + "name": "PROGRAM_NAME_ASC" + }, + { + "name": "PROGRAM_NAME_DESC" + }, + { + "name": "PROJECT_TYPE_NAME_ASC" + }, + { + "name": "PROJECT_TYPE_NAME_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "ProjectsOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "projectTypeId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "autoAcknowledge", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "config", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startDate", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "endDate", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "acknowledgementWindowThreshold", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startTimeout", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "endTimeout", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "programId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ProjectCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "canControl", + "type": { + "kind": "INPUT_OBJECT", + "name": "PermissionBooleanFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "projectTypeId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "autoAcknowledge", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "config", + "type": { + "kind": "INPUT_OBJECT", + "name": "JSONFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "endDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "acknowledgementWindowThreshold", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startTimeout", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "endTimeout", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "programId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "controlType", + "type": { + "kind": "INPUT_OBJECT", + "name": "ControlTypeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "facilityName", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "isWatching", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "programName", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "projectTypeName", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "subscribedChannels", + "type": { + "kind": "INPUT_OBJECT", + "name": "UserSubscriptionChannelListFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ProjectFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "isNull", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "equalTo", + "type": { + "kind": "ENUM", + "name": "ControlType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notEqualTo", + "type": { + "kind": "ENUM", + "name": "ControlType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "distinctFrom", + "type": { + "kind": "ENUM", + "name": "ControlType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notDistinctFrom", + "type": { + "kind": "ENUM", + "name": "ControlType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "in", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ControlType", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "notIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ControlType", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "lessThan", + "type": { + "kind": "ENUM", + "name": "ControlType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "lessThanOrEqualTo", + "type": { + "kind": "ENUM", + "name": "ControlType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThan", + "type": { + "kind": "ENUM", + "name": "ControlType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThanOrEqualTo", + "type": { + "kind": "ENUM", + "name": "ControlType", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ControlTypeFilter", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "MANUAL" + }, + { + "name": "AUTOMATIC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "ControlType", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "isNull", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "equalTo", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UserSubscriptionChannel", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "notEqualTo", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UserSubscriptionChannel", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "distinctFrom", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UserSubscriptionChannel", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "notDistinctFrom", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UserSubscriptionChannel", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "lessThan", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UserSubscriptionChannel", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "lessThanOrEqualTo", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UserSubscriptionChannel", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "greaterThan", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UserSubscriptionChannel", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "greaterThanOrEqualTo", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UserSubscriptionChannel", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "contains", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UserSubscriptionChannel", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "containedBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UserSubscriptionChannel", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "overlaps", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UserSubscriptionChannel", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "anyEqualTo", + "type": { + "kind": "ENUM", + "name": "UserSubscriptionChannel", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "anyNotEqualTo", + "type": { + "kind": "ENUM", + "name": "UserSubscriptionChannel", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "anyLessThan", + "type": { + "kind": "ENUM", + "name": "UserSubscriptionChannel", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "anyLessThanOrEqualTo", + "type": { + "kind": "ENUM", + "name": "UserSubscriptionChannel", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "anyGreaterThan", + "type": { + "kind": "ENUM", + "name": "UserSubscriptionChannel", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "anyGreaterThanOrEqualTo", + "type": { + "kind": "ENUM", + "name": "UserSubscriptionChannel", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UserSubscriptionChannelListFilter", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "SMS" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "UserSubscriptionChannel", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Program", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProgramsEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ProgramsConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "projectTypeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "projectType", + "type": { + "kind": "OBJECT", + "name": "ProjectType", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFilter", + "ofType": null + } + } + ], + "name": "projects", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectsConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilitiesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityFilter", + "ofType": null + } + } + ], + "name": "facilitiesByProjectProgramIdAndFacilityId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProgramFacilitiesByProjectProgramIdAndFacilityIdManyToManyConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectTypesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectTypeCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectTypeFilter", + "ofType": null + } + } + ], + "name": "projectTypesByProjectProgramIdAndProjectTypeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProgramProjectTypesByProjectProgramIdAndProjectTypeIdManyToManyConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "Program", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProgramFacilitiesByProjectProgramIdAndFacilityIdManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "aggregates", + "type": { + "kind": "OBJECT", + "name": "FacilityAggregates", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "groupBy", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilitiesGroupBy", + "ofType": null + } + } + } + } + }, + { + "defaultValue": null, + "name": "having", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilitiesHavingInput", + "ofType": null + } + } + ], + "name": "groupedAggregates", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityAggregates", + "ofType": null + } + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "from", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "to", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "SUM", + "name": "aggregation", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataAggregationMethod", + "ofType": null + } + } + }, + { + "defaultValue": "\"1 day\"", + "name": "window", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "samplingWindow", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "TIME_ASC", + "name": "orderBy", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataOrderBy", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "unit", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "unitGroup", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "name": "metricData", + "type": { + "kind": "OBJECT", + "name": "MetricDataConnection", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ProgramFacilitiesByProjectProgramIdAndFacilityIdManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFilter", + "ofType": null + } + } + ], + "name": "projects", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectsConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ProgramFacilitiesByProjectProgramIdAndFacilityIdManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectType", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProgramProjectTypesByProjectProgramIdAndProjectTypeIdManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ProgramProjectTypesByProjectProgramIdAndProjectTypeIdManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectType", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFilter", + "ofType": null + } + } + ], + "name": "projects", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectsConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ProgramProjectTypesByProjectProgramIdAndProjectTypeIdManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "ID_ASC" + }, + { + "name": "ID_DESC" + }, + { + "name": "NAME_ASC" + }, + { + "name": "NAME_DESC" + }, + { + "name": "DESCRIPTION_ASC" + }, + { + "name": "DESCRIPTION_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "ProjectTypesOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ProjectTypeCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectTypeFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectTypeFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectTypeFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ProjectTypeFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Program", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ProgramsEdge", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "ID_ASC" + }, + { + "name": "ID_DESC" + }, + { + "name": "PROJECT_TYPE_ID_ASC" + }, + { + "name": "PROJECT_TYPE_ID_DESC" + }, + { + "name": "NAME_ASC" + }, + { + "name": "NAME_DESC" + }, + { + "name": "DESCRIPTION_ASC" + }, + { + "name": "DESCRIPTION_DESC" + }, + { + "name": "CREATED_AT_ASC" + }, + { + "name": "CREATED_AT_DESC" + }, + { + "name": "UPDATED_AT_ASC" + }, + { + "name": "UPDATED_AT_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "ProgramsOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "projectTypeId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ProgramCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "projectTypeId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProgramFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProgramFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProgramFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ProgramFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectTypeFacilitiesByProjectProjectTypeIdAndFacilityIdManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "aggregates", + "type": { + "kind": "OBJECT", + "name": "FacilityAggregates", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "groupBy", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilitiesGroupBy", + "ofType": null + } + } + } + } + }, + { + "defaultValue": null, + "name": "having", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilitiesHavingInput", + "ofType": null + } + } + ], + "name": "groupedAggregates", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityAggregates", + "ofType": null + } + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "from", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "to", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "SUM", + "name": "aggregation", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataAggregationMethod", + "ofType": null + } + } + }, + { + "defaultValue": "\"1 day\"", + "name": "window", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "samplingWindow", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "TIME_ASC", + "name": "orderBy", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataOrderBy", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "unit", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "unitGroup", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "name": "metricData", + "type": { + "kind": "OBJECT", + "name": "MetricDataConnection", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ProjectTypeFacilitiesByProjectProjectTypeIdAndFacilityIdManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFilter", + "ofType": null + } + } + ], + "name": "projects", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectsConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ProjectTypeFacilitiesByProjectProjectTypeIdAndFacilityIdManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Program", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectTypeProgramsByProjectProjectTypeIdAndProgramIdManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ProjectTypeProgramsByProjectProjectTypeIdAndProgramIdManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Program", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFilter", + "ofType": null + } + } + ], + "name": "projects", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectsConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ProjectTypeProgramsByProjectProjectTypeIdAndProgramIdManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectComponent", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectComponentsEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ProjectComponentsConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "projectId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "componentId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "startupOffset", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "project", + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + }, + { + "args": [], + "name": "component", + "type": { + "kind": "OBJECT", + "name": "Component", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "ProjectComponent", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectComponent", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ProjectComponentsEdge", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "PROJECT_ID_ASC" + }, + { + "name": "PROJECT_ID_DESC" + }, + { + "name": "COMPONENT_ID_ASC" + }, + { + "name": "COMPONENT_ID_DESC" + }, + { + "name": "STARTUP_OFFSET_ASC" + }, + { + "name": "STARTUP_OFFSET_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "ProjectComponentsOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "projectId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "componentId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startupOffset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ProjectComponentCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "projectId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "componentId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startupOffset", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectComponentFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectComponentFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectComponentFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ProjectComponentFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectField", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectFieldsEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ProjectFieldsConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "projectId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "fieldId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "groupId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "alias", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "rate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + }, + { + "args": [], + "name": "target", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "dataPointId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + { + "args": [], + "name": "project", + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + }, + { + "args": [], + "name": "group", + "type": { + "kind": "OBJECT", + "name": "FieldGroup", + "ofType": null + } + }, + { + "args": [], + "name": "dataPoint", + "type": { + "kind": "OBJECT", + "name": "DataPoint", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "ProjectField", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "description", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectFieldsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFieldCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFieldFilter", + "ofType": null + } + } + ], + "name": "projectFieldsByGroupId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectFieldsConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFilter", + "ofType": null + } + } + ], + "name": "projectsByProjectFieldGroupIdAndProjectId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FieldGroupProjectsByProjectFieldGroupIdAndProjectIdManyToManyConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "DataPointsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "DataPointCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "DataPointFilter", + "ofType": null + } + } + ], + "name": "dataPointsByProjectFieldGroupIdAndDataPointId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FieldGroupDataPointsByProjectFieldGroupIdAndDataPointIdManyToManyConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "FieldGroup", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "PROJECT_ID_ASC" + }, + { + "name": "PROJECT_ID_DESC" + }, + { + "name": "FIELD_ID_ASC" + }, + { + "name": "FIELD_ID_DESC" + }, + { + "name": "GROUP_ID_ASC" + }, + { + "name": "GROUP_ID_DESC" + }, + { + "name": "CREATED_AT_ASC" + }, + { + "name": "CREATED_AT_DESC" + }, + { + "name": "UPDATED_AT_ASC" + }, + { + "name": "UPDATED_AT_DESC" + }, + { + "name": "ALIAS_ASC" + }, + { + "name": "ALIAS_DESC" + }, + { + "name": "ID_ASC" + }, + { + "name": "ID_DESC" + }, + { + "name": "RATE_ASC" + }, + { + "name": "RATE_DESC" + }, + { + "name": "TARGET_ASC" + }, + { + "name": "TARGET_DESC" + }, + { + "name": "DATA_POINT_ID_ASC" + }, + { + "name": "DATA_POINT_ID_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "ProjectFieldsOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "projectId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "fieldId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "groupId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "alias", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "rate", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "target", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "dataPointId", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ProjectFieldCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "projectId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "fieldId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "groupId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "alias", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "rate", + "type": { + "kind": "INPUT_OBJECT", + "name": "JSONFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "target", + "type": { + "kind": "INPUT_OBJECT", + "name": "BigFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "dataPointId", + "type": { + "kind": "INPUT_OBJECT", + "name": "BigIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectFieldFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectFieldFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFieldFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ProjectFieldFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "isNull", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "equalTo", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notEqualTo", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "distinctFrom", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notDistinctFrom", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "in", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "notIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "lessThan", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "lessThanOrEqualTo", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThan", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThanOrEqualTo", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "BigFloatFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FieldGroupProjectsByProjectFieldGroupIdAndProjectIdManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "from", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "to", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "SUM", + "name": "aggregation", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataAggregationMethod", + "ofType": null + } + } + }, + { + "defaultValue": "\"1 day\"", + "name": "window", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "samplingWindow", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "TIME_ASC", + "name": "orderBy", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataOrderBy", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "unit", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "unitGroup", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "name": "savingsEventData", + "type": { + "kind": "OBJECT", + "name": "MetricDataConnection", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FieldGroupProjectsByProjectFieldGroupIdAndProjectIdManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectFieldsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFieldCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFieldFilter", + "ofType": null + } + } + ], + "name": "projectFields", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectFieldsConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FieldGroupProjectsByProjectFieldGroupIdAndProjectIdManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DataPoint", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FieldGroupDataPointsByProjectFieldGroupIdAndDataPointIdManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FieldGroupDataPointsByProjectFieldGroupIdAndDataPointIdManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + { + "args": [], + "name": "dataSourceName", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "alias", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "units", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "expression", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "dataType", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "type", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "DataPointType", + "ofType": null + } + } + }, + { + "args": [], + "name": "frequency", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "locationType", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "dataSourceByDataSourceName", + "type": { + "kind": "OBJECT", + "name": "DataSource", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectFieldsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFieldCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFieldFilter", + "ofType": null + } + } + ], + "name": "projectFields", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectFieldsConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "DataPointFilter", + "ofType": null + } + } + ], + "name": "allDependencies", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DataPointsConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "DataPointFilter", + "ofType": null + } + } + ], + "name": "allDependents", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DataPointsConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "DataPointFilter", + "ofType": null + } + } + ], + "name": "dependencies", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DataPointsConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "DataPointFilter", + "ofType": null + } + } + ], + "name": "dependents", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DataPointsConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "VirtualPointIntervalFilter", + "ofType": null + } + } + ], + "name": "pointIntervals", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "VirtualPointIntervalsConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "from", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "to", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": "AVG", + "name": "aggregation", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataAggregationMethod", + "ofType": null + } + } + }, + { + "defaultValue": "\"1 hour\"", + "name": "window", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "samplingWindow", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "TIME_ASC", + "name": "orderBy", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataOrderBy", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "unit", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "name": "data", + "type": { + "kind": "OBJECT", + "name": "MetricDataConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "from", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "to", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "TIME_ASC", + "name": "orderBy", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataOrderBy", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "unit", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "name": "rawData", + "type": { + "kind": "OBJECT", + "name": "MetricDataConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFilter", + "ofType": null + } + } + ], + "name": "projectsByProjectFieldDataPointIdAndProjectId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DataPointProjectsByProjectFieldDataPointIdAndProjectIdManyToManyConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FieldGroupsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "FieldGroupCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "FieldGroupFilter", + "ofType": null + } + } + ], + "name": "fieldGroupsByProjectFieldDataPointIdAndGroupId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DataPointFieldGroupsByProjectFieldDataPointIdAndGroupIdManyToManyConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "DataPoint", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "RAW" + }, + { + "name": "COMPOSITE" + }, + { + "name": "VIRTUAL" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "DataPointType", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "DataPointsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "DataPointCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "DataPointFilter", + "ofType": null + } + } + ], + "name": "dataPoints", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DataPointsConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilityDataSourcesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityDataSourceCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityDataSourceFilter", + "ofType": null + } + } + ], + "name": "facilityDataSourcesByDataSourceName", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityDataSourcesConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilitiesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityFilter", + "ofType": null + } + } + ], + "name": "facilities", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DataSourceFacilitiesManyToManyConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "DataSource", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DataPoint", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DataPointsEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DataPointsConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DataPoint", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DataPointsEdge", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "ID_ASC" + }, + { + "name": "ID_DESC" + }, + { + "name": "DATA_SOURCE_NAME_ASC" + }, + { + "name": "DATA_SOURCE_NAME_DESC" + }, + { + "name": "NAME_ASC" + }, + { + "name": "NAME_DESC" + }, + { + "name": "ALIAS_ASC" + }, + { + "name": "ALIAS_DESC" + }, + { + "name": "DESCRIPTION_ASC" + }, + { + "name": "DESCRIPTION_DESC" + }, + { + "name": "UNITS_ASC" + }, + { + "name": "UNITS_DESC" + }, + { + "name": "EXPRESSION_ASC" + }, + { + "name": "EXPRESSION_DESC" + }, + { + "name": "DATA_TYPE_ASC" + }, + { + "name": "DATA_TYPE_DESC" + }, + { + "name": "CREATED_AT_ASC" + }, + { + "name": "CREATED_AT_DESC" + }, + { + "name": "UPDATED_AT_ASC" + }, + { + "name": "UPDATED_AT_DESC" + }, + { + "name": "FORMATTED_EXPRESSION_ASC" + }, + { + "name": "FORMATTED_EXPRESSION_DESC" + }, + { + "name": "TYPE_ASC" + }, + { + "name": "TYPE_DESC" + }, + { + "name": "FREQUENCY_ASC" + }, + { + "name": "FREQUENCY_DESC" + }, + { + "name": "LOCATION_TYPE_ASC" + }, + { + "name": "LOCATION_TYPE_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "DataPointsOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "dataSourceName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "alias", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "units", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "expression", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "dataType", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "formattedExpression", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "type", + "type": { + "kind": "ENUM", + "name": "DataPointType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "frequency", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "locationType", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DataPointCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "BigIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "dataSourceName", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "alias", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "units", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "expression", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "dataType", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "formattedExpression", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "type", + "type": { + "kind": "INPUT_OBJECT", + "name": "DataPointTypeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "frequency", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "locationType", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "isComposite", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DataPointFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DataPointFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "DataPointFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DataPointFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "isNull", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "equalTo", + "type": { + "kind": "ENUM", + "name": "DataPointType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notEqualTo", + "type": { + "kind": "ENUM", + "name": "DataPointType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "distinctFrom", + "type": { + "kind": "ENUM", + "name": "DataPointType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notDistinctFrom", + "type": { + "kind": "ENUM", + "name": "DataPointType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "in", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "DataPointType", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "notIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "DataPointType", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "lessThan", + "type": { + "kind": "ENUM", + "name": "DataPointType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "lessThanOrEqualTo", + "type": { + "kind": "ENUM", + "name": "DataPointType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThan", + "type": { + "kind": "ENUM", + "name": "DataPointType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThanOrEqualTo", + "type": { + "kind": "ENUM", + "name": "DataPointType", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DataPointTypeFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityDataSource", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityDataSourcesEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilityDataSourcesConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "facilityId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "dataSourceName", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "facility", + "type": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + }, + { + "args": [], + "name": "dataSourceByDataSourceName", + "type": { + "kind": "OBJECT", + "name": "DataSource", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "FacilityDataSource", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityDataSource", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilityDataSourcesEdge", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "FACILITY_ID_ASC" + }, + { + "name": "FACILITY_ID_DESC" + }, + { + "name": "DATA_SOURCE_NAME_ASC" + }, + { + "name": "DATA_SOURCE_NAME_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "FacilityDataSourcesOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "dataSourceName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "FacilityDataSourceCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "dataSourceName", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FacilityDataSourceFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FacilityDataSourceFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityDataSourceFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "FacilityDataSourceFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DataSourceFacilitiesManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "aggregates", + "type": { + "kind": "OBJECT", + "name": "FacilityAggregates", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "groupBy", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilitiesGroupBy", + "ofType": null + } + } + } + } + }, + { + "defaultValue": null, + "name": "having", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilitiesHavingInput", + "ofType": null + } + } + ], + "name": "groupedAggregates", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityAggregates", + "ofType": null + } + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "from", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "to", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "SUM", + "name": "aggregation", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataAggregationMethod", + "ofType": null + } + } + }, + { + "defaultValue": "\"1 day\"", + "name": "window", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "samplingWindow", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "TIME_ASC", + "name": "orderBy", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataOrderBy", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "unit", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "unitGroup", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "name": "metricData", + "type": { + "kind": "OBJECT", + "name": "MetricDataConnection", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DataSourceFacilitiesManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DataSourceFacilitiesManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "VirtualPointInterval", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "VirtualPointIntervalsEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "VirtualPointIntervalsConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "parentId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + { + "args": [], + "name": "childId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + { + "args": [], + "name": "startTime", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "endTime", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "args": [], + "name": "parent", + "type": { + "kind": "OBJECT", + "name": "DataPoint", + "ofType": null + } + }, + { + "args": [], + "name": "child", + "type": { + "kind": "OBJECT", + "name": "DataPoint", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "VirtualPointInterval", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "VirtualPointInterval", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "VirtualPointIntervalsEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "parentId", + "type": { + "kind": "INPUT_OBJECT", + "name": "BigIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "childId", + "type": { + "kind": "INPUT_OBJECT", + "name": "BigIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startTime", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "endTime", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "VirtualPointIntervalFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "VirtualPointIntervalFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "VirtualPointIntervalFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "VirtualPointIntervalFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DataPointProjectsByProjectFieldDataPointIdAndProjectIdManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "from", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "to", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "SUM", + "name": "aggregation", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataAggregationMethod", + "ofType": null + } + } + }, + { + "defaultValue": "\"1 day\"", + "name": "window", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "samplingWindow", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "TIME_ASC", + "name": "orderBy", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataOrderBy", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "unit", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "unitGroup", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "name": "savingsEventData", + "type": { + "kind": "OBJECT", + "name": "MetricDataConnection", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DataPointProjectsByProjectFieldDataPointIdAndProjectIdManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectFieldsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFieldCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFieldFilter", + "ofType": null + } + } + ], + "name": "projectFields", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectFieldsConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DataPointProjectsByProjectFieldDataPointIdAndProjectIdManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FieldGroup", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DataPointFieldGroupsByProjectFieldDataPointIdAndGroupIdManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DataPointFieldGroupsByProjectFieldDataPointIdAndGroupIdManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FieldGroup", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectFieldsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFieldCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFieldFilter", + "ofType": null + } + } + ], + "name": "projectFieldsByGroupId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectFieldsConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DataPointFieldGroupsByProjectFieldDataPointIdAndGroupIdManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "ID_ASC" + }, + { + "name": "ID_DESC" + }, + { + "name": "LABEL_ASC" + }, + { + "name": "LABEL_DESC" + }, + { + "name": "DESCRIPTION_ASC" + }, + { + "name": "DESCRIPTION_DESC" + }, + { + "name": "CREATED_AT_ASC" + }, + { + "name": "CREATED_AT_DESC" + }, + { + "name": "UPDATED_AT_ASC" + }, + { + "name": "UPDATED_AT_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "FieldGroupsOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "FieldGroupCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FieldGroupFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FieldGroupFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "FieldGroupFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "FieldGroupFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DataPoint", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectFieldsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFieldCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFieldFilter", + "ofType": null + } + } + ], + "name": "projectFields", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectFieldsConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FieldGroupDataPointsByProjectFieldGroupIdAndDataPointIdManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectField", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ProjectFieldsEdge", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "PROJECT_ID_ASC" + }, + { + "name": "PROJECT_ID_DESC" + }, + { + "name": "USER_ID_ASC" + }, + { + "name": "USER_ID_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "ProjectWatchersOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "projectId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "userId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ProjectWatcherCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "projectId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "userId", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "subscribedChannels", + "type": { + "kind": "INPUT_OBJECT", + "name": "UserSubscriptionChannelListFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectWatcherFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectWatcherFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectWatcherFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ProjectWatcherFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SavingsEvent", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SavingsEventsEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "from", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "to", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "SUM", + "name": "aggregation", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataAggregationMethod", + "ofType": null + } + } + }, + { + "defaultValue": "\"1 day\"", + "name": "window", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "samplingWindow", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "TIME_ASC", + "name": "orderBy", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataOrderBy", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "unit", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "unitGroup", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "name": "savingsEventData", + "type": { + "kind": "OBJECT", + "name": "MetricDataConnection", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "SavingsEventsConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "projectId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "startTime", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "endTime", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "metadata", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "args": [], + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "project", + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SuggestionsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "SuggestionCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "SuggestionFilter", + "ofType": null + } + } + ], + "name": "suggestions", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SuggestionsConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "from", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "to", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "aggregation", + "type": { + "kind": "ENUM", + "name": "MetricDataAggregationMethod", + "ofType": null + } + }, + { + "defaultValue": "\"1 day\"", + "name": "window", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "samplingWindow", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "TIME_ASC", + "name": "orderBy", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataOrderBy", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "unit", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "unitGroup", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "name": "savingsEventData", + "type": { + "kind": "OBJECT", + "name": "MetricDataConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFilter", + "ofType": null + } + } + ], + "name": "projectsBySuggestionSavingsEventIdAndProjectId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SavingsEventProjectsBySuggestionSavingsEventIdAndProjectIdManyToManyConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "SavingsEvent", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Suggestion", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SuggestionsEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "SuggestionsConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "projectId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "startTime", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "endTime", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "args": [], + "name": "metadata", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + }, + { + "args": [], + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "args": [], + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "args": [], + "name": "withdrawnAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "args": [], + "name": "acknowledgementStatus", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "Acknowledgement", + "ofType": null + } + } + }, + { + "args": [], + "name": "savingsEventId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "project", + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + }, + { + "args": [], + "name": "savingsEvent", + "type": { + "kind": "OBJECT", + "name": "SavingsEvent", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[NATURAL]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SuggestionActivityLogsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "SuggestionActivityLogCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "SuggestionActivityLogFilter", + "ofType": null + } + } + ], + "name": "suggestionActivityLogs", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SuggestionActivityLogsConnection", + "ofType": null + } + } + }, + { + "args": [], + "name": "acknowledgementCutoff", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ControlEventFilter", + "ofType": null + } + } + ], + "name": "controlEvents", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ControlEventsConnection", + "ofType": null + } + } + }, + { + "args": [], + "name": "controlType", + "type": { + "kind": "ENUM", + "name": "ControlType", + "ofType": null + } + }, + { + "args": [], + "name": "facility", + "type": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + }, + { + "args": [], + "name": "facilityId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "facilityName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "isAcknowledged", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "args": [], + "name": "isRejected", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "args": [], + "name": "isWatching", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "args": [], + "name": "isWithdrawn", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "args": [], + "name": "projectName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "projectType", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "state", + "type": { + "kind": "ENUM", + "name": "SuggestionState", + "ofType": null + } + }, + { + "args": [], + "name": "availableAcknowledgements", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "Acknowledgement", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "permissions", + "type": { + "kind": "OBJECT", + "name": "SuggestionPermissions", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "Suggestion", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "ACKNOWLEDGED" + }, + { + "name": "REJECTED" + }, + { + "name": "UNACKNOWLEDGED" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "Acknowledgement", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SuggestionActivityLog", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SuggestionActivityLogsEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "SuggestionActivityLogsConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "suggestionId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "type", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SuggestionActivityType", + "ofType": null + } + } + }, + { + "args": [], + "name": "actor", + "type": { + "kind": "OBJECT", + "name": "Actor", + "ofType": null + } + }, + { + "args": [], + "name": "metadata", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + }, + { + "args": [], + "name": "suggestion", + "type": { + "kind": "OBJECT", + "name": "Suggestion", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "SuggestionActivityLog", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "ACKNOWLEDGED" + }, + { + "name": "REJECTED" + }, + { + "name": "WITHDRAWN" + }, + { + "name": "UPDATED" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "SuggestionActivityType", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "type", + "type": { + "kind": "ENUM", + "name": "AccessTokenType", + "ofType": null + } + }, + { + "args": [], + "name": "displayName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "machineUser", + "type": { + "kind": "OBJECT", + "name": "MachineUser", + "ofType": null + } + }, + { + "args": [], + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "Actor", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SuggestionActivityLog", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "SuggestionActivityLogsEdge", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "SUGGESTION_ID_ASC" + }, + { + "name": "SUGGESTION_ID_DESC" + }, + { + "name": "CREATED_AT_ASC" + }, + { + "name": "CREATED_AT_DESC" + }, + { + "name": "TYPE_ASC" + }, + { + "name": "TYPE_DESC" + }, + { + "name": "ACTOR_ASC" + }, + { + "name": "ACTOR_DESC" + }, + { + "name": "METADATA_ASC" + }, + { + "name": "METADATA_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "SuggestionActivityLogsOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "suggestionId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "type", + "type": { + "kind": "ENUM", + "name": "SuggestionActivityType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "actor", + "type": { + "kind": "INPUT_OBJECT", + "name": "ActorInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "metadata", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "SuggestionActivityLogCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "type", + "type": { + "kind": "ENUM", + "name": "AccessTokenType", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ActorInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "suggestionId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "type", + "type": { + "kind": "INPUT_OBJECT", + "name": "SuggestionActivityTypeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "metadata", + "type": { + "kind": "INPUT_OBJECT", + "name": "JSONFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "actor", + "type": { + "kind": "INPUT_OBJECT", + "name": "ActorFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SuggestionActivityLogFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SuggestionActivityLogFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "SuggestionActivityLogFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "SuggestionActivityLogFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "isNull", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "equalTo", + "type": { + "kind": "ENUM", + "name": "SuggestionActivityType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notEqualTo", + "type": { + "kind": "ENUM", + "name": "SuggestionActivityType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "distinctFrom", + "type": { + "kind": "ENUM", + "name": "SuggestionActivityType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notDistinctFrom", + "type": { + "kind": "ENUM", + "name": "SuggestionActivityType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "in", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SuggestionActivityType", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "notIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SuggestionActivityType", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "lessThan", + "type": { + "kind": "ENUM", + "name": "SuggestionActivityType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "lessThanOrEqualTo", + "type": { + "kind": "ENUM", + "name": "SuggestionActivityType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThan", + "type": { + "kind": "ENUM", + "name": "SuggestionActivityType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThanOrEqualTo", + "type": { + "kind": "ENUM", + "name": "SuggestionActivityType", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "SuggestionActivityTypeFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "type", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccessTokenTypeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "displayName", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ActorFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ActorFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "ActorFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ActorFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "isNull", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "equalTo", + "type": { + "kind": "ENUM", + "name": "AccessTokenType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notEqualTo", + "type": { + "kind": "ENUM", + "name": "AccessTokenType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "distinctFrom", + "type": { + "kind": "ENUM", + "name": "AccessTokenType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notDistinctFrom", + "type": { + "kind": "ENUM", + "name": "AccessTokenType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "in", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AccessTokenType", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "notIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AccessTokenType", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "lessThan", + "type": { + "kind": "ENUM", + "name": "AccessTokenType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "lessThanOrEqualTo", + "type": { + "kind": "ENUM", + "name": "AccessTokenType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThan", + "type": { + "kind": "ENUM", + "name": "AccessTokenType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThanOrEqualTo", + "type": { + "kind": "ENUM", + "name": "AccessTokenType", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "AccessTokenTypeFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ControlEvent", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ControlEventsEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ControlEventsConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "startTime", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "endTime", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "componentId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "acknowledgedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "args": [], + "name": "remoteMetadata", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + }, + { + "args": [], + "name": "component", + "type": { + "kind": "OBJECT", + "name": "Component", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ControlEventLogsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ControlEventLogCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ControlEventLogFilter", + "ofType": null + } + } + ], + "name": "controlEventLogs", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ControlEventLogsConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ControlEventStatesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ControlEventStateCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ControlEventStateFilter", + "ofType": null + } + } + ], + "name": "controlEventStates", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ControlEventStatesConnection", + "ofType": null + } + } + }, + { + "args": [], + "name": "suggestionControlEvent", + "type": { + "kind": "OBJECT", + "name": "SuggestionControlEvent", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[NATURAL]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ControlEventActivityLogsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ControlEventActivityLogCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ControlEventActivityLogFilter", + "ofType": null + } + } + ], + "name": "controlEventActivityLogs", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ControlEventActivityLogsConnection", + "ofType": null + } + } + }, + { + "args": [], + "name": "componentConfiguration", + "type": { + "kind": "OBJECT", + "name": "ProjectComponent", + "ofType": null + } + }, + { + "args": [], + "name": "currentState", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "currentStateRef", + "type": { + "kind": "OBJECT", + "name": "ControlEventState", + "ofType": null + } + }, + { + "args": [], + "name": "isAcknowledged", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "args": [], + "name": "suggestion", + "type": { + "kind": "OBJECT", + "name": "Suggestion", + "ofType": null + } + }, + { + "args": [], + "name": "availableStates", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ControlEventStateType", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "permissions", + "type": { + "kind": "OBJECT", + "name": "ControlEventPermissions", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "ControlEvent", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ControlEventLog", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ControlEventLogsEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ControlEventLogsConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "controlEventId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "message", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "actor", + "type": { + "kind": "OBJECT", + "name": "Actor", + "ofType": null + } + }, + { + "args": [], + "name": "controlEvent", + "type": { + "kind": "OBJECT", + "name": "ControlEvent", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "ControlEventLog", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ControlEventLog", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ControlEventLogsEdge", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "ID_ASC" + }, + { + "name": "ID_DESC" + }, + { + "name": "CONTROL_EVENT_ID_ASC" + }, + { + "name": "CONTROL_EVENT_ID_DESC" + }, + { + "name": "MESSAGE_ASC" + }, + { + "name": "MESSAGE_DESC" + }, + { + "name": "CREATED_AT_ASC" + }, + { + "name": "CREATED_AT_DESC" + }, + { + "name": "ACTOR_ASC" + }, + { + "name": "ACTOR_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "ControlEventLogsOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "controlEventId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "message", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "actor", + "type": { + "kind": "INPUT_OBJECT", + "name": "ActorInput", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ControlEventLogCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "controlEventId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "message", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "actor", + "type": { + "kind": "INPUT_OBJECT", + "name": "ActorFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ControlEventLogFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ControlEventLogFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "ControlEventLogFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ControlEventLogFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ControlEventState", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ControlEventStatesEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ControlEventStatesConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "controlEventId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "state", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "actor", + "type": { + "kind": "OBJECT", + "name": "Actor", + "ofType": null + } + }, + { + "args": [], + "name": "controlEvent", + "type": { + "kind": "OBJECT", + "name": "ControlEvent", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "ControlEventState", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ControlEventState", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ControlEventStatesEdge", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "CONTROL_EVENT_ID_ASC" + }, + { + "name": "CONTROL_EVENT_ID_DESC" + }, + { + "name": "STATE_ASC" + }, + { + "name": "STATE_DESC" + }, + { + "name": "DESCRIPTION_ASC" + }, + { + "name": "DESCRIPTION_DESC" + }, + { + "name": "CREATED_AT_ASC" + }, + { + "name": "CREATED_AT_DESC" + }, + { + "name": "ACTOR_ASC" + }, + { + "name": "ACTOR_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "ControlEventStatesOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "controlEventId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "actor", + "type": { + "kind": "INPUT_OBJECT", + "name": "ActorInput", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ControlEventStateCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "controlEventId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "state", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "actor", + "type": { + "kind": "INPUT_OBJECT", + "name": "ActorFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ControlEventStateFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ControlEventStateFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "ControlEventStateFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ControlEventStateFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "suggestionId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "controlEventId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "suggestion", + "type": { + "kind": "OBJECT", + "name": "Suggestion", + "ofType": null + } + }, + { + "args": [], + "name": "controlEvent", + "type": { + "kind": "OBJECT", + "name": "ControlEvent", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "SuggestionControlEvent", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ControlEventActivityLog", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ControlEventActivityLogsEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ControlEventActivityLogsConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "controlEventId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "time", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "args": [], + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "actor", + "type": { + "kind": "OBJECT", + "name": "Actor", + "ofType": null + } + }, + { + "args": [], + "name": "metadata", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "args": [], + "name": "controlEvent", + "type": { + "kind": "OBJECT", + "name": "ControlEvent", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ControlEventActivityLog", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ControlEventActivityLog", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ControlEventActivityLogsEdge", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "CONTROL_EVENT_ID_ASC" + }, + { + "name": "CONTROL_EVENT_ID_DESC" + }, + { + "name": "TIME_ASC" + }, + { + "name": "TIME_DESC" + }, + { + "name": "TYPE_ASC" + }, + { + "name": "TYPE_DESC" + }, + { + "name": "ACTOR_ASC" + }, + { + "name": "ACTOR_DESC" + }, + { + "name": "METADATA_ASC" + }, + { + "name": "METADATA_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "ControlEventActivityLogsOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "controlEventId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "time", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "actor", + "type": { + "kind": "INPUT_OBJECT", + "name": "ActorInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "metadata", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ControlEventActivityLogCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "controlEventId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "time", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "type", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "actor", + "type": { + "kind": "INPUT_OBJECT", + "name": "ActorFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ControlEventActivityLogFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ControlEventActivityLogFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "ControlEventActivityLogFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ControlEventActivityLogFilter", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "SCHEDULED" + }, + { + "name": "STARTED" + }, + { + "name": "COMPLETED" + }, + { + "name": "CANCELLED" + }, + { + "name": "FAILED" + }, + { + "name": "CANCEL_REQUESTED" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "ControlEventStateType", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "canWrite", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ControlEventPermissions", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ControlEvent", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ControlEventsEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "canWrite", + "type": { + "kind": "INPUT_OBJECT", + "name": "PermissionBooleanFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startTime", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "endTime", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "componentId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "acknowledgedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "remoteMetadata", + "type": { + "kind": "INPUT_OBJECT", + "name": "JSONFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "currentState", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "isAcknowledged", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ControlEventFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ControlEventFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "ControlEventFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ControlEventFilter", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "UPCOMING" + }, + { + "name": "WITHDRAWN" + }, + { + "name": "ACTIVE" + }, + { + "name": "PAST" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "SuggestionState", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "canControl", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "SuggestionPermissions", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Suggestion", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "SuggestionsEdge", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "ID_ASC" + }, + { + "name": "ID_DESC" + }, + { + "name": "PROJECT_ID_ASC" + }, + { + "name": "PROJECT_ID_DESC" + }, + { + "name": "DESCRIPTION_ASC" + }, + { + "name": "DESCRIPTION_DESC" + }, + { + "name": "START_TIME_ASC" + }, + { + "name": "START_TIME_DESC" + }, + { + "name": "END_TIME_ASC" + }, + { + "name": "END_TIME_DESC" + }, + { + "name": "METADATA_ASC" + }, + { + "name": "METADATA_DESC" + }, + { + "name": "CREATED_AT_ASC" + }, + { + "name": "CREATED_AT_DESC" + }, + { + "name": "UPDATED_AT_ASC" + }, + { + "name": "UPDATED_AT_DESC" + }, + { + "name": "WITHDRAWN_AT_ASC" + }, + { + "name": "WITHDRAWN_AT_DESC" + }, + { + "name": "ACKNOWLEDGEMENT_STATUS_ASC" + }, + { + "name": "ACKNOWLEDGEMENT_STATUS_DESC" + }, + { + "name": "SAVINGS_EVENT_ID_ASC" + }, + { + "name": "SAVINGS_EVENT_ID_DESC" + }, + { + "name": "CONTROL_TYPE_ASC" + }, + { + "name": "CONTROL_TYPE_DESC" + }, + { + "name": "FACILITY_ID_ASC" + }, + { + "name": "FACILITY_ID_DESC" + }, + { + "name": "FACILITY_NAME_ASC" + }, + { + "name": "FACILITY_NAME_DESC" + }, + { + "name": "IS_WATCHING_ASC" + }, + { + "name": "IS_WATCHING_DESC" + }, + { + "name": "PROJECT_NAME_ASC" + }, + { + "name": "PROJECT_NAME_DESC" + }, + { + "name": "PROJECT_TYPE_ASC" + }, + { + "name": "PROJECT_TYPE_DESC" + }, + { + "name": "STATE_ASC" + }, + { + "name": "STATE_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + }, + { + "name": "RELEVANCY_ASC" + }, + { + "name": "RELEVANCY_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "SuggestionsOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "projectId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startTime", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "endTime", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "metadata", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "withdrawnAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "acknowledgementStatus", + "type": { + "kind": "ENUM", + "name": "Acknowledgement", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "savingsEventId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "SuggestionCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "canControl", + "type": { + "kind": "INPUT_OBJECT", + "name": "PermissionBooleanFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "projectId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startTime", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "endTime", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "metadata", + "type": { + "kind": "INPUT_OBJECT", + "name": "JSONFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "withdrawnAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "acknowledgementStatus", + "type": { + "kind": "INPUT_OBJECT", + "name": "AcknowledgementFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "savingsEventId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "acknowledgementCutoff", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "controlType", + "type": { + "kind": "INPUT_OBJECT", + "name": "ControlTypeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "facilityName", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "isAcknowledged", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "isRejected", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "isWatching", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "isWithdrawn", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "projectName", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "projectType", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "state", + "type": { + "kind": "INPUT_OBJECT", + "name": "SuggestionStateFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SuggestionFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SuggestionFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "SuggestionFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "SuggestionFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "isNull", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "equalTo", + "type": { + "kind": "ENUM", + "name": "Acknowledgement", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notEqualTo", + "type": { + "kind": "ENUM", + "name": "Acknowledgement", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "distinctFrom", + "type": { + "kind": "ENUM", + "name": "Acknowledgement", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notDistinctFrom", + "type": { + "kind": "ENUM", + "name": "Acknowledgement", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "in", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "Acknowledgement", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "notIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "Acknowledgement", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "lessThan", + "type": { + "kind": "ENUM", + "name": "Acknowledgement", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "lessThanOrEqualTo", + "type": { + "kind": "ENUM", + "name": "Acknowledgement", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThan", + "type": { + "kind": "ENUM", + "name": "Acknowledgement", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThanOrEqualTo", + "type": { + "kind": "ENUM", + "name": "Acknowledgement", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "AcknowledgementFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "isNull", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "equalTo", + "type": { + "kind": "ENUM", + "name": "SuggestionState", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notEqualTo", + "type": { + "kind": "ENUM", + "name": "SuggestionState", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "distinctFrom", + "type": { + "kind": "ENUM", + "name": "SuggestionState", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notDistinctFrom", + "type": { + "kind": "ENUM", + "name": "SuggestionState", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "in", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SuggestionState", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "notIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SuggestionState", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "lessThan", + "type": { + "kind": "ENUM", + "name": "SuggestionState", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "lessThanOrEqualTo", + "type": { + "kind": "ENUM", + "name": "SuggestionState", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThan", + "type": { + "kind": "ENUM", + "name": "SuggestionState", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThanOrEqualTo", + "type": { + "kind": "ENUM", + "name": "SuggestionState", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "SuggestionStateFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SavingsEventProjectsBySuggestionSavingsEventIdAndProjectIdManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "from", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "to", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "SUM", + "name": "aggregation", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataAggregationMethod", + "ofType": null + } + } + }, + { + "defaultValue": "\"1 day\"", + "name": "window", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "samplingWindow", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "TIME_ASC", + "name": "orderBy", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataOrderBy", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "unit", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "unitGroup", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "name": "savingsEventData", + "type": { + "kind": "OBJECT", + "name": "MetricDataConnection", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "SavingsEventProjectsBySuggestionSavingsEventIdAndProjectIdManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SuggestionsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "SuggestionCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "SuggestionFilter", + "ofType": null + } + } + ], + "name": "suggestions", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SuggestionsConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "SavingsEventProjectsBySuggestionSavingsEventIdAndProjectIdManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SavingsEvent", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "SavingsEventsEdge", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "ID_ASC" + }, + { + "name": "ID_DESC" + }, + { + "name": "PROJECT_ID_ASC" + }, + { + "name": "PROJECT_ID_DESC" + }, + { + "name": "START_TIME_ASC" + }, + { + "name": "START_TIME_DESC" + }, + { + "name": "END_TIME_ASC" + }, + { + "name": "END_TIME_DESC" + }, + { + "name": "METADATA_ASC" + }, + { + "name": "METADATA_DESC" + }, + { + "name": "CREATED_AT_ASC" + }, + { + "name": "CREATED_AT_DESC" + }, + { + "name": "UPDATED_AT_ASC" + }, + { + "name": "UPDATED_AT_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "SavingsEventsOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "projectId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startTime", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "endTime", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "metadata", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "SavingsEventCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "projectId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startTime", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "endTime", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "metadata", + "type": { + "kind": "INPUT_OBJECT", + "name": "JSONFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SavingsEventFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SavingsEventFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "SavingsEventFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "SavingsEventFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UserSubscription", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UserSubscriptionsEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UserSubscriptionsConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + { + "args": [], + "name": "type", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "action", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "scope", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + }, + { + "args": [], + "name": "channels", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + }, + { + "args": [], + "name": "userId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "eventTypeByType", + "type": { + "kind": "OBJECT", + "name": "EventType", + "ofType": null + } + }, + { + "args": [], + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "UserSubscription", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "EventHandlersOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "EventHandlerCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "EventHandlerFilter", + "ofType": null + } + } + ], + "name": "eventHandlersByEventHandlerMetadatumTypeAndHandler", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EventTypeEventHandlersByEventHandlerMetadatumTypeAndHandlerManyToManyConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilitiesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityFilter", + "ofType": null + } + } + ], + "name": "facilitiesByEventTypeAndFacilityId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EventTypeFacilitiesByEventTypeAndFacilityIdManyToManyConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "EventType", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EventHandler", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EventTypeEventHandlersByEventHandlerMetadatumTypeAndHandlerManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "EventTypeEventHandlersByEventHandlerMetadatumTypeAndHandlerManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "handler", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "EventTypesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "EventTypeCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "EventTypeFilter", + "ofType": null + } + } + ], + "name": "eventTypesByEventHandlerMetadatumHandlerAndType", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EventHandlerEventTypesByEventHandlerMetadatumHandlerAndTypeManyToManyConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "EventHandler", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EventType", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EventHandlerEventTypesByEventHandlerMetadatumHandlerAndTypeManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "EventHandlerEventTypesByEventHandlerMetadatumHandlerAndTypeManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EventType", + "ofType": null + } + } + }, + { + "args": [], + "name": "event", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "EventHandlerEventTypesByEventHandlerMetadatumHandlerAndTypeManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "NAME_ASC" + }, + { + "name": "NAME_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "EventTypesOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "EventTypeCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EventTypeFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EventTypeFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "EventTypeFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "EventTypeFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EventHandler", + "ofType": null + } + } + }, + { + "args": [], + "name": "event", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "EventTypeEventHandlersByEventHandlerMetadatumTypeAndHandlerManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "HANDLER_ASC" + }, + { + "name": "HANDLER_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "EventHandlersOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "handler", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "EventHandlerCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "handler", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EventHandlerFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EventHandlerFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "EventHandlerFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "EventHandlerFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EventTypeFacilitiesByEventTypeAndFacilityIdManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "aggregates", + "type": { + "kind": "OBJECT", + "name": "FacilityAggregates", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "groupBy", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilitiesGroupBy", + "ofType": null + } + } + } + } + }, + { + "defaultValue": null, + "name": "having", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilitiesHavingInput", + "ofType": null + } + } + ], + "name": "groupedAggregates", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityAggregates", + "ofType": null + } + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "from", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "to", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "SUM", + "name": "aggregation", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataAggregationMethod", + "ofType": null + } + } + }, + { + "defaultValue": "\"1 day\"", + "name": "window", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "samplingWindow", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "TIME_ASC", + "name": "orderBy", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataOrderBy", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "unit", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "unitGroup", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "name": "metricData", + "type": { + "kind": "OBJECT", + "name": "MetricDataConnection", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "EventTypeFacilitiesByEventTypeAndFacilityIdManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "EventsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "EventCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "EventFilter", + "ofType": null + } + } + ], + "name": "events", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EventsConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "EventTypeFacilitiesByEventTypeAndFacilityIdManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Event", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EventsEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "EventsConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + { + "args": [], + "name": "type", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "action", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "facilityId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "event", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + }, + { + "args": [], + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "actor", + "type": { + "kind": "OBJECT", + "name": "Actor", + "ofType": null + } + }, + { + "args": [], + "name": "eventTypeByType", + "type": { + "kind": "OBJECT", + "name": "EventType", + "ofType": null + } + }, + { + "args": [], + "name": "facility", + "type": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "Event", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Event", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "EventsEdge", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "ID_ASC" + }, + { + "name": "ID_DESC" + }, + { + "name": "TYPE_ASC" + }, + { + "name": "TYPE_DESC" + }, + { + "name": "ACTION_ASC" + }, + { + "name": "ACTION_DESC" + }, + { + "name": "FACILITY_ID_ASC" + }, + { + "name": "FACILITY_ID_DESC" + }, + { + "name": "EVENT_ASC" + }, + { + "name": "EVENT_DESC" + }, + { + "name": "CREATED_AT_ASC" + }, + { + "name": "CREATED_AT_DESC" + }, + { + "name": "ACTOR_ASC" + }, + { + "name": "ACTOR_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "EventsOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "action", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "event", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "actor", + "type": { + "kind": "INPUT_OBJECT", + "name": "ActorInput", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "EventCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "BigIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "type", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "action", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "event", + "type": { + "kind": "INPUT_OBJECT", + "name": "JSONFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "actor", + "type": { + "kind": "INPUT_OBJECT", + "name": "ActorFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EventFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EventFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "EventFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "EventFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UserSubscription", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UserSubscriptionsEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "BigIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "type", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "action", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "scope", + "type": { + "kind": "INPUT_OBJECT", + "name": "JSONFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "channels", + "type": { + "kind": "INPUT_OBJECT", + "name": "JSONFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "userId", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserSubscriptionFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserSubscriptionFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "UserSubscriptionFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UserSubscriptionFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UsersEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UsersConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UsersEdge", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "ID_ASC" + }, + { + "name": "ID_DESC" + }, + { + "name": "FIRST_NAME_ASC" + }, + { + "name": "FIRST_NAME_DESC" + }, + { + "name": "LAST_NAME_ASC" + }, + { + "name": "LAST_NAME_DESC" + }, + { + "name": "EMAIL_ASC" + }, + { + "name": "EMAIL_DESC" + }, + { + "name": "PHONE_NUMBER_ASC" + }, + { + "name": "PHONE_NUMBER_DESC" + }, + { + "name": "CREATED_AT_ASC" + }, + { + "name": "CREATED_AT_DESC" + }, + { + "name": "UPDATED_AT_ASC" + }, + { + "name": "UPDATED_AT_DESC" + }, + { + "name": "PHONE_NUMBER_VALIDATED_ASC" + }, + { + "name": "PHONE_NUMBER_VALIDATED_DESC" + }, + { + "name": "PREFERRED_LOCALE_ASC" + }, + { + "name": "PREFERRED_LOCALE_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "UsersOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "firstName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "lastName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "email", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "phoneNumber", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "phoneNumberValidated", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "preferredLocale", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UserCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "canEdit", + "type": { + "kind": "INPUT_OBJECT", + "name": "PermissionBooleanFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "firstName", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "lastName", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "email", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "phoneNumber", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "phoneNumberValidated", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "preferredLocale", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "UserFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UserFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "canControl", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ProjectPermissions", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Component", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectComponentsManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ProjectComponentsManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Component", + "ofType": null + } + } + }, + { + "args": [], + "name": "startupOffset", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ProjectComponentsManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FieldGroup", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectFieldGroupsByProjectFieldProjectIdAndGroupIdManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ProjectFieldGroupsByProjectFieldProjectIdAndGroupIdManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FieldGroup", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectFieldsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFieldCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFieldFilter", + "ofType": null + } + } + ], + "name": "projectFieldsByGroupId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectFieldsConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ProjectFieldGroupsByProjectFieldProjectIdAndGroupIdManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DataPoint", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectDataPointsByProjectFieldProjectIdAndDataPointIdManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ProjectDataPointsByProjectFieldProjectIdAndDataPointIdManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DataPoint", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectFieldsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFieldCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFieldFilter", + "ofType": null + } + } + ], + "name": "projectFields", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectFieldsConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ProjectDataPointsByProjectFieldProjectIdAndDataPointIdManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectWatchersManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ProjectWatchersManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ProjectWatchersManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SavingsEvent", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectSavingsEventsBySuggestionProjectIdAndSavingsEventIdManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "from", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "to", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "SUM", + "name": "aggregation", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataAggregationMethod", + "ofType": null + } + } + }, + { + "defaultValue": "\"1 day\"", + "name": "window", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "samplingWindow", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "TIME_ASC", + "name": "orderBy", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataOrderBy", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "unit", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "unitGroup", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "name": "savingsEventData", + "type": { + "kind": "OBJECT", + "name": "MetricDataConnection", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ProjectSavingsEventsBySuggestionProjectIdAndSavingsEventIdManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SavingsEvent", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SuggestionsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "SuggestionCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "SuggestionFilter", + "ofType": null + } + } + ], + "name": "suggestions", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SuggestionsConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ProjectSavingsEventsBySuggestionProjectIdAndSavingsEventIdManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectWatcher", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ProjectWatchersEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "BigIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "type", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccessTokenTypeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "ownerId", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "expiresAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PlatformAccessTokenFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PlatformAccessTokenFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "PlatformAccessTokenFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "PlatformAccessTokenFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "canEdit", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UserPermissions", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UserProjectsManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "from", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "to", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "SUM", + "name": "aggregation", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataAggregationMethod", + "ofType": null + } + } + }, + { + "defaultValue": "\"1 day\"", + "name": "window", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "samplingWindow", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "TIME_ASC", + "name": "orderBy", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataOrderBy", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "unit", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "unitGroup", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "name": "savingsEventData", + "type": { + "kind": "OBJECT", + "name": "MetricDataConnection", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UserProjectsManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UserProjectsManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PlatformAccessToken", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "PlatformAccessTokensEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "email", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "firstName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "lastName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "company", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "MachineUserFilter", + "ofType": null + } + } + ], + "name": "machineUsers", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MachineUsersConnection", + "ofType": null + } + } + }, + { + "args": [], + "name": "permissions", + "type": { + "kind": "OBJECT", + "name": "VendorUserPermissions", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "VendorUser", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MachineUser", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MachineUsersEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "MachineUsersConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MachineUser", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "MachineUsersEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "canWrite", + "type": { + "kind": "INPUT_OBJECT", + "name": "PermissionBooleanFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "BigIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdBy", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MachineUserFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MachineUserFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "MachineUserFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "MachineUserFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "canWrite", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "VendorUserPermissions", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "capability", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "PlatformCapability", + "ofType": null + } + } + }, + { + "args": [], + "name": "canWrite", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "args": [], + "name": "canRead", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "PlatformCapabilityAccess", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "BASE" + }, + { + "name": "IOT" + }, + { + "name": "SUGGESTION" + }, + { + "name": "UTILITY" + }, + { + "name": "METRIC" + }, + { + "name": "WMS" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "PlatformCapability", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "canWrite", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "MachineUserPermissions", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MachineUserFacilitiesByComponentMachineUserIdAndFacilityIdManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "aggregates", + "type": { + "kind": "OBJECT", + "name": "FacilityAggregates", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "groupBy", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilitiesGroupBy", + "ofType": null + } + } + } + } + }, + { + "defaultValue": null, + "name": "having", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilitiesHavingInput", + "ofType": null + } + } + ], + "name": "groupedAggregates", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityAggregates", + "ofType": null + } + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "from", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "to", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "SUM", + "name": "aggregation", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataAggregationMethod", + "ofType": null + } + } + }, + { + "defaultValue": "\"1 day\"", + "name": "window", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "samplingWindow", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "TIME_ASC", + "name": "orderBy", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataOrderBy", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "unit", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "unitGroup", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "name": "metricData", + "type": { + "kind": "OBJECT", + "name": "MetricDataConnection", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "MachineUserFacilitiesByComponentMachineUserIdAndFacilityIdManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ComponentsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ComponentCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ComponentFilter", + "ofType": null + } + } + ], + "name": "components", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ComponentsConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "MachineUserFacilitiesByComponentMachineUserIdAndFacilityIdManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "ID_ASC" + }, + { + "name": "ID_DESC" + }, + { + "name": "NAME_ASC" + }, + { + "name": "NAME_DESC" + }, + { + "name": "START_TIME_ASC" + }, + { + "name": "START_TIME_DESC" + }, + { + "name": "END_TIME_ASC" + }, + { + "name": "END_TIME_DESC" + }, + { + "name": "COMPONENT_ID_ASC" + }, + { + "name": "COMPONENT_ID_DESC" + }, + { + "name": "CREATED_AT_ASC" + }, + { + "name": "CREATED_AT_DESC" + }, + { + "name": "UPDATED_AT_ASC" + }, + { + "name": "UPDATED_AT_DESC" + }, + { + "name": "ACKNOWLEDGED_AT_ASC" + }, + { + "name": "ACKNOWLEDGED_AT_DESC" + }, + { + "name": "REMOTE_METADATA_ASC" + }, + { + "name": "REMOTE_METADATA_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "ControlEventsOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startTime", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "endTime", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "componentId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "acknowledgedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "remoteMetadata", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ControlEventCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "canWrite", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ComponentPermissions", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ComponentProjectsManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "from", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "to", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "SUM", + "name": "aggregation", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataAggregationMethod", + "ofType": null + } + } + }, + { + "defaultValue": "\"1 day\"", + "name": "window", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "samplingWindow", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "TIME_ASC", + "name": "orderBy", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataOrderBy", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "unit", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "unitGroup", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "name": "savingsEventData", + "type": { + "kind": "OBJECT", + "name": "MetricDataConnection", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ComponentProjectsManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + } + }, + { + "args": [], + "name": "startupOffset", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ComponentProjectsManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Component", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ComponentsEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityCommunication", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityCommunicationsEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilityCommunicationsConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "facilityId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "message", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "clearedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "args": [], + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "facility", + "type": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + }, + { + "args": [], + "name": "isCleared", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "FacilityCommunication", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityCommunication", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilityCommunicationsEdge", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "ID_ASC" + }, + { + "name": "ID_DESC" + }, + { + "name": "FACILITY_ID_ASC" + }, + { + "name": "FACILITY_ID_DESC" + }, + { + "name": "MESSAGE_ASC" + }, + { + "name": "MESSAGE_DESC" + }, + { + "name": "CLEARED_AT_ASC" + }, + { + "name": "CLEARED_AT_DESC" + }, + { + "name": "CREATED_AT_ASC" + }, + { + "name": "CREATED_AT_DESC" + }, + { + "name": "UPDATED_AT_ASC" + }, + { + "name": "UPDATED_AT_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "FacilityCommunicationsOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "message", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "clearedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "FacilityCommunicationCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "message", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "clearedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "isCleared", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FacilityCommunicationFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FacilityCommunicationFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityCommunicationFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "FacilityCommunicationFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityGroupsLinker", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityGroupsLinkersEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilityGroupsLinkersConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "facilityId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "facilityGroupingId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + { + "args": [], + "name": "facility", + "type": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + }, + { + "args": [], + "name": "facilityGrouping", + "type": { + "kind": "OBJECT", + "name": "FacilityGroup", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "FacilityGroupsLinker", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + { + "args": [], + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "parentId", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "parent", + "type": { + "kind": "OBJECT", + "name": "FacilityGroup", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilityGroupsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityGroupCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityGroupFilter", + "ofType": null + } + } + ], + "name": "childFacilityGroups", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityGroupsConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilityGroupsLinkersOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityGroupsLinkerCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityGroupsLinkerFilter", + "ofType": null + } + } + ], + "name": "facilityGroupsLinkersByFacilityGroupingId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityGroupsLinkersConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityFilter", + "ofType": null + } + } + ], + "name": "allFacilities", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilitiesConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilitiesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityFilter", + "ofType": null + } + } + ], + "name": "facilities", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityGroupFacilitiesManyToManyConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "FacilityGroup", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityGroup", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityGroupsEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilityGroupsConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityGroup", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilityGroupsEdge", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "ID_ASC" + }, + { + "name": "ID_DESC" + }, + { + "name": "NAME_ASC" + }, + { + "name": "NAME_DESC" + }, + { + "name": "PARENT_ID_ASC" + }, + { + "name": "PARENT_ID_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "FacilityGroupsOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "parentId", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "FacilityGroupCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "BigIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "parentId", + "type": { + "kind": "INPUT_OBJECT", + "name": "BigIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FacilityGroupFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FacilityGroupFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityGroupFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "FacilityGroupFilter", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "FACILITY_ID_ASC" + }, + { + "name": "FACILITY_ID_DESC" + }, + { + "name": "FACILITY_GROUPING_ID_ASC" + }, + { + "name": "FACILITY_GROUPING_ID_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "FacilityGroupsLinkersOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "facilityGroupingId", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "FacilityGroupsLinkerCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "facilityGroupingId", + "type": { + "kind": "INPUT_OBJECT", + "name": "BigIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FacilityGroupsLinkerFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FacilityGroupsLinkerFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityGroupsLinkerFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "FacilityGroupsLinkerFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityGroupFacilitiesManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "aggregates", + "type": { + "kind": "OBJECT", + "name": "FacilityAggregates", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "groupBy", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilitiesGroupBy", + "ofType": null + } + } + } + } + }, + { + "defaultValue": null, + "name": "having", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilitiesHavingInput", + "ofType": null + } + } + ], + "name": "groupedAggregates", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityAggregates", + "ofType": null + } + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "from", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "to", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "SUM", + "name": "aggregation", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataAggregationMethod", + "ofType": null + } + } + }, + { + "defaultValue": "\"1 day\"", + "name": "window", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "samplingWindow", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "TIME_ASC", + "name": "orderBy", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataOrderBy", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "unit", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "unitGroup", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "name": "metricData", + "type": { + "kind": "OBJECT", + "name": "MetricDataConnection", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilityGroupFacilitiesManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilityGroupFacilitiesManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityGroupsLinker", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilityGroupsLinkersEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MainService", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MainServicesEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "MainServicesConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "type", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "EnumMainServicesType", + "ofType": null + } + } + }, + { + "args": [], + "name": "facilityId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "usage", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "demand", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "originalId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "facility", + "type": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + }, + { + "args": [], + "name": "dataPointByUsage", + "type": { + "kind": "OBJECT", + "name": "DataPoint", + "ofType": null + } + }, + { + "args": [], + "name": "dataPointByDemand", + "type": { + "kind": "OBJECT", + "name": "DataPoint", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "MainService", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "ELECTRIC" + }, + { + "name": "WATER" + }, + { + "name": "GAS" + }, + { + "name": "AIRFLOW_HIGH" + }, + { + "name": "AIRFLOW_LOW" + }, + { + "name": "AIRFLOW_ELECTRIC_HIGH" + }, + { + "name": "AIRFLOW_ELECTRIC_LOW" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "EnumMainServicesType", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MainService", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "MainServicesEdge", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "ID_ASC" + }, + { + "name": "ID_DESC" + }, + { + "name": "TYPE_ASC" + }, + { + "name": "TYPE_DESC" + }, + { + "name": "FACILITY_ID_ASC" + }, + { + "name": "FACILITY_ID_DESC" + }, + { + "name": "NAME_ASC" + }, + { + "name": "NAME_DESC" + }, + { + "name": "USAGE_ASC" + }, + { + "name": "USAGE_DESC" + }, + { + "name": "DEMAND_ASC" + }, + { + "name": "DEMAND_DESC" + }, + { + "name": "CREATED_AT_ASC" + }, + { + "name": "CREATED_AT_DESC" + }, + { + "name": "UPDATED_AT_ASC" + }, + { + "name": "UPDATED_AT_DESC" + }, + { + "name": "ORIGINAL_ID_ASC" + }, + { + "name": "ORIGINAL_ID_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "MainServicesOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "type", + "type": { + "kind": "ENUM", + "name": "EnumMainServicesType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "usage", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "demand", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "originalId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "MainServiceCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "type", + "type": { + "kind": "INPUT_OBJECT", + "name": "EnumMainServicesTypeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "usage", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "demand", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "originalId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MainServiceFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MainServiceFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "MainServiceFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "MainServiceFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "isNull", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "equalTo", + "type": { + "kind": "ENUM", + "name": "EnumMainServicesType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notEqualTo", + "type": { + "kind": "ENUM", + "name": "EnumMainServicesType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "distinctFrom", + "type": { + "kind": "ENUM", + "name": "EnumMainServicesType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notDistinctFrom", + "type": { + "kind": "ENUM", + "name": "EnumMainServicesType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "in", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "EnumMainServicesType", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "notIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "EnumMainServicesType", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "lessThan", + "type": { + "kind": "ENUM", + "name": "EnumMainServicesType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "lessThanOrEqualTo", + "type": { + "kind": "ENUM", + "name": "EnumMainServicesType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThan", + "type": { + "kind": "ENUM", + "name": "EnumMainServicesType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThanOrEqualTo", + "type": { + "kind": "ENUM", + "name": "EnumMainServicesType", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "EnumMainServicesTypeFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeterStatementRollup", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeterStatementRollupsEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "aggregates", + "type": { + "kind": "OBJECT", + "name": "UtilityMeterStatementRollupAggregates", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "groupBy", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterStatementRollupsGroupBy", + "ofType": null + } + } + } + } + }, + { + "defaultValue": null, + "name": "having", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupsHavingInput", + "ofType": null + } + } + ], + "name": "groupedAggregates", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeterStatementRollupAggregates", + "ofType": null + } + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityMeterStatementRollupsConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "facilityId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "utilityAccountId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "utilityMeterId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "meterEndDateSet", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "args": [], + "name": "meterStatementId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "isValidated", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "args": [], + "name": "serviceType", + "type": { + "kind": "ENUM", + "name": "UtilityMeterServiceType", + "ofType": null + } + }, + { + "args": [], + "name": "meterLabel", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "provider", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "billArrivalDate", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "args": [], + "name": "startDate", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "args": [], + "name": "endDate", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "args": [], + "name": "accountLabel", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "statementYear", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "statementMonth", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "daysInBill", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "billCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "usageUnits", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "billUsage", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "netBillUsage", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billUsageCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "demandUnits", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "billDemand", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billDemandCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "fees", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "taxes", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "credits", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "blendedRate", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "loadFactor", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "percentChange", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "currencyCode", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "accountStatementId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "facility", + "type": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + }, + { + "args": [], + "name": "utilityAccount", + "type": { + "kind": "OBJECT", + "name": "UtilityAccount", + "ofType": null + } + }, + { + "args": [], + "name": "utilityMeter", + "type": { + "kind": "OBJECT", + "name": "UtilityMeter", + "ofType": null + } + }, + { + "args": [], + "name": "meterStatement", + "type": { + "kind": "OBJECT", + "name": "MeterStatement", + "ofType": null + } + }, + { + "args": [], + "name": "facilityName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "nSight2Active", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "args": [], + "name": "statementDate", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "UtilityMeterStatementRollup", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "utilityMeterId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "accountStatementId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "intervalStart", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + } + }, + { + "args": [], + "name": "intervalEnd", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + } + }, + { + "args": [], + "name": "statementDate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + } + }, + { + "args": [], + "name": "integrationKey", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "pdfLink", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "isValidated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "args": [], + "name": "currencyCode", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "primaryUsageUnits", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "primaryDemandUnits", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "overrideAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "args": [], + "name": "metadata", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + }, + { + "args": [], + "name": "manualUpload", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "args": [], + "name": "isAdjustment", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "args": [], + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "overrideStatementYear", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "overrideStatementMonth", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "utilityMeter", + "type": { + "kind": "OBJECT", + "name": "UtilityMeter", + "ofType": null + } + }, + { + "args": [], + "name": "accountStatement", + "type": { + "kind": "OBJECT", + "name": "AccountStatement", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MeterChargesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "MeterChargeCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "MeterChargeFilter", + "ofType": null + } + } + ], + "name": "meterCharges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MeterChargesConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MeterUsagesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "MeterUsageCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "MeterUsageFilter", + "ofType": null + } + } + ], + "name": "meterUsages", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MeterUsagesConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[NATURAL]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MeterStatementHistoriesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "MeterStatementHistoryCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "MeterStatementHistoryFilter", + "ofType": null + } + } + ], + "name": "meterStatementHistories", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MeterStatementHistoriesConnection", + "ofType": null + } + } + }, + { + "args": [], + "name": "utilityMeterStatementRollup", + "type": { + "kind": "OBJECT", + "name": "UtilityMeterStatementRollup", + "ofType": null + } + }, + { + "args": [], + "name": "utilityMeterStatement", + "type": { + "kind": "OBJECT", + "name": "UtilityMeterStatement", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "MeterStatementsChargesRecordFilter", + "ofType": null + } + } + ], + "name": "charges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MeterStatementsChargesConnection", + "ofType": null + } + } + }, + { + "args": [], + "name": "deletedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "args": [], + "name": "maxDemand", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "MeterStatementsNormalizedChargesRecordFilter", + "ofType": null + } + } + ], + "name": "normalizedCharges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MeterStatementsNormalizedChargesConnection", + "ofType": null + } + } + }, + { + "args": [], + "name": "normalizedTotalCharges", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "statementMonth", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "statementYear", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "totalCharges", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "totalUsage", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "pdfUri", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "MeterStatement", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MeterCharge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MeterChargesEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "MeterChargesConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "meterStatementId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "category", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterChargeCategory", + "ofType": null + } + } + }, + { + "args": [], + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "overrideAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "args": [], + "name": "value", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "lineNumber", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "deletedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "args": [], + "name": "meterStatement", + "type": { + "kind": "OBJECT", + "name": "MeterStatement", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "MeterCharge", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "USAGE" + }, + { + "name": "DEMAND" + }, + { + "name": "FEES" + }, + { + "name": "TAXES" + }, + { + "name": "CREDITS" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "UtilityMeterChargeCategory", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MeterCharge", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "MeterChargesEdge", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "ID_ASC" + }, + { + "name": "ID_DESC" + }, + { + "name": "METER_STATEMENT_ID_ASC" + }, + { + "name": "METER_STATEMENT_ID_DESC" + }, + { + "name": "CATEGORY_ASC" + }, + { + "name": "CATEGORY_DESC" + }, + { + "name": "LABEL_ASC" + }, + { + "name": "LABEL_DESC" + }, + { + "name": "NORMALIZED_VALUE_ASC" + }, + { + "name": "NORMALIZED_VALUE_DESC" + }, + { + "name": "OVERRIDE_LABEL_ASC" + }, + { + "name": "OVERRIDE_LABEL_DESC" + }, + { + "name": "OVERRIDE_VALUE_ASC" + }, + { + "name": "OVERRIDE_VALUE_DESC" + }, + { + "name": "OVERRIDE_AT_ASC" + }, + { + "name": "OVERRIDE_AT_DESC" + }, + { + "name": "VALUE_ASC" + }, + { + "name": "VALUE_DESC" + }, + { + "name": "LINE_NUMBER_ASC" + }, + { + "name": "LINE_NUMBER_DESC" + }, + { + "name": "CREATED_AT_ASC" + }, + { + "name": "CREATED_AT_DESC" + }, + { + "name": "UPDATED_AT_ASC" + }, + { + "name": "UPDATED_AT_DESC" + }, + { + "name": "DELETED_AT_ASC" + }, + { + "name": "DELETED_AT_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "MeterChargesOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterStatementId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "category", + "type": { + "kind": "ENUM", + "name": "UtilityMeterChargeCategory", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "normalizedValue", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "overrideAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "lineNumber", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "deletedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "MeterChargeCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "value", + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "category", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterChargeCategoryFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "normalizedValue", + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "overrideAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "lineNumber", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "deletedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MeterChargeFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MeterChargeFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "MeterChargeFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "MeterChargeFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "isNull", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "equalTo", + "type": { + "kind": "ENUM", + "name": "UtilityMeterChargeCategory", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notEqualTo", + "type": { + "kind": "ENUM", + "name": "UtilityMeterChargeCategory", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "distinctFrom", + "type": { + "kind": "ENUM", + "name": "UtilityMeterChargeCategory", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notDistinctFrom", + "type": { + "kind": "ENUM", + "name": "UtilityMeterChargeCategory", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "in", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterChargeCategory", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "notIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterChargeCategory", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "lessThan", + "type": { + "kind": "ENUM", + "name": "UtilityMeterChargeCategory", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "lessThanOrEqualTo", + "type": { + "kind": "ENUM", + "name": "UtilityMeterChargeCategory", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThan", + "type": { + "kind": "ENUM", + "name": "UtilityMeterChargeCategory", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThanOrEqualTo", + "type": { + "kind": "ENUM", + "name": "UtilityMeterChargeCategory", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterChargeCategoryFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MeterUsage", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MeterUsagesEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "MeterUsagesConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "meterStatementId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "category", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterUsageCategory", + "ofType": null + } + } + }, + { + "args": [], + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "value", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "units", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "overrideAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "args": [], + "name": "lineNumber", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "deletedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "args": [], + "name": "meterStatement", + "type": { + "kind": "OBJECT", + "name": "MeterStatement", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "MeterUsage", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "USAGE" + }, + { + "name": "DEMAND" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "UtilityMeterUsageCategory", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MeterUsage", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "MeterUsagesEdge", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "ID_ASC" + }, + { + "name": "ID_DESC" + }, + { + "name": "METER_STATEMENT_ID_ASC" + }, + { + "name": "METER_STATEMENT_ID_DESC" + }, + { + "name": "CATEGORY_ASC" + }, + { + "name": "CATEGORY_DESC" + }, + { + "name": "LABEL_ASC" + }, + { + "name": "LABEL_DESC" + }, + { + "name": "VALUE_ASC" + }, + { + "name": "VALUE_DESC" + }, + { + "name": "UNITS_ASC" + }, + { + "name": "UNITS_DESC" + }, + { + "name": "OVERRIDE_LABEL_ASC" + }, + { + "name": "OVERRIDE_LABEL_DESC" + }, + { + "name": "OVERRIDE_VALUE_ASC" + }, + { + "name": "OVERRIDE_VALUE_DESC" + }, + { + "name": "OVERRIDE_UNITS_ASC" + }, + { + "name": "OVERRIDE_UNITS_DESC" + }, + { + "name": "OVERRIDE_AT_ASC" + }, + { + "name": "OVERRIDE_AT_DESC" + }, + { + "name": "LINE_NUMBER_ASC" + }, + { + "name": "LINE_NUMBER_DESC" + }, + { + "name": "CREATED_AT_ASC" + }, + { + "name": "CREATED_AT_DESC" + }, + { + "name": "UPDATED_AT_ASC" + }, + { + "name": "UPDATED_AT_DESC" + }, + { + "name": "DELETED_AT_ASC" + }, + { + "name": "DELETED_AT_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "MeterUsagesOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterStatementId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "category", + "type": { + "kind": "ENUM", + "name": "UtilityMeterUsageCategory", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "overrideAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "lineNumber", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "deletedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "MeterUsageCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "value", + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "units", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "category", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterUsageCategoryFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "overrideAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "lineNumber", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "deletedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MeterUsageFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MeterUsageFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "MeterUsageFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "MeterUsageFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "isNull", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "equalTo", + "type": { + "kind": "ENUM", + "name": "UtilityMeterUsageCategory", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notEqualTo", + "type": { + "kind": "ENUM", + "name": "UtilityMeterUsageCategory", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "distinctFrom", + "type": { + "kind": "ENUM", + "name": "UtilityMeterUsageCategory", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notDistinctFrom", + "type": { + "kind": "ENUM", + "name": "UtilityMeterUsageCategory", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "in", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterUsageCategory", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "notIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterUsageCategory", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "lessThan", + "type": { + "kind": "ENUM", + "name": "UtilityMeterUsageCategory", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "lessThanOrEqualTo", + "type": { + "kind": "ENUM", + "name": "UtilityMeterUsageCategory", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThan", + "type": { + "kind": "ENUM", + "name": "UtilityMeterUsageCategory", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThanOrEqualTo", + "type": { + "kind": "ENUM", + "name": "UtilityMeterUsageCategory", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterUsageCategoryFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MeterStatementHistory", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MeterStatementHistoriesEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "MeterStatementHistoriesConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "meterStatementId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "description", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "meterStatement", + "type": { + "kind": "OBJECT", + "name": "MeterStatement", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "MeterStatementHistory", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MeterStatementHistory", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "MeterStatementHistoriesEdge", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "METER_STATEMENT_ID_ASC" + }, + { + "name": "METER_STATEMENT_ID_DESC" + }, + { + "name": "DESCRIPTION_ASC" + }, + { + "name": "DESCRIPTION_DESC" + }, + { + "name": "CREATED_AT_ASC" + }, + { + "name": "CREATED_AT_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "MeterStatementHistoriesOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "meterStatementId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "MeterStatementHistoryCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "meterStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MeterStatementHistoryFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MeterStatementHistoryFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "MeterStatementHistoryFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "MeterStatementHistoryFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "facilityId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "utilityAccountId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "utilityMeterId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "meterEndDateSet", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "args": [], + "name": "serviceType", + "type": { + "kind": "ENUM", + "name": "UtilityMeterServiceType", + "ofType": null + } + }, + { + "args": [], + "name": "excludeUsage", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "args": [], + "name": "usageUnits", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "demandUnits", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "meterStatementId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "isValidated", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "args": [], + "name": "meterLabel", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "provider", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "accountLabel", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "billArrivalDate", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "args": [], + "name": "startDate", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "args": [], + "name": "endDate", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "args": [], + "name": "statementYear", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "statementMonth", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "currencyCode", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "daysInBill", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "accountStatementId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "facility", + "type": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + }, + { + "args": [], + "name": "utilityAccount", + "type": { + "kind": "OBJECT", + "name": "UtilityAccount", + "ofType": null + } + }, + { + "args": [], + "name": "utilityMeter", + "type": { + "kind": "OBJECT", + "name": "UtilityMeter", + "ofType": null + } + }, + { + "args": [], + "name": "meterStatement", + "type": { + "kind": "OBJECT", + "name": "MeterStatement", + "ofType": null + } + }, + { + "args": [], + "name": "accountStatement", + "type": { + "kind": "OBJECT", + "name": "AccountStatement", + "ofType": null + } + }, + { + "args": [], + "name": "billCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billDemand", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billDemandCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billUsage", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billUsageCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "credits", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "fees", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "taxes", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "UtilityMeterStatement", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MeterStatementsChargesRecord", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MeterStatementsChargeEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "MeterStatementsChargesConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "category", + "type": { + "kind": "ENUM", + "name": "UtilityMeterChargeCategory", + "ofType": null + } + }, + { + "args": [], + "name": "value", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "MeterStatementsChargesRecord", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MeterStatementsChargesRecord", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "MeterStatementsChargeEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "category", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterChargeCategoryFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "value", + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MeterStatementsChargesRecordFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MeterStatementsChargesRecordFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "MeterStatementsChargesRecordFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "MeterStatementsChargesRecordFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MeterStatementsNormalizedChargesRecord", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MeterStatementsNormalizedChargeEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "MeterStatementsNormalizedChargesConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "category", + "type": { + "kind": "ENUM", + "name": "UtilityMeterChargeCategory", + "ofType": null + } + }, + { + "args": [], + "name": "value", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "MeterStatementsNormalizedChargesRecord", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MeterStatementsNormalizedChargesRecord", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "MeterStatementsNormalizedChargeEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "category", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterChargeCategoryFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "value", + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MeterStatementsNormalizedChargesRecordFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MeterStatementsNormalizedChargesRecordFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "MeterStatementsNormalizedChargesRecordFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "MeterStatementsNormalizedChargesRecordFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeterStatementRollup", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityMeterStatementRollupsEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "keys", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + { + "args": [], + "name": "sum", + "type": { + "kind": "OBJECT", + "name": "UtilityMeterStatementRollupSumAggregates", + "ofType": null + } + }, + { + "args": [], + "name": "distinctCount", + "type": { + "kind": "OBJECT", + "name": "UtilityMeterStatementRollupDistinctCountAggregates", + "ofType": null + } + }, + { + "args": [], + "name": "min", + "type": { + "kind": "OBJECT", + "name": "UtilityMeterStatementRollupMinAggregates", + "ofType": null + } + }, + { + "args": [], + "name": "max", + "type": { + "kind": "OBJECT", + "name": "UtilityMeterStatementRollupMaxAggregates", + "ofType": null + } + }, + { + "args": [], + "name": "average", + "type": { + "kind": "OBJECT", + "name": "UtilityMeterStatementRollupAverageAggregates", + "ofType": null + } + }, + { + "args": [], + "name": "stddevSample", + "type": { + "kind": "OBJECT", + "name": "UtilityMeterStatementRollupStddevSampleAggregates", + "ofType": null + } + }, + { + "args": [], + "name": "stddevPopulation", + "type": { + "kind": "OBJECT", + "name": "UtilityMeterStatementRollupStddevPopulationAggregates", + "ofType": null + } + }, + { + "args": [], + "name": "varianceSample", + "type": { + "kind": "OBJECT", + "name": "UtilityMeterStatementRollupVarianceSampleAggregates", + "ofType": null + } + }, + { + "args": [], + "name": "variancePopulation", + "type": { + "kind": "OBJECT", + "name": "UtilityMeterStatementRollupVariancePopulationAggregates", + "ofType": null + } + }, + { + "args": [], + "name": "distinct", + "type": { + "kind": "OBJECT", + "name": "UtilityMeterStatementRollupDistinctAggregates", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityMeterStatementRollupAggregates", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "facilityId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + { + "args": [], + "name": "utilityAccountId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + { + "args": [], + "name": "utilityMeterId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + { + "args": [], + "name": "meterStatementId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + { + "args": [], + "name": "statementYear", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + { + "args": [], + "name": "statementMonth", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + { + "args": [], + "name": "daysInBill", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + { + "args": [], + "name": "billCost", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "billUsage", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "netBillUsage", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "billUsageCost", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "billDemand", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "billDemandCost", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "fees", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "taxes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "credits", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "blendedRate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "loadFactor", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "percentChange", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "accountStatementId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityMeterStatementRollupSumAggregates", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "facilityId", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "utilityAccountId", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "utilityMeterId", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "meterEndDateSet", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "meterStatementId", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "isValidated", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "serviceType", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "meterLabel", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "provider", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "billArrivalDate", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "startDate", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "endDate", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "accountLabel", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "statementYear", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "statementMonth", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "daysInBill", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "billCost", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "usageUnits", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "billUsage", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "netBillUsage", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "billUsageCost", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "demandUnits", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "billDemand", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "billDemandCost", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "fees", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "taxes", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "credits", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "blendedRate", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "loadFactor", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "percentChange", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "currencyCode", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "accountStatementId", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "facilityName", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "nSight2Active", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "statementDate", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityMeterStatementRollupDistinctCountAggregates", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "facilityId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "utilityAccountId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "utilityMeterId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "meterStatementId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "statementYear", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "statementMonth", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "daysInBill", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "billCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billUsage", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "netBillUsage", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billUsageCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billDemand", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billDemandCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "fees", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "taxes", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "credits", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "blendedRate", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "loadFactor", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "percentChange", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "accountStatementId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityMeterStatementRollupMinAggregates", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "facilityId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "utilityAccountId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "utilityMeterId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "meterStatementId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "statementYear", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "statementMonth", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "daysInBill", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "billCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billUsage", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "netBillUsage", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billUsageCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billDemand", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billDemandCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "fees", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "taxes", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "credits", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "blendedRate", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "loadFactor", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "percentChange", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "accountStatementId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityMeterStatementRollupMaxAggregates", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "facilityId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "utilityAccountId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "utilityMeterId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "meterStatementId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "statementYear", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "statementMonth", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "daysInBill", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "billCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billUsage", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "netBillUsage", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billUsageCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billDemand", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billDemandCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "fees", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "taxes", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "credits", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "blendedRate", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "loadFactor", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "percentChange", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "accountStatementId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityMeterStatementRollupAverageAggregates", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "facilityId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "utilityAccountId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "utilityMeterId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "meterStatementId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "statementYear", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "statementMonth", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "daysInBill", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "billCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billUsage", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "netBillUsage", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billUsageCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billDemand", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billDemandCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "fees", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "taxes", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "credits", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "blendedRate", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "loadFactor", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "percentChange", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "accountStatementId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityMeterStatementRollupStddevSampleAggregates", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "facilityId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "utilityAccountId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "utilityMeterId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "meterStatementId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "statementYear", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "statementMonth", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "daysInBill", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "billCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billUsage", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "netBillUsage", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billUsageCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billDemand", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billDemandCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "fees", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "taxes", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "credits", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "blendedRate", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "loadFactor", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "percentChange", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "accountStatementId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityMeterStatementRollupStddevPopulationAggregates", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "facilityId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "utilityAccountId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "utilityMeterId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "meterStatementId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "statementYear", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "statementMonth", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "daysInBill", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "billCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billUsage", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "netBillUsage", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billUsageCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billDemand", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billDemandCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "fees", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "taxes", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "credits", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "blendedRate", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "loadFactor", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "percentChange", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "accountStatementId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityMeterStatementRollupVarianceSampleAggregates", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "facilityId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "utilityAccountId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "utilityMeterId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "meterStatementId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "statementYear", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "statementMonth", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "daysInBill", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "billCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billUsage", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "netBillUsage", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billUsageCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billDemand", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billDemandCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "fees", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "taxes", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "credits", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "blendedRate", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "loadFactor", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "percentChange", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "accountStatementId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityMeterStatementRollupVariancePopulationAggregates", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "facilityId", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "utilityAccountId", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "utilityMeterId", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "meterEndDateSet", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "args": [], + "name": "meterStatementId", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "isValidated", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "args": [], + "name": "serviceType", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "args": [], + "name": "meterLabel", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "provider", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "billArrivalDate", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "args": [], + "name": "startDate", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "args": [], + "name": "endDate", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "args": [], + "name": "accountLabel", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "statementYear", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "statementMonth", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "daysInBill", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "billCost", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "usageUnits", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "billUsage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "netBillUsage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "billUsageCost", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "demandUnits", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "billDemand", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "billDemandCost", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "fees", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "taxes", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "credits", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "blendedRate", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "loadFactor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "percentChange", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "currencyCode", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "accountStatementId", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "facilityName", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "nSight2Active", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "args": [], + "name": "statementDate", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityMeterStatementRollupDistinctAggregates", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "FACILITY_ID" + }, + { + "name": "FACILITY_ID_DISTINCT" + }, + { + "name": "UTILITY_ACCOUNT_ID" + }, + { + "name": "UTILITY_ACCOUNT_ID_DISTINCT" + }, + { + "name": "UTILITY_METER_ID" + }, + { + "name": "UTILITY_METER_ID_DISTINCT" + }, + { + "name": "METER_END_DATE_SET" + }, + { + "name": "METER_END_DATE_SET_DISTINCT" + }, + { + "name": "METER_STATEMENT_ID" + }, + { + "name": "METER_STATEMENT_ID_DISTINCT" + }, + { + "name": "IS_VALIDATED" + }, + { + "name": "IS_VALIDATED_DISTINCT" + }, + { + "name": "SERVICE_TYPE" + }, + { + "name": "SERVICE_TYPE_DISTINCT" + }, + { + "name": "METER_LABEL" + }, + { + "name": "METER_LABEL_DISTINCT" + }, + { + "name": "PROVIDER" + }, + { + "name": "PROVIDER_DISTINCT" + }, + { + "name": "BILL_ARRIVAL_DATE" + }, + { + "name": "BILL_ARRIVAL_DATE_TRUNCATED_TO_HOUR" + }, + { + "name": "BILL_ARRIVAL_DATE_TRUNCATED_TO_DAY" + }, + { + "name": "BILL_ARRIVAL_DATE_DISTINCT" + }, + { + "name": "START_DATE" + }, + { + "name": "START_DATE_DISTINCT" + }, + { + "name": "END_DATE" + }, + { + "name": "END_DATE_DISTINCT" + }, + { + "name": "ACCOUNT_LABEL" + }, + { + "name": "ACCOUNT_LABEL_DISTINCT" + }, + { + "name": "STATEMENT_YEAR" + }, + { + "name": "STATEMENT_YEAR_DISTINCT" + }, + { + "name": "STATEMENT_MONTH" + }, + { + "name": "STATEMENT_MONTH_DISTINCT" + }, + { + "name": "DAYS_IN_BILL" + }, + { + "name": "DAYS_IN_BILL_DISTINCT" + }, + { + "name": "BILL_COST" + }, + { + "name": "BILL_COST_DISTINCT" + }, + { + "name": "USAGE_UNITS" + }, + { + "name": "USAGE_UNITS_DISTINCT" + }, + { + "name": "BILL_USAGE" + }, + { + "name": "BILL_USAGE_DISTINCT" + }, + { + "name": "NET_BILL_USAGE" + }, + { + "name": "NET_BILL_USAGE_DISTINCT" + }, + { + "name": "BILL_USAGE_COST" + }, + { + "name": "BILL_USAGE_COST_DISTINCT" + }, + { + "name": "DEMAND_UNITS" + }, + { + "name": "DEMAND_UNITS_DISTINCT" + }, + { + "name": "BILL_DEMAND" + }, + { + "name": "BILL_DEMAND_DISTINCT" + }, + { + "name": "BILL_DEMAND_COST" + }, + { + "name": "BILL_DEMAND_COST_DISTINCT" + }, + { + "name": "FEES" + }, + { + "name": "FEES_DISTINCT" + }, + { + "name": "TAXES" + }, + { + "name": "TAXES_DISTINCT" + }, + { + "name": "CREDITS" + }, + { + "name": "CREDITS_DISTINCT" + }, + { + "name": "BLENDED_RATE" + }, + { + "name": "BLENDED_RATE_DISTINCT" + }, + { + "name": "LOAD_FACTOR" + }, + { + "name": "LOAD_FACTOR_DISTINCT" + }, + { + "name": "PERCENT_CHANGE" + }, + { + "name": "PERCENT_CHANGE_DISTINCT" + }, + { + "name": "CURRENCY_CODE" + }, + { + "name": "CURRENCY_CODE_DISTINCT" + }, + { + "name": "ACCOUNT_STATEMENT_ID" + }, + { + "name": "ACCOUNT_STATEMENT_ID_DISTINCT" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "UtilityMeterStatementRollupsGroupBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "AND", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupsHavingInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "OR", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupsHavingInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "sum", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupsHavingSumInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "distinctCount", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupsHavingDistinctCountInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "min", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupsHavingMinInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "max", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupsHavingMaxInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "average", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupsHavingAverageInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "stddevSample", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupsHavingStddevSampleInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "stddevPopulation", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupsHavingStddevPopulationInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "varianceSample", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupsHavingVarianceSampleInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "variancePopulation", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupsHavingVariancePopulationInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "distinct", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupsHavingDistinctInput", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupsHavingInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityAccountId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityMeterId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billArrivalDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "endDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementYear", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementMonth", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "daysInBill", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsage", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "netBillUsage", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsageCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemand", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemandCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "fees", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "taxes", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "credits", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "blendedRate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "loadFactor", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "percentChange", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupsHavingSumInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityAccountId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityMeterId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billArrivalDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "endDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementYear", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementMonth", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "daysInBill", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsage", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "netBillUsage", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsageCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemand", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemandCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "fees", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "taxes", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "credits", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "blendedRate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "loadFactor", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "percentChange", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupsHavingDistinctCountInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityAccountId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityMeterId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billArrivalDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "endDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementYear", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementMonth", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "daysInBill", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsage", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "netBillUsage", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsageCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemand", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemandCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "fees", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "taxes", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "credits", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "blendedRate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "loadFactor", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "percentChange", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupsHavingMinInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityAccountId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityMeterId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billArrivalDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "endDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementYear", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementMonth", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "daysInBill", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsage", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "netBillUsage", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsageCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemand", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemandCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "fees", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "taxes", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "credits", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "blendedRate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "loadFactor", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "percentChange", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupsHavingMaxInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityAccountId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityMeterId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billArrivalDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "endDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementYear", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementMonth", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "daysInBill", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsage", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "netBillUsage", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsageCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemand", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemandCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "fees", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "taxes", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "credits", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "blendedRate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "loadFactor", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "percentChange", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupsHavingAverageInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityAccountId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityMeterId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billArrivalDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "endDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementYear", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementMonth", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "daysInBill", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsage", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "netBillUsage", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsageCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemand", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemandCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "fees", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "taxes", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "credits", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "blendedRate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "loadFactor", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "percentChange", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupsHavingStddevSampleInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityAccountId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityMeterId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billArrivalDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "endDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementYear", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementMonth", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "daysInBill", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsage", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "netBillUsage", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsageCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemand", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemandCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "fees", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "taxes", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "credits", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "blendedRate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "loadFactor", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "percentChange", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupsHavingStddevPopulationInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityAccountId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityMeterId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billArrivalDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "endDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementYear", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementMonth", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "daysInBill", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsage", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "netBillUsage", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsageCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemand", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemandCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "fees", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "taxes", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "credits", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "blendedRate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "loadFactor", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "percentChange", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupsHavingVarianceSampleInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityAccountId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityMeterId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billArrivalDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "endDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementYear", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementMonth", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "daysInBill", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsage", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "netBillUsage", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsageCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemand", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemandCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "fees", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "taxes", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "credits", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "blendedRate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "loadFactor", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "percentChange", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupsHavingVariancePopulationInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityAccountId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityMeterId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billArrivalDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "endDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementYear", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementMonth", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "daysInBill", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsage", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "netBillUsage", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsageCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemand", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemandCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "fees", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "taxes", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "credits", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "blendedRate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "loadFactor", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "percentChange", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupsHavingDistinctInput", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "FACILITY_ID_ASC" + }, + { + "name": "FACILITY_ID_DESC" + }, + { + "name": "UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_ID_DESC" + }, + { + "name": "METER_END_DATE_SET_ASC" + }, + { + "name": "METER_END_DATE_SET_DESC" + }, + { + "name": "METER_STATEMENT_ID_ASC" + }, + { + "name": "METER_STATEMENT_ID_DESC" + }, + { + "name": "IS_VALIDATED_ASC" + }, + { + "name": "IS_VALIDATED_DESC" + }, + { + "name": "SERVICE_TYPE_ASC" + }, + { + "name": "SERVICE_TYPE_DESC" + }, + { + "name": "METER_LABEL_ASC" + }, + { + "name": "METER_LABEL_DESC" + }, + { + "name": "PROVIDER_ASC" + }, + { + "name": "PROVIDER_DESC" + }, + { + "name": "BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "START_DATE_ASC" + }, + { + "name": "START_DATE_DESC" + }, + { + "name": "END_DATE_ASC" + }, + { + "name": "END_DATE_DESC" + }, + { + "name": "ACCOUNT_LABEL_ASC" + }, + { + "name": "ACCOUNT_LABEL_DESC" + }, + { + "name": "STATEMENT_YEAR_ASC" + }, + { + "name": "STATEMENT_YEAR_DESC" + }, + { + "name": "STATEMENT_MONTH_ASC" + }, + { + "name": "STATEMENT_MONTH_DESC" + }, + { + "name": "DAYS_IN_BILL_ASC" + }, + { + "name": "DAYS_IN_BILL_DESC" + }, + { + "name": "BILL_COST_ASC" + }, + { + "name": "BILL_COST_DESC" + }, + { + "name": "USAGE_UNITS_ASC" + }, + { + "name": "USAGE_UNITS_DESC" + }, + { + "name": "BILL_USAGE_ASC" + }, + { + "name": "BILL_USAGE_DESC" + }, + { + "name": "NET_BILL_USAGE_ASC" + }, + { + "name": "NET_BILL_USAGE_DESC" + }, + { + "name": "BILL_USAGE_COST_ASC" + }, + { + "name": "BILL_USAGE_COST_DESC" + }, + { + "name": "DEMAND_UNITS_ASC" + }, + { + "name": "DEMAND_UNITS_DESC" + }, + { + "name": "BILL_DEMAND_ASC" + }, + { + "name": "BILL_DEMAND_DESC" + }, + { + "name": "BILL_DEMAND_COST_ASC" + }, + { + "name": "BILL_DEMAND_COST_DESC" + }, + { + "name": "FEES_ASC" + }, + { + "name": "FEES_DESC" + }, + { + "name": "TAXES_ASC" + }, + { + "name": "TAXES_DESC" + }, + { + "name": "CREDITS_ASC" + }, + { + "name": "CREDITS_DESC" + }, + { + "name": "BLENDED_RATE_ASC" + }, + { + "name": "BLENDED_RATE_DESC" + }, + { + "name": "LOAD_FACTOR_ASC" + }, + { + "name": "LOAD_FACTOR_DESC" + }, + { + "name": "PERCENT_CHANGE_ASC" + }, + { + "name": "PERCENT_CHANGE_DESC" + }, + { + "name": "CURRENCY_CODE_ASC" + }, + { + "name": "CURRENCY_CODE_DESC" + }, + { + "name": "ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "FACILITY_NAME_ASC" + }, + { + "name": "FACILITY_NAME_DESC" + }, + { + "name": "N_SIGHT2_ACTIVE_ASC" + }, + { + "name": "N_SIGHT2_ACTIVE_DESC" + }, + { + "name": "STATEMENT_DATE_ASC" + }, + { + "name": "STATEMENT_DATE_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "UtilityMeterStatementRollupsOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityAccountId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityMeterId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterEndDateSet", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterStatementId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "isValidated", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "serviceType", + "type": { + "kind": "ENUM", + "name": "UtilityMeterServiceType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterLabel", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "provider", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billArrivalDate", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startDate", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "endDate", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountLabel", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementYear", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementMonth", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "daysInBill", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "usageUnits", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsage", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "netBillUsage", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsageCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "demandUnits", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemand", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemandCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "fees", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "taxes", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "credits", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "blendedRate", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "loadFactor", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "percentChange", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "currencyCode", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityAccountId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityMeterId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterEndDateSet", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "isValidated", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "serviceType", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterServiceTypeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterLabel", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "provider", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billArrivalDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "endDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountLabel", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementYear", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementMonth", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "daysInBill", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "usageUnits", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsage", + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "netBillUsage", + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsageCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "demandUnits", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemand", + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemandCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "fees", + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "taxes", + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "credits", + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "blendedRate", + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "loadFactor", + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "percentChange", + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "currencyCode", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "facilityName", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nSight2Active", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeterStatement", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeterStatementsEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "aggregates", + "type": { + "kind": "OBJECT", + "name": "UtilityMeterStatementAggregates", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "groupBy", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterStatementsGroupBy", + "ofType": null + } + } + } + } + }, + { + "defaultValue": null, + "name": "having", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingInput", + "ofType": null + } + } + ], + "name": "groupedAggregates", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeterStatementAggregates", + "ofType": null + } + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityMeterStatementsConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeterStatement", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityMeterStatementsEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "keys", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + { + "args": [], + "name": "sum", + "type": { + "kind": "OBJECT", + "name": "UtilityMeterStatementSumAggregates", + "ofType": null + } + }, + { + "args": [], + "name": "distinctCount", + "type": { + "kind": "OBJECT", + "name": "UtilityMeterStatementDistinctCountAggregates", + "ofType": null + } + }, + { + "args": [], + "name": "min", + "type": { + "kind": "OBJECT", + "name": "UtilityMeterStatementMinAggregates", + "ofType": null + } + }, + { + "args": [], + "name": "max", + "type": { + "kind": "OBJECT", + "name": "UtilityMeterStatementMaxAggregates", + "ofType": null + } + }, + { + "args": [], + "name": "average", + "type": { + "kind": "OBJECT", + "name": "UtilityMeterStatementAverageAggregates", + "ofType": null + } + }, + { + "args": [], + "name": "stddevSample", + "type": { + "kind": "OBJECT", + "name": "UtilityMeterStatementStddevSampleAggregates", + "ofType": null + } + }, + { + "args": [], + "name": "stddevPopulation", + "type": { + "kind": "OBJECT", + "name": "UtilityMeterStatementStddevPopulationAggregates", + "ofType": null + } + }, + { + "args": [], + "name": "varianceSample", + "type": { + "kind": "OBJECT", + "name": "UtilityMeterStatementVarianceSampleAggregates", + "ofType": null + } + }, + { + "args": [], + "name": "variancePopulation", + "type": { + "kind": "OBJECT", + "name": "UtilityMeterStatementVariancePopulationAggregates", + "ofType": null + } + }, + { + "args": [], + "name": "distinct", + "type": { + "kind": "OBJECT", + "name": "UtilityMeterStatementDistinctAggregates", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityMeterStatementAggregates", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "facilityId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + { + "args": [], + "name": "utilityAccountId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + { + "args": [], + "name": "utilityMeterId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + { + "args": [], + "name": "meterStatementId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + { + "args": [], + "name": "statementYear", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + { + "args": [], + "name": "statementMonth", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + { + "args": [], + "name": "daysInBill", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + { + "args": [], + "name": "accountStatementId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + { + "args": [], + "name": "billCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billDemand", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billDemandCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billUsage", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billUsageCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "credits", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "fees", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "taxes", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityMeterStatementSumAggregates", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "facilityId", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "utilityAccountId", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "utilityMeterId", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "meterEndDateSet", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "serviceType", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "excludeUsage", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "usageUnits", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "demandUnits", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "meterStatementId", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "isValidated", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "meterLabel", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "provider", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "accountLabel", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "billArrivalDate", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "startDate", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "endDate", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "statementYear", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "statementMonth", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "currencyCode", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "daysInBill", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "accountStatementId", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "billCost", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "billDemand", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "billDemandCost", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "billUsage", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "billUsageCost", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "credits", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "fees", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "taxes", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityMeterStatementDistinctCountAggregates", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "facilityId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "utilityAccountId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "utilityMeterId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "meterStatementId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "statementYear", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "statementMonth", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "daysInBill", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "accountStatementId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "billCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billDemand", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billDemandCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billUsage", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billUsageCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "credits", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "fees", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "taxes", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityMeterStatementMinAggregates", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "facilityId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "utilityAccountId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "utilityMeterId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "meterStatementId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "statementYear", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "statementMonth", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "daysInBill", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "accountStatementId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "billCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billDemand", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billDemandCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billUsage", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billUsageCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "credits", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "fees", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "taxes", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityMeterStatementMaxAggregates", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "facilityId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "utilityAccountId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "utilityMeterId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "meterStatementId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "statementYear", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "statementMonth", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "daysInBill", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "accountStatementId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "billCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billDemand", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billDemandCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billUsage", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billUsageCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "credits", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "fees", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "taxes", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityMeterStatementAverageAggregates", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "facilityId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "utilityAccountId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "utilityMeterId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "meterStatementId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "statementYear", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "statementMonth", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "daysInBill", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "accountStatementId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "billCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billDemand", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billDemandCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billUsage", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billUsageCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "credits", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "fees", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "taxes", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityMeterStatementStddevSampleAggregates", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "facilityId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "utilityAccountId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "utilityMeterId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "meterStatementId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "statementYear", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "statementMonth", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "daysInBill", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "accountStatementId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "billCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billDemand", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billDemandCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billUsage", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billUsageCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "credits", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "fees", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "taxes", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityMeterStatementStddevPopulationAggregates", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "facilityId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "utilityAccountId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "utilityMeterId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "meterStatementId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "statementYear", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "statementMonth", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "daysInBill", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "accountStatementId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "billCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billDemand", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billDemandCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billUsage", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billUsageCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "credits", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "fees", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "taxes", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityMeterStatementVarianceSampleAggregates", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "facilityId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "utilityAccountId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "utilityMeterId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "meterStatementId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "statementYear", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "statementMonth", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "daysInBill", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "accountStatementId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "billCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billDemand", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billDemandCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billUsage", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billUsageCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "credits", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "fees", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "taxes", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityMeterStatementVariancePopulationAggregates", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "facilityId", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "utilityAccountId", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "utilityMeterId", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "meterEndDateSet", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "args": [], + "name": "serviceType", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "args": [], + "name": "excludeUsage", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "args": [], + "name": "usageUnits", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "demandUnits", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "meterStatementId", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "isValidated", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "args": [], + "name": "meterLabel", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "provider", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "accountLabel", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "billArrivalDate", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "args": [], + "name": "startDate", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "args": [], + "name": "endDate", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "args": [], + "name": "statementYear", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "statementMonth", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "currencyCode", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "daysInBill", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "accountStatementId", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "billCost", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "billDemand", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "billDemandCost", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "billUsage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "billUsageCost", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "credits", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "fees", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "taxes", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityMeterStatementDistinctAggregates", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "FACILITY_ID" + }, + { + "name": "FACILITY_ID_DISTINCT" + }, + { + "name": "UTILITY_ACCOUNT_ID" + }, + { + "name": "UTILITY_ACCOUNT_ID_DISTINCT" + }, + { + "name": "UTILITY_METER_ID" + }, + { + "name": "UTILITY_METER_ID_DISTINCT" + }, + { + "name": "METER_END_DATE_SET" + }, + { + "name": "METER_END_DATE_SET_DISTINCT" + }, + { + "name": "SERVICE_TYPE" + }, + { + "name": "SERVICE_TYPE_DISTINCT" + }, + { + "name": "EXCLUDE_USAGE" + }, + { + "name": "EXCLUDE_USAGE_DISTINCT" + }, + { + "name": "USAGE_UNITS" + }, + { + "name": "USAGE_UNITS_DISTINCT" + }, + { + "name": "DEMAND_UNITS" + }, + { + "name": "DEMAND_UNITS_DISTINCT" + }, + { + "name": "METER_STATEMENT_ID" + }, + { + "name": "METER_STATEMENT_ID_DISTINCT" + }, + { + "name": "IS_VALIDATED" + }, + { + "name": "IS_VALIDATED_DISTINCT" + }, + { + "name": "METER_LABEL" + }, + { + "name": "METER_LABEL_DISTINCT" + }, + { + "name": "PROVIDER" + }, + { + "name": "PROVIDER_DISTINCT" + }, + { + "name": "ACCOUNT_LABEL" + }, + { + "name": "ACCOUNT_LABEL_DISTINCT" + }, + { + "name": "BILL_ARRIVAL_DATE" + }, + { + "name": "BILL_ARRIVAL_DATE_TRUNCATED_TO_HOUR" + }, + { + "name": "BILL_ARRIVAL_DATE_TRUNCATED_TO_DAY" + }, + { + "name": "BILL_ARRIVAL_DATE_DISTINCT" + }, + { + "name": "START_DATE" + }, + { + "name": "START_DATE_DISTINCT" + }, + { + "name": "END_DATE" + }, + { + "name": "END_DATE_DISTINCT" + }, + { + "name": "STATEMENT_YEAR" + }, + { + "name": "STATEMENT_YEAR_DISTINCT" + }, + { + "name": "STATEMENT_MONTH" + }, + { + "name": "STATEMENT_MONTH_DISTINCT" + }, + { + "name": "CURRENCY_CODE" + }, + { + "name": "CURRENCY_CODE_DISTINCT" + }, + { + "name": "DAYS_IN_BILL" + }, + { + "name": "DAYS_IN_BILL_DISTINCT" + }, + { + "name": "ACCOUNT_STATEMENT_ID" + }, + { + "name": "ACCOUNT_STATEMENT_ID_DISTINCT" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "UtilityMeterStatementsGroupBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "AND", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "OR", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "sum", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingSumInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "distinctCount", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingDistinctCountInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "min", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingMinInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "max", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingMaxInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "average", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingAverageInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "stddevSample", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingStddevSampleInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "stddevPopulation", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingStddevPopulationInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "varianceSample", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingVarianceSampleInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "variancePopulation", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingVariancePopulationInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "distinct", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingDistinctInput", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityAccountId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityMeterId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billArrivalDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "endDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementYear", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementMonth", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "daysInBill", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingSumUtilityMeterStatementsBillCostInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemand", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingSumUtilityMeterStatementsBillDemandInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemandCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingSumUtilityMeterStatementsBillDemandCostInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsage", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingSumUtilityMeterStatementsBillUsageInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsageCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingSumUtilityMeterStatementsBillUsageCostInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "credits", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingSumUtilityMeterStatementsCreditsInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "fees", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingSumUtilityMeterStatementsFeesInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "taxes", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingSumUtilityMeterStatementsTaxesInput", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingSumInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingSumUtilityMeterStatementsBillCostInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingSumUtilityMeterStatementsBillDemandInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingSumUtilityMeterStatementsBillDemandCostInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingSumUtilityMeterStatementsBillUsageInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingSumUtilityMeterStatementsBillUsageCostInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingSumUtilityMeterStatementsCreditsInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingSumUtilityMeterStatementsFeesInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingSumUtilityMeterStatementsTaxesInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityAccountId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityMeterId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billArrivalDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "endDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementYear", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementMonth", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "daysInBill", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingDistinctCountUtilityMeterStatementsBillCostInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemand", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingDistinctCountUtilityMeterStatementsBillDemandInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemandCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingDistinctCountUtilityMeterStatementsBillDemandCostInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsage", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingDistinctCountUtilityMeterStatementsBillUsageInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsageCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingDistinctCountUtilityMeterStatementsBillUsageCostInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "credits", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingDistinctCountUtilityMeterStatementsCreditsInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "fees", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingDistinctCountUtilityMeterStatementsFeesInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "taxes", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingDistinctCountUtilityMeterStatementsTaxesInput", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingDistinctCountInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingDistinctCountUtilityMeterStatementsBillCostInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingDistinctCountUtilityMeterStatementsBillDemandInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingDistinctCountUtilityMeterStatementsBillDemandCostInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingDistinctCountUtilityMeterStatementsBillUsageInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingDistinctCountUtilityMeterStatementsBillUsageCostInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingDistinctCountUtilityMeterStatementsCreditsInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingDistinctCountUtilityMeterStatementsFeesInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingDistinctCountUtilityMeterStatementsTaxesInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityAccountId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityMeterId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billArrivalDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "endDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementYear", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementMonth", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "daysInBill", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingMinUtilityMeterStatementsBillCostInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemand", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingMinUtilityMeterStatementsBillDemandInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemandCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingMinUtilityMeterStatementsBillDemandCostInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsage", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingMinUtilityMeterStatementsBillUsageInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsageCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingMinUtilityMeterStatementsBillUsageCostInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "credits", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingMinUtilityMeterStatementsCreditsInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "fees", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingMinUtilityMeterStatementsFeesInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "taxes", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingMinUtilityMeterStatementsTaxesInput", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingMinInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingMinUtilityMeterStatementsBillCostInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingMinUtilityMeterStatementsBillDemandInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingMinUtilityMeterStatementsBillDemandCostInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingMinUtilityMeterStatementsBillUsageInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingMinUtilityMeterStatementsBillUsageCostInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingMinUtilityMeterStatementsCreditsInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingMinUtilityMeterStatementsFeesInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingMinUtilityMeterStatementsTaxesInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityAccountId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityMeterId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billArrivalDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "endDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementYear", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementMonth", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "daysInBill", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingMaxUtilityMeterStatementsBillCostInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemand", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingMaxUtilityMeterStatementsBillDemandInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemandCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingMaxUtilityMeterStatementsBillDemandCostInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsage", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingMaxUtilityMeterStatementsBillUsageInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsageCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingMaxUtilityMeterStatementsBillUsageCostInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "credits", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingMaxUtilityMeterStatementsCreditsInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "fees", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingMaxUtilityMeterStatementsFeesInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "taxes", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingMaxUtilityMeterStatementsTaxesInput", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingMaxInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingMaxUtilityMeterStatementsBillCostInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingMaxUtilityMeterStatementsBillDemandInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingMaxUtilityMeterStatementsBillDemandCostInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingMaxUtilityMeterStatementsBillUsageInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingMaxUtilityMeterStatementsBillUsageCostInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingMaxUtilityMeterStatementsCreditsInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingMaxUtilityMeterStatementsFeesInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingMaxUtilityMeterStatementsTaxesInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityAccountId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityMeterId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billArrivalDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "endDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementYear", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementMonth", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "daysInBill", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingAverageUtilityMeterStatementsBillCostInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemand", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingAverageUtilityMeterStatementsBillDemandInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemandCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingAverageUtilityMeterStatementsBillDemandCostInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsage", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingAverageUtilityMeterStatementsBillUsageInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsageCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingAverageUtilityMeterStatementsBillUsageCostInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "credits", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingAverageUtilityMeterStatementsCreditsInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "fees", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingAverageUtilityMeterStatementsFeesInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "taxes", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingAverageUtilityMeterStatementsTaxesInput", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingAverageInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingAverageUtilityMeterStatementsBillCostInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingAverageUtilityMeterStatementsBillDemandInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingAverageUtilityMeterStatementsBillDemandCostInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingAverageUtilityMeterStatementsBillUsageInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingAverageUtilityMeterStatementsBillUsageCostInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingAverageUtilityMeterStatementsCreditsInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingAverageUtilityMeterStatementsFeesInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingAverageUtilityMeterStatementsTaxesInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityAccountId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityMeterId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billArrivalDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "endDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementYear", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementMonth", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "daysInBill", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingStddevSampleUtilityMeterStatementsBillCostInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemand", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingStddevSampleUtilityMeterStatementsBillDemandInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemandCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingStddevSampleUtilityMeterStatementsBillDemandCostInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsage", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingStddevSampleUtilityMeterStatementsBillUsageInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsageCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingStddevSampleUtilityMeterStatementsBillUsageCostInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "credits", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingStddevSampleUtilityMeterStatementsCreditsInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "fees", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingStddevSampleUtilityMeterStatementsFeesInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "taxes", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingStddevSampleUtilityMeterStatementsTaxesInput", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingStddevSampleInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingStddevSampleUtilityMeterStatementsBillCostInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingStddevSampleUtilityMeterStatementsBillDemandInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingStddevSampleUtilityMeterStatementsBillDemandCostInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingStddevSampleUtilityMeterStatementsBillUsageInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingStddevSampleUtilityMeterStatementsBillUsageCostInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingStddevSampleUtilityMeterStatementsCreditsInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingStddevSampleUtilityMeterStatementsFeesInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingStddevSampleUtilityMeterStatementsTaxesInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityAccountId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityMeterId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billArrivalDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "endDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementYear", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementMonth", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "daysInBill", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingStddevPopulationUtilityMeterStatementsBillCostInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemand", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingStddevPopulationUtilityMeterStatementsBillDemandInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemandCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingStddevPopulationUtilityMeterStatementsBillDemandCostInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsage", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingStddevPopulationUtilityMeterStatementsBillUsageInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsageCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingStddevPopulationUtilityMeterStatementsBillUsageCostInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "credits", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingStddevPopulationUtilityMeterStatementsCreditsInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "fees", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingStddevPopulationUtilityMeterStatementsFeesInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "taxes", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingStddevPopulationUtilityMeterStatementsTaxesInput", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingStddevPopulationInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingStddevPopulationUtilityMeterStatementsBillCostInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingStddevPopulationUtilityMeterStatementsBillDemandInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingStddevPopulationUtilityMeterStatementsBillDemandCostInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingStddevPopulationUtilityMeterStatementsBillUsageInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingStddevPopulationUtilityMeterStatementsBillUsageCostInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingStddevPopulationUtilityMeterStatementsCreditsInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingStddevPopulationUtilityMeterStatementsFeesInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingStddevPopulationUtilityMeterStatementsTaxesInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityAccountId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityMeterId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billArrivalDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "endDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementYear", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementMonth", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "daysInBill", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingVarianceSampleUtilityMeterStatementsBillCostInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemand", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingVarianceSampleUtilityMeterStatementsBillDemandInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemandCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingVarianceSampleUtilityMeterStatementsBillDemandCostInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsage", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingVarianceSampleUtilityMeterStatementsBillUsageInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsageCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingVarianceSampleUtilityMeterStatementsBillUsageCostInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "credits", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingVarianceSampleUtilityMeterStatementsCreditsInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "fees", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingVarianceSampleUtilityMeterStatementsFeesInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "taxes", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingVarianceSampleUtilityMeterStatementsTaxesInput", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingVarianceSampleInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingVarianceSampleUtilityMeterStatementsBillCostInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingVarianceSampleUtilityMeterStatementsBillDemandInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingVarianceSampleUtilityMeterStatementsBillDemandCostInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingVarianceSampleUtilityMeterStatementsBillUsageInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingVarianceSampleUtilityMeterStatementsBillUsageCostInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingVarianceSampleUtilityMeterStatementsCreditsInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingVarianceSampleUtilityMeterStatementsFeesInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingVarianceSampleUtilityMeterStatementsTaxesInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityAccountId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityMeterId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billArrivalDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "endDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementYear", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementMonth", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "daysInBill", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingVariancePopulationUtilityMeterStatementsBillCostInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemand", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingVariancePopulationUtilityMeterStatementsBillDemandInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemandCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingVariancePopulationUtilityMeterStatementsBillDemandCostInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsage", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingVariancePopulationUtilityMeterStatementsBillUsageInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsageCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingVariancePopulationUtilityMeterStatementsBillUsageCostInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "credits", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingVariancePopulationUtilityMeterStatementsCreditsInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "fees", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingVariancePopulationUtilityMeterStatementsFeesInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "taxes", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingVariancePopulationUtilityMeterStatementsTaxesInput", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingVariancePopulationInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingVariancePopulationUtilityMeterStatementsBillCostInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingVariancePopulationUtilityMeterStatementsBillDemandInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingVariancePopulationUtilityMeterStatementsBillDemandCostInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingVariancePopulationUtilityMeterStatementsBillUsageInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingVariancePopulationUtilityMeterStatementsBillUsageCostInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingVariancePopulationUtilityMeterStatementsCreditsInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingVariancePopulationUtilityMeterStatementsFeesInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingVariancePopulationUtilityMeterStatementsTaxesInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityAccountId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityMeterId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billArrivalDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "endDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementYear", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementMonth", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "daysInBill", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingDistinctUtilityMeterStatementsBillCostInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemand", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingDistinctUtilityMeterStatementsBillDemandInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemandCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingDistinctUtilityMeterStatementsBillDemandCostInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsage", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingDistinctUtilityMeterStatementsBillUsageInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsageCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingDistinctUtilityMeterStatementsBillUsageCostInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "credits", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingDistinctUtilityMeterStatementsCreditsInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "fees", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingDistinctUtilityMeterStatementsFeesInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "taxes", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingDistinctUtilityMeterStatementsTaxesInput", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingDistinctInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingDistinctUtilityMeterStatementsBillCostInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingDistinctUtilityMeterStatementsBillDemandInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingDistinctUtilityMeterStatementsBillDemandCostInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingDistinctUtilityMeterStatementsBillUsageInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingDistinctUtilityMeterStatementsBillUsageCostInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingDistinctUtilityMeterStatementsCreditsInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingDistinctUtilityMeterStatementsFeesInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementsHavingDistinctUtilityMeterStatementsTaxesInput", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "FACILITY_ID_ASC" + }, + { + "name": "FACILITY_ID_DESC" + }, + { + "name": "UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_ID_DESC" + }, + { + "name": "METER_END_DATE_SET_ASC" + }, + { + "name": "METER_END_DATE_SET_DESC" + }, + { + "name": "SERVICE_TYPE_ASC" + }, + { + "name": "SERVICE_TYPE_DESC" + }, + { + "name": "EXCLUDE_USAGE_ASC" + }, + { + "name": "EXCLUDE_USAGE_DESC" + }, + { + "name": "USAGE_UNITS_ASC" + }, + { + "name": "USAGE_UNITS_DESC" + }, + { + "name": "DEMAND_UNITS_ASC" + }, + { + "name": "DEMAND_UNITS_DESC" + }, + { + "name": "METER_STATEMENT_ID_ASC" + }, + { + "name": "METER_STATEMENT_ID_DESC" + }, + { + "name": "IS_VALIDATED_ASC" + }, + { + "name": "IS_VALIDATED_DESC" + }, + { + "name": "METER_LABEL_ASC" + }, + { + "name": "METER_LABEL_DESC" + }, + { + "name": "PROVIDER_ASC" + }, + { + "name": "PROVIDER_DESC" + }, + { + "name": "ACCOUNT_LABEL_ASC" + }, + { + "name": "ACCOUNT_LABEL_DESC" + }, + { + "name": "BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "START_DATE_ASC" + }, + { + "name": "START_DATE_DESC" + }, + { + "name": "END_DATE_ASC" + }, + { + "name": "END_DATE_DESC" + }, + { + "name": "STATEMENT_YEAR_ASC" + }, + { + "name": "STATEMENT_YEAR_DESC" + }, + { + "name": "STATEMENT_MONTH_ASC" + }, + { + "name": "STATEMENT_MONTH_DESC" + }, + { + "name": "CURRENCY_CODE_ASC" + }, + { + "name": "CURRENCY_CODE_DESC" + }, + { + "name": "DAYS_IN_BILL_ASC" + }, + { + "name": "DAYS_IN_BILL_DESC" + }, + { + "name": "ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "UtilityMeterStatementsOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityAccountId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityMeterId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterEndDateSet", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "serviceType", + "type": { + "kind": "ENUM", + "name": "UtilityMeterServiceType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "excludeUsage", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "usageUnits", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "demandUnits", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterStatementId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "isValidated", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterLabel", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "provider", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountLabel", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billArrivalDate", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startDate", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "endDate", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementYear", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementMonth", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "currencyCode", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "daysInBill", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityAccountId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityMeterId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterEndDateSet", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "serviceType", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterServiceTypeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "excludeUsage", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "usageUnits", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "demandUnits", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "isValidated", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterLabel", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "provider", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountLabel", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billArrivalDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "endDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementYear", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementMonth", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "currencyCode", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "daysInBill", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemand", + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemandCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsage", + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsageCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "credits", + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "fees", + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "taxes", + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityAccountStatementRollup", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityAccountStatementRollupsEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "aggregates", + "type": { + "kind": "OBJECT", + "name": "UtilityAccountStatementRollupAggregates", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "groupBy", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityAccountStatementRollupsGroupBy", + "ofType": null + } + } + } + } + }, + { + "defaultValue": null, + "name": "having", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountStatementRollupsHavingInput", + "ofType": null + } + } + ], + "name": "groupedAggregates", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityAccountStatementRollupAggregates", + "ofType": null + } + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityAccountStatementRollupsConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "utilityAccountId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "accountLabel", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "provider", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "accountStatementId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "statementYear", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "statementMonth", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "intervalStart", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "args": [], + "name": "intervalEnd", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "args": [], + "name": "billArrivalDate", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "args": [], + "name": "billCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billUsageCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billDemandCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "fees", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "taxes", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "credits", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "percentChange", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "currencyCode", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "utilityAccount", + "type": { + "kind": "OBJECT", + "name": "UtilityAccount", + "ofType": null + } + }, + { + "args": [], + "name": "accountStatement", + "type": { + "kind": "OBJECT", + "name": "AccountStatement", + "ofType": null + } + }, + { + "args": [], + "name": "serviceTypes", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterServiceType", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "UtilityAccountStatementRollup", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityAccountStatementRollup", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityAccountStatementRollupsEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "keys", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + { + "args": [], + "name": "sum", + "type": { + "kind": "OBJECT", + "name": "UtilityAccountStatementRollupSumAggregates", + "ofType": null + } + }, + { + "args": [], + "name": "distinctCount", + "type": { + "kind": "OBJECT", + "name": "UtilityAccountStatementRollupDistinctCountAggregates", + "ofType": null + } + }, + { + "args": [], + "name": "min", + "type": { + "kind": "OBJECT", + "name": "UtilityAccountStatementRollupMinAggregates", + "ofType": null + } + }, + { + "args": [], + "name": "max", + "type": { + "kind": "OBJECT", + "name": "UtilityAccountStatementRollupMaxAggregates", + "ofType": null + } + }, + { + "args": [], + "name": "average", + "type": { + "kind": "OBJECT", + "name": "UtilityAccountStatementRollupAverageAggregates", + "ofType": null + } + }, + { + "args": [], + "name": "stddevSample", + "type": { + "kind": "OBJECT", + "name": "UtilityAccountStatementRollupStddevSampleAggregates", + "ofType": null + } + }, + { + "args": [], + "name": "stddevPopulation", + "type": { + "kind": "OBJECT", + "name": "UtilityAccountStatementRollupStddevPopulationAggregates", + "ofType": null + } + }, + { + "args": [], + "name": "varianceSample", + "type": { + "kind": "OBJECT", + "name": "UtilityAccountStatementRollupVarianceSampleAggregates", + "ofType": null + } + }, + { + "args": [], + "name": "variancePopulation", + "type": { + "kind": "OBJECT", + "name": "UtilityAccountStatementRollupVariancePopulationAggregates", + "ofType": null + } + }, + { + "args": [], + "name": "distinct", + "type": { + "kind": "OBJECT", + "name": "UtilityAccountStatementRollupDistinctAggregates", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityAccountStatementRollupAggregates", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "utilityAccountId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + { + "args": [], + "name": "accountStatementId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + { + "args": [], + "name": "statementYear", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + { + "args": [], + "name": "statementMonth", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + { + "args": [], + "name": "billCost", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "billUsageCost", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "billDemandCost", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "fees", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "taxes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "credits", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "percentChange", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityAccountStatementRollupSumAggregates", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "utilityAccountId", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "accountLabel", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "provider", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "accountStatementId", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "statementYear", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "statementMonth", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "intervalStart", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "intervalEnd", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "billArrivalDate", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "billCost", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "billUsageCost", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "billDemandCost", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "fees", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "taxes", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "credits", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "percentChange", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "currencyCode", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "name": "serviceTypes", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityAccountStatementRollupDistinctCountAggregates", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "utilityAccountId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "accountStatementId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "statementYear", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "statementMonth", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "billCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billUsageCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billDemandCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "fees", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "taxes", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "credits", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "percentChange", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityAccountStatementRollupMinAggregates", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "utilityAccountId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "accountStatementId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "statementYear", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "statementMonth", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "billCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billUsageCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billDemandCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "fees", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "taxes", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "credits", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "percentChange", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityAccountStatementRollupMaxAggregates", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "utilityAccountId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "accountStatementId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "statementYear", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "statementMonth", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "billCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billUsageCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billDemandCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "fees", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "taxes", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "credits", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "percentChange", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityAccountStatementRollupAverageAggregates", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "utilityAccountId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "accountStatementId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "statementYear", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "statementMonth", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "billCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billUsageCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billDemandCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "fees", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "taxes", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "credits", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "percentChange", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityAccountStatementRollupStddevSampleAggregates", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "utilityAccountId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "accountStatementId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "statementYear", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "statementMonth", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "billCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billUsageCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billDemandCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "fees", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "taxes", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "credits", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "percentChange", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityAccountStatementRollupStddevPopulationAggregates", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "utilityAccountId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "accountStatementId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "statementYear", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "statementMonth", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "billCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billUsageCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billDemandCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "fees", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "taxes", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "credits", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "percentChange", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityAccountStatementRollupVarianceSampleAggregates", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "utilityAccountId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "accountStatementId", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "statementYear", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "statementMonth", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "args": [], + "name": "billCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billUsageCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "billDemandCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "fees", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "taxes", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "credits", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "name": "percentChange", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityAccountStatementRollupVariancePopulationAggregates", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "utilityAccountId", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "accountLabel", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "provider", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "accountStatementId", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "statementYear", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "statementMonth", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "intervalStart", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "args": [], + "name": "intervalEnd", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "args": [], + "name": "billArrivalDate", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "args": [], + "name": "billCost", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "billUsageCost", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "billDemandCost", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "fees", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "taxes", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "credits", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "percentChange", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "args": [], + "name": "currencyCode", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "serviceTypes", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityAccountStatementRollupDistinctAggregates", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "UTILITY_ACCOUNT_ID" + }, + { + "name": "UTILITY_ACCOUNT_ID_DISTINCT" + }, + { + "name": "ACCOUNT_LABEL" + }, + { + "name": "ACCOUNT_LABEL_DISTINCT" + }, + { + "name": "PROVIDER" + }, + { + "name": "PROVIDER_DISTINCT" + }, + { + "name": "ACCOUNT_STATEMENT_ID" + }, + { + "name": "ACCOUNT_STATEMENT_ID_DISTINCT" + }, + { + "name": "STATEMENT_YEAR" + }, + { + "name": "STATEMENT_YEAR_DISTINCT" + }, + { + "name": "STATEMENT_MONTH" + }, + { + "name": "STATEMENT_MONTH_DISTINCT" + }, + { + "name": "INTERVAL_START" + }, + { + "name": "INTERVAL_START_DISTINCT" + }, + { + "name": "INTERVAL_END" + }, + { + "name": "INTERVAL_END_DISTINCT" + }, + { + "name": "BILL_ARRIVAL_DATE" + }, + { + "name": "BILL_ARRIVAL_DATE_TRUNCATED_TO_HOUR" + }, + { + "name": "BILL_ARRIVAL_DATE_TRUNCATED_TO_DAY" + }, + { + "name": "BILL_ARRIVAL_DATE_DISTINCT" + }, + { + "name": "BILL_COST" + }, + { + "name": "BILL_COST_DISTINCT" + }, + { + "name": "BILL_USAGE_COST" + }, + { + "name": "BILL_USAGE_COST_DISTINCT" + }, + { + "name": "BILL_DEMAND_COST" + }, + { + "name": "BILL_DEMAND_COST_DISTINCT" + }, + { + "name": "FEES" + }, + { + "name": "FEES_DISTINCT" + }, + { + "name": "TAXES" + }, + { + "name": "TAXES_DISTINCT" + }, + { + "name": "CREDITS" + }, + { + "name": "CREDITS_DISTINCT" + }, + { + "name": "PERCENT_CHANGE" + }, + { + "name": "PERCENT_CHANGE_DISTINCT" + }, + { + "name": "CURRENCY_CODE" + }, + { + "name": "CURRENCY_CODE_DISTINCT" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "UtilityAccountStatementRollupsGroupBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "AND", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountStatementRollupsHavingInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "OR", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountStatementRollupsHavingInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "sum", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountStatementRollupsHavingSumInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "distinctCount", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountStatementRollupsHavingDistinctCountInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "min", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountStatementRollupsHavingMinInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "max", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountStatementRollupsHavingMaxInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "average", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountStatementRollupsHavingAverageInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "stddevSample", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountStatementRollupsHavingStddevSampleInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "stddevPopulation", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountStatementRollupsHavingStddevPopulationInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "varianceSample", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountStatementRollupsHavingVarianceSampleInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "variancePopulation", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountStatementRollupsHavingVariancePopulationInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "distinct", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountStatementRollupsHavingDistinctInput", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityAccountStatementRollupsHavingInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "utilityAccountId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementYear", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementMonth", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "intervalStart", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "intervalEnd", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billArrivalDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsageCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemandCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "fees", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "taxes", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "credits", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "percentChange", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityAccountStatementRollupsHavingSumInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "utilityAccountId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementYear", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementMonth", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "intervalStart", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "intervalEnd", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billArrivalDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsageCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemandCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "fees", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "taxes", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "credits", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "percentChange", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityAccountStatementRollupsHavingDistinctCountInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "utilityAccountId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementYear", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementMonth", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "intervalStart", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "intervalEnd", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billArrivalDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsageCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemandCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "fees", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "taxes", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "credits", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "percentChange", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityAccountStatementRollupsHavingMinInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "utilityAccountId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementYear", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementMonth", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "intervalStart", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "intervalEnd", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billArrivalDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsageCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemandCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "fees", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "taxes", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "credits", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "percentChange", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityAccountStatementRollupsHavingMaxInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "utilityAccountId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementYear", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementMonth", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "intervalStart", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "intervalEnd", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billArrivalDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsageCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemandCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "fees", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "taxes", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "credits", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "percentChange", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityAccountStatementRollupsHavingAverageInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "utilityAccountId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementYear", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementMonth", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "intervalStart", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "intervalEnd", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billArrivalDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsageCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemandCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "fees", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "taxes", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "credits", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "percentChange", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityAccountStatementRollupsHavingStddevSampleInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "utilityAccountId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementYear", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementMonth", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "intervalStart", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "intervalEnd", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billArrivalDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsageCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemandCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "fees", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "taxes", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "credits", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "percentChange", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityAccountStatementRollupsHavingStddevPopulationInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "utilityAccountId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementYear", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementMonth", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "intervalStart", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "intervalEnd", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billArrivalDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsageCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemandCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "fees", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "taxes", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "credits", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "percentChange", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityAccountStatementRollupsHavingVarianceSampleInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "utilityAccountId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementYear", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementMonth", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "intervalStart", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "intervalEnd", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billArrivalDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsageCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemandCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "fees", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "taxes", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "credits", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "percentChange", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityAccountStatementRollupsHavingVariancePopulationInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "utilityAccountId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementYear", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementMonth", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "intervalStart", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "intervalEnd", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billArrivalDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingDatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsageCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemandCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "fees", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "taxes", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "credits", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "percentChange", + "type": { + "kind": "INPUT_OBJECT", + "name": "HavingFloatFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityAccountStatementRollupsHavingDistinctInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "utilityAccountId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountLabel", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "provider", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementYear", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementMonth", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "intervalStart", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "intervalEnd", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billArrivalDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsageCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemandCost", + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "fees", + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "taxes", + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "credits", + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "percentChange", + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "currencyCode", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "serviceTypes", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterServiceTypeListFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountStatementRollupFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountStatementRollupFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountStatementRollupFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityAccountStatementRollupFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "isNull", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "equalTo", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterServiceType", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "notEqualTo", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterServiceType", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "distinctFrom", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterServiceType", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "notDistinctFrom", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterServiceType", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "lessThan", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterServiceType", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "lessThanOrEqualTo", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterServiceType", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "greaterThan", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterServiceType", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "greaterThanOrEqualTo", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterServiceType", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "contains", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterServiceType", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "containedBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterServiceType", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "overlaps", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterServiceType", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "anyEqualTo", + "type": { + "kind": "ENUM", + "name": "UtilityMeterServiceType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "anyNotEqualTo", + "type": { + "kind": "ENUM", + "name": "UtilityMeterServiceType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "anyLessThan", + "type": { + "kind": "ENUM", + "name": "UtilityMeterServiceType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "anyLessThanOrEqualTo", + "type": { + "kind": "ENUM", + "name": "UtilityMeterServiceType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "anyGreaterThan", + "type": { + "kind": "ENUM", + "name": "UtilityMeterServiceType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "anyGreaterThanOrEqualTo", + "type": { + "kind": "ENUM", + "name": "UtilityMeterServiceType", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterServiceTypeListFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityAccountStatement", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityAccountStatementsEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityAccountStatementsConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "utilityAccountId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "accountLabel", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "provider", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "accountStatementId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "statementYear", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "statementMonth", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "intervalStart", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "args": [], + "name": "intervalEnd", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "args": [], + "name": "currencyCode", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "billArrivalDate", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "args": [], + "name": "utilityAccount", + "type": { + "kind": "OBJECT", + "name": "UtilityAccount", + "ofType": null + } + }, + { + "args": [], + "name": "accountStatement", + "type": { + "kind": "OBJECT", + "name": "AccountStatement", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "UtilityAccountStatement", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityAccountStatement", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityAccountStatementsEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "utilityAccountId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountLabel", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "provider", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementYear", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementMonth", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "intervalStart", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "intervalEnd", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "currencyCode", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billArrivalDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountStatementFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountStatementFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountStatementFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityAccountStatementFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "sourceId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "MetricLabel", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityAccount", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityUtilityAccountsByUtilityMeterFacilityIdAndUtilityAccountIdManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilityUtilityAccountsByUtilityMeterFacilityIdAndUtilityAccountIdManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityAccount", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMetersOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterFilter", + "ofType": null + } + } + ], + "name": "utilityMeters", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMetersConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilityUtilityAccountsByUtilityMeterFacilityIdAndUtilityAccountIdManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "BuildingAreaType", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityBuildingAreaTypesByBuildingAreaFacilityIdAndBuildingAreaTypeIdManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilityBuildingAreaTypesByBuildingAreaFacilityIdAndBuildingAreaTypeIdManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "BuildingAreaType", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "BuildingAreasOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "BuildingAreaCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "BuildingAreaFilter", + "ofType": null + } + } + ], + "name": "buildingAreas", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "BuildingAreasConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilityBuildingAreaTypesByBuildingAreaFacilityIdAndBuildingAreaTypeIdManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "TYPE_ASC" + }, + { + "name": "TYPE_DESC" + }, + { + "name": "DESCRIPTION_ASC" + }, + { + "name": "DESCRIPTION_DESC" + }, + { + "name": "METADATA_ASC" + }, + { + "name": "METADATA_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "BuildingAreaTypesOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "metadata", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "BuildingAreaTypeCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "type", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "metadata", + "type": { + "kind": "INPUT_OBJECT", + "name": "JSONFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BuildingAreaTypeFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BuildingAreaTypeFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "BuildingAreaTypeFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "BuildingAreaTypeFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MachineUser", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityMachineUsersByComponentFacilityIdAndMachineUserIdManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilityMachineUsersByComponentFacilityIdAndMachineUserIdManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MachineUser", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ComponentsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ComponentCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ComponentFilter", + "ofType": null + } + } + ], + "name": "components", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ComponentsConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilityMachineUsersByComponentFacilityIdAndMachineUserIdManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "ID_ASC" + }, + { + "name": "ID_DESC" + }, + { + "name": "DESCRIPTION_ASC" + }, + { + "name": "DESCRIPTION_DESC" + }, + { + "name": "CREATED_BY_ASC" + }, + { + "name": "CREATED_BY_DESC" + }, + { + "name": "CREATED_AT_ASC" + }, + { + "name": "CREATED_AT_DESC" + }, + { + "name": "UPDATED_AT_ASC" + }, + { + "name": "UPDATED_AT_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "MachineUsersOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdBy", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "MachineUserCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EventType", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityEventTypesByEventFacilityIdAndTypeManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilityEventTypesByEventFacilityIdAndTypeManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EventType", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "EventsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "EventCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "EventFilter", + "ofType": null + } + } + ], + "name": "eventsByType", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EventsConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilityEventTypesByEventFacilityIdAndTypeManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DataSource", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityDataSourcesManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilityDataSourcesManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DataSource", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilityDataSourcesManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "NAME_ASC" + }, + { + "name": "NAME_DESC" + }, + { + "name": "DESCRIPTION_ASC" + }, + { + "name": "DESCRIPTION_DESC" + }, + { + "name": "CREATED_AT_ASC" + }, + { + "name": "CREATED_AT_DESC" + }, + { + "name": "UPDATED_AT_ASC" + }, + { + "name": "UPDATED_AT_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "DataSourcesOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DataSourceCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DataSourceFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DataSourceFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "DataSourceFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DataSourceFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityGroup", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityFacilityGroupsManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilityFacilityGroupsManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityGroup", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilityFacilityGroupsManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectType", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityProjectTypesByProjectFacilityIdAndProjectTypeIdManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilityProjectTypesByProjectFacilityIdAndProjectTypeIdManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectType", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFilter", + "ofType": null + } + } + ], + "name": "projects", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectsConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilityProjectTypesByProjectFacilityIdAndProjectTypeIdManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Program", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityProgramsByProjectFacilityIdAndProgramIdManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilityProgramsByProjectFacilityIdAndProgramIdManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Program", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFilter", + "ofType": null + } + } + ], + "name": "projects", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectsConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilityProgramsByProjectFacilityIdAndProgramIdManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityAccount", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityUtilityAccountsByUtilityMeterStatementRollupFacilityIdAndUtilityAccountIdManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilityUtilityAccountsByUtilityMeterStatementRollupFacilityIdAndUtilityAccountIdManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityAccount", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterStatementRollupsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupFilter", + "ofType": null + } + } + ], + "name": "utilityMeterStatementRollups", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeterStatementRollupsConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilityUtilityAccountsByUtilityMeterStatementRollupFacilityIdAndUtilityAccountIdManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeter", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityUtilityMetersByUtilityMeterStatementRollupFacilityIdAndUtilityMeterIdManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilityUtilityMetersByUtilityMeterStatementRollupFacilityIdAndUtilityMeterIdManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeter", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterStatementRollupsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupFilter", + "ofType": null + } + } + ], + "name": "utilityMeterStatementRollups", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeterStatementRollupsConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilityUtilityMetersByUtilityMeterStatementRollupFacilityIdAndUtilityMeterIdManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityAccount", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityUtilityAccountsByUtilityMeterStatementFacilityIdAndUtilityAccountIdManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilityUtilityAccountsByUtilityMeterStatementFacilityIdAndUtilityAccountIdManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityAccount", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterStatementsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementFilter", + "ofType": null + } + } + ], + "name": "utilityMeterStatements", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeterStatementsConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilityUtilityAccountsByUtilityMeterStatementFacilityIdAndUtilityAccountIdManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeter", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityUtilityMetersByUtilityMeterStatementFacilityIdAndUtilityMeterIdManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilityUtilityMetersByUtilityMeterStatementFacilityIdAndUtilityMeterIdManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeter", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterStatementsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementFilter", + "ofType": null + } + } + ], + "name": "utilityMeterStatements", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeterStatementsConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilityUtilityMetersByUtilityMeterStatementFacilityIdAndUtilityMeterIdManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AccountStatement", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityAccountStatementsByUtilityMeterStatementFacilityIdAndAccountStatementIdManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilityAccountStatementsByUtilityMeterStatementFacilityIdAndAccountStatementIdManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AccountStatement", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterStatementsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementFilter", + "ofType": null + } + } + ], + "name": "utilityMeterStatements", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeterStatementsConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FacilityAccountStatementsByUtilityMeterStatementFacilityIdAndAccountStatementIdManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MeterStatement", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MeterStatementsEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "MeterStatementsConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MeterStatement", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "MeterStatementsEdge", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "ID_ASC" + }, + { + "name": "ID_DESC" + }, + { + "name": "UTILITY_METER_ID_ASC" + }, + { + "name": "UTILITY_METER_ID_DESC" + }, + { + "name": "ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "INTERVAL_START_ASC" + }, + { + "name": "INTERVAL_START_DESC" + }, + { + "name": "INTERVAL_END_ASC" + }, + { + "name": "INTERVAL_END_DESC" + }, + { + "name": "STATEMENT_DATE_ASC" + }, + { + "name": "STATEMENT_DATE_DESC" + }, + { + "name": "INTEGRATION_KEY_ASC" + }, + { + "name": "INTEGRATION_KEY_DESC" + }, + { + "name": "PDF_LINK_ASC" + }, + { + "name": "PDF_LINK_DESC" + }, + { + "name": "IS_VALIDATED_ASC" + }, + { + "name": "IS_VALIDATED_DESC" + }, + { + "name": "NORMALIZED_CURRENCY_CODE_ASC" + }, + { + "name": "NORMALIZED_CURRENCY_CODE_DESC" + }, + { + "name": "CURRENCY_CODE_ASC" + }, + { + "name": "CURRENCY_CODE_DESC" + }, + { + "name": "OVERRIDE_CURRENCY_CODE_ASC" + }, + { + "name": "OVERRIDE_CURRENCY_CODE_DESC" + }, + { + "name": "PRIMARY_USAGE_UNITS_ASC" + }, + { + "name": "PRIMARY_USAGE_UNITS_DESC" + }, + { + "name": "PRIMARY_DEMAND_UNITS_ASC" + }, + { + "name": "PRIMARY_DEMAND_UNITS_DESC" + }, + { + "name": "OVERRIDE_PRIMARY_USAGE_UNITS_ASC" + }, + { + "name": "OVERRIDE_PRIMARY_USAGE_UNITS_DESC" + }, + { + "name": "OVERRIDE_PRIMARY_DEMAND_UNITS_ASC" + }, + { + "name": "OVERRIDE_PRIMARY_DEMAND_UNITS_DESC" + }, + { + "name": "OVERRIDE_AT_ASC" + }, + { + "name": "OVERRIDE_AT_DESC" + }, + { + "name": "METADATA_ASC" + }, + { + "name": "METADATA_DESC" + }, + { + "name": "MANUAL_UPLOAD_ASC" + }, + { + "name": "MANUAL_UPLOAD_DESC" + }, + { + "name": "IS_ADJUSTMENT_ASC" + }, + { + "name": "IS_ADJUSTMENT_DESC" + }, + { + "name": "CREATED_AT_ASC" + }, + { + "name": "CREATED_AT_DESC" + }, + { + "name": "UPDATED_AT_ASC" + }, + { + "name": "UPDATED_AT_DESC" + }, + { + "name": "OVERRIDE_STATEMENT_YEAR_ASC" + }, + { + "name": "OVERRIDE_STATEMENT_YEAR_DESC" + }, + { + "name": "OVERRIDE_STATEMENT_MONTH_ASC" + }, + { + "name": "OVERRIDE_STATEMENT_MONTH_DESC" + }, + { + "name": "DELETED_AT_ASC" + }, + { + "name": "DELETED_AT_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "MeterStatementsOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityMeterId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "intervalStart", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "intervalEnd", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementDate", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "integrationKey", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "pdfLink", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "isValidated", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "normalizedCurrencyCode", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "overrideAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "metadata", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "manualUpload", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "isAdjustment", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "overrideStatementYear", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "overrideStatementMonth", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "MeterStatementCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "currencyCode", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "primaryUsageUnits", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "primaryDemandUnits", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityMeterId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "intervalStart", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "intervalEnd", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "integrationKey", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "pdfLink", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "isValidated", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "normalizedCurrencyCode", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "overrideAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "metadata", + "type": { + "kind": "INPUT_OBJECT", + "name": "JSONFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "manualUpload", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "isAdjustment", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "overrideStatementYear", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "overrideStatementMonth", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "deletedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "maxDemand", + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "normalizedTotalCharges", + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementMonth", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementYear", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "totalCharges", + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "totalUsage", + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MeterStatementFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MeterStatementFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "MeterStatementFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "MeterStatementFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMetersMissingStatementsRecord", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMetersMissingStatementEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityMetersMissingStatementsConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "statementDate", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "args": [], + "name": "statementYear", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "statementMonth", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "utilityMeterId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "facilityId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityMetersMissingStatementsRecord", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMetersMissingStatementsRecord", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityMetersMissingStatementEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "statementDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementYear", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementMonth", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityMeterId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UtilityMetersMissingStatementsRecordFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UtilityMetersMissingStatementsRecordFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMetersMissingStatementsRecordFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMetersMissingStatementsRecordFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AccountStatement", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeterAccountStatementsByMeterStatementUtilityMeterIdAndAccountStatementIdManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityMeterAccountStatementsByMeterStatementUtilityMeterIdAndAccountStatementIdManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AccountStatement", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MeterStatementsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "MeterStatementCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "MeterStatementFilter", + "ofType": null + } + } + ], + "name": "meterStatements", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MeterStatementsConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityMeterAccountStatementsByMeterStatementUtilityMeterIdAndAccountStatementIdManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeterFacilitiesByUtilityMeterStatementRollupUtilityMeterIdAndFacilityIdManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "aggregates", + "type": { + "kind": "OBJECT", + "name": "FacilityAggregates", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "groupBy", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilitiesGroupBy", + "ofType": null + } + } + } + } + }, + { + "defaultValue": null, + "name": "having", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilitiesHavingInput", + "ofType": null + } + } + ], + "name": "groupedAggregates", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityAggregates", + "ofType": null + } + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "from", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "to", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "SUM", + "name": "aggregation", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataAggregationMethod", + "ofType": null + } + } + }, + { + "defaultValue": "\"1 day\"", + "name": "window", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "samplingWindow", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "TIME_ASC", + "name": "orderBy", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataOrderBy", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "unit", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "unitGroup", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "name": "metricData", + "type": { + "kind": "OBJECT", + "name": "MetricDataConnection", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityMeterFacilitiesByUtilityMeterStatementRollupUtilityMeterIdAndFacilityIdManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterStatementRollupsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupFilter", + "ofType": null + } + } + ], + "name": "utilityMeterStatementRollups", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeterStatementRollupsConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityMeterFacilitiesByUtilityMeterStatementRollupUtilityMeterIdAndFacilityIdManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityAccount", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeterUtilityAccountsByUtilityMeterStatementRollupUtilityMeterIdAndUtilityAccountIdManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityMeterUtilityAccountsByUtilityMeterStatementRollupUtilityMeterIdAndUtilityAccountIdManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityAccount", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterStatementRollupsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupFilter", + "ofType": null + } + } + ], + "name": "utilityMeterStatementRollups", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeterStatementRollupsConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityMeterUtilityAccountsByUtilityMeterStatementRollupUtilityMeterIdAndUtilityAccountIdManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeterFacilitiesByUtilityMeterStatementUtilityMeterIdAndFacilityIdManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "aggregates", + "type": { + "kind": "OBJECT", + "name": "FacilityAggregates", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "groupBy", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilitiesGroupBy", + "ofType": null + } + } + } + } + }, + { + "defaultValue": null, + "name": "having", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilitiesHavingInput", + "ofType": null + } + } + ], + "name": "groupedAggregates", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityAggregates", + "ofType": null + } + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "from", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "to", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "SUM", + "name": "aggregation", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataAggregationMethod", + "ofType": null + } + } + }, + { + "defaultValue": "\"1 day\"", + "name": "window", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "samplingWindow", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "TIME_ASC", + "name": "orderBy", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataOrderBy", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "unit", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "unitGroup", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "name": "metricData", + "type": { + "kind": "OBJECT", + "name": "MetricDataConnection", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityMeterFacilitiesByUtilityMeterStatementUtilityMeterIdAndFacilityIdManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterStatementsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementFilter", + "ofType": null + } + } + ], + "name": "utilityMeterStatements", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeterStatementsConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityMeterFacilitiesByUtilityMeterStatementUtilityMeterIdAndFacilityIdManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityAccount", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeterUtilityAccountsByUtilityMeterStatementUtilityMeterIdAndUtilityAccountIdManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityMeterUtilityAccountsByUtilityMeterStatementUtilityMeterIdAndUtilityAccountIdManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityAccount", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterStatementsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementFilter", + "ofType": null + } + } + ], + "name": "utilityMeterStatements", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeterStatementsConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityMeterUtilityAccountsByUtilityMeterStatementUtilityMeterIdAndUtilityAccountIdManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AccountStatement", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeterAccountStatementsByUtilityMeterStatementUtilityMeterIdAndAccountStatementIdManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityMeterAccountStatementsByUtilityMeterStatementUtilityMeterIdAndAccountStatementIdManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AccountStatement", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterStatementsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementFilter", + "ofType": null + } + } + ], + "name": "utilityMeterStatements", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeterStatementsConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityMeterAccountStatementsByUtilityMeterStatementUtilityMeterIdAndAccountStatementIdManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeter", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityMetersEdge", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "ACCOUNT_LABEL_ASC" + }, + { + "name": "ACCOUNT_LABEL_DESC" + }, + { + "name": "PROVIDER_ASC" + }, + { + "name": "PROVIDER_DESC" + }, + { + "name": "ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "STATEMENT_YEAR_ASC" + }, + { + "name": "STATEMENT_YEAR_DESC" + }, + { + "name": "STATEMENT_MONTH_ASC" + }, + { + "name": "STATEMENT_MONTH_DESC" + }, + { + "name": "INTERVAL_START_ASC" + }, + { + "name": "INTERVAL_START_DESC" + }, + { + "name": "INTERVAL_END_ASC" + }, + { + "name": "INTERVAL_END_DESC" + }, + { + "name": "BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "BILL_COST_ASC" + }, + { + "name": "BILL_COST_DESC" + }, + { + "name": "BILL_USAGE_COST_ASC" + }, + { + "name": "BILL_USAGE_COST_DESC" + }, + { + "name": "BILL_DEMAND_COST_ASC" + }, + { + "name": "BILL_DEMAND_COST_DESC" + }, + { + "name": "FEES_ASC" + }, + { + "name": "FEES_DESC" + }, + { + "name": "TAXES_ASC" + }, + { + "name": "TAXES_DESC" + }, + { + "name": "CREDITS_ASC" + }, + { + "name": "CREDITS_DESC" + }, + { + "name": "PERCENT_CHANGE_ASC" + }, + { + "name": "PERCENT_CHANGE_DESC" + }, + { + "name": "CURRENCY_CODE_ASC" + }, + { + "name": "CURRENCY_CODE_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "UtilityAccountStatementRollupsOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "utilityAccountId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountLabel", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "provider", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementYear", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementMonth", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "intervalStart", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "intervalEnd", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billArrivalDate", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billUsageCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billDemandCost", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "fees", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "taxes", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "credits", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "percentChange", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "currencyCode", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityAccountStatementRollupCondition", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "UTILITY_ACCOUNT_ID_ASC" + }, + { + "name": "UTILITY_ACCOUNT_ID_DESC" + }, + { + "name": "ACCOUNT_LABEL_ASC" + }, + { + "name": "ACCOUNT_LABEL_DESC" + }, + { + "name": "PROVIDER_ASC" + }, + { + "name": "PROVIDER_DESC" + }, + { + "name": "ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "STATEMENT_YEAR_ASC" + }, + { + "name": "STATEMENT_YEAR_DESC" + }, + { + "name": "STATEMENT_MONTH_ASC" + }, + { + "name": "STATEMENT_MONTH_DESC" + }, + { + "name": "INTERVAL_START_ASC" + }, + { + "name": "INTERVAL_START_DESC" + }, + { + "name": "INTERVAL_END_ASC" + }, + { + "name": "INTERVAL_END_DESC" + }, + { + "name": "CURRENCY_CODE_ASC" + }, + { + "name": "CURRENCY_CODE_DESC" + }, + { + "name": "BILL_ARRIVAL_DATE_ASC" + }, + { + "name": "BILL_ARRIVAL_DATE_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "UtilityAccountStatementsOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "utilityAccountId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountLabel", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "provider", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementYear", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementMonth", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "intervalStart", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "intervalEnd", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "currencyCode", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "billArrivalDate", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityAccountStatementCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AccountMissingStatement", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AccountMissingStatementsEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "AccountMissingStatementsConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "utilityAccountId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "statementDate", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "args": [], + "name": "statementYear", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "statementMonth", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "metadata", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterFilter", + "ofType": null + } + } + ], + "name": "utilityMeters", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMetersConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "AccountMissingStatement", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AccountMissingStatement", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "AccountMissingStatementsEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "utilityAccountId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementYear", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementMonth", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "metadata", + "type": { + "kind": "INPUT_OBJECT", + "name": "JSONListFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AccountMissingStatementFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AccountMissingStatementFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountMissingStatementFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "AccountMissingStatementFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "isNull", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "equalTo", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "notEqualTo", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "distinctFrom", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "notDistinctFrom", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "lessThan", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "lessThanOrEqualTo", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "greaterThan", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "greaterThanOrEqualTo", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "contains", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "containedBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "overlaps", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "anyEqualTo", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "anyNotEqualTo", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "anyLessThan", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "anyLessThanOrEqualTo", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "anyGreaterThan", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "anyGreaterThanOrEqualTo", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "JSONListFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityAccountFacilitiesByUtilityMeterUtilityAccountIdAndFacilityIdManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "aggregates", + "type": { + "kind": "OBJECT", + "name": "FacilityAggregates", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "groupBy", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilitiesGroupBy", + "ofType": null + } + } + } + } + }, + { + "defaultValue": null, + "name": "having", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilitiesHavingInput", + "ofType": null + } + } + ], + "name": "groupedAggregates", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityAggregates", + "ofType": null + } + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "from", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "to", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "SUM", + "name": "aggregation", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataAggregationMethod", + "ofType": null + } + } + }, + { + "defaultValue": "\"1 day\"", + "name": "window", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "samplingWindow", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "TIME_ASC", + "name": "orderBy", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataOrderBy", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "unit", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "unitGroup", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "name": "metricData", + "type": { + "kind": "OBJECT", + "name": "MetricDataConnection", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityAccountFacilitiesByUtilityMeterUtilityAccountIdAndFacilityIdManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMetersOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterFilter", + "ofType": null + } + } + ], + "name": "utilityMeters", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMetersConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityAccountFacilitiesByUtilityMeterUtilityAccountIdAndFacilityIdManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityAccountFacilitiesByUtilityMeterStatementRollupUtilityAccountIdAndFacilityIdManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "aggregates", + "type": { + "kind": "OBJECT", + "name": "FacilityAggregates", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "groupBy", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilitiesGroupBy", + "ofType": null + } + } + } + } + }, + { + "defaultValue": null, + "name": "having", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilitiesHavingInput", + "ofType": null + } + } + ], + "name": "groupedAggregates", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityAggregates", + "ofType": null + } + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "from", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "to", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "SUM", + "name": "aggregation", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataAggregationMethod", + "ofType": null + } + } + }, + { + "defaultValue": "\"1 day\"", + "name": "window", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "samplingWindow", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "TIME_ASC", + "name": "orderBy", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataOrderBy", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "unit", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "unitGroup", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "name": "metricData", + "type": { + "kind": "OBJECT", + "name": "MetricDataConnection", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityAccountFacilitiesByUtilityMeterStatementRollupUtilityAccountIdAndFacilityIdManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterStatementRollupsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupFilter", + "ofType": null + } + } + ], + "name": "utilityMeterStatementRollups", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeterStatementRollupsConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityAccountFacilitiesByUtilityMeterStatementRollupUtilityAccountIdAndFacilityIdManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeter", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityAccountUtilityMetersByUtilityMeterStatementRollupUtilityAccountIdAndUtilityMeterIdManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityAccountUtilityMetersByUtilityMeterStatementRollupUtilityAccountIdAndUtilityMeterIdManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeter", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterStatementRollupsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementRollupFilter", + "ofType": null + } + } + ], + "name": "utilityMeterStatementRollups", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeterStatementRollupsConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityAccountUtilityMetersByUtilityMeterStatementRollupUtilityAccountIdAndUtilityMeterIdManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityAccountFacilitiesByUtilityMeterStatementUtilityAccountIdAndFacilityIdManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "aggregates", + "type": { + "kind": "OBJECT", + "name": "FacilityAggregates", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "groupBy", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilitiesGroupBy", + "ofType": null + } + } + } + } + }, + { + "defaultValue": null, + "name": "having", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilitiesHavingInput", + "ofType": null + } + } + ], + "name": "groupedAggregates", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityAggregates", + "ofType": null + } + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "from", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "to", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "SUM", + "name": "aggregation", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataAggregationMethod", + "ofType": null + } + } + }, + { + "defaultValue": "\"1 day\"", + "name": "window", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "samplingWindow", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "TIME_ASC", + "name": "orderBy", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataOrderBy", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "unit", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "unitGroup", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "name": "metricData", + "type": { + "kind": "OBJECT", + "name": "MetricDataConnection", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityAccountFacilitiesByUtilityMeterStatementUtilityAccountIdAndFacilityIdManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterStatementsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementFilter", + "ofType": null + } + } + ], + "name": "utilityMeterStatements", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeterStatementsConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityAccountFacilitiesByUtilityMeterStatementUtilityAccountIdAndFacilityIdManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeter", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityAccountUtilityMetersByUtilityMeterStatementUtilityAccountIdAndUtilityMeterIdManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityAccountUtilityMetersByUtilityMeterStatementUtilityAccountIdAndUtilityMeterIdManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeter", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterStatementsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementFilter", + "ofType": null + } + } + ], + "name": "utilityMeterStatements", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeterStatementsConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityAccountUtilityMetersByUtilityMeterStatementUtilityAccountIdAndUtilityMeterIdManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AccountStatement", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityAccountAccountStatementsByUtilityMeterStatementUtilityAccountIdAndAccountStatementIdManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityAccountAccountStatementsByUtilityMeterStatementUtilityAccountIdAndAccountStatementIdManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AccountStatement", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterStatementsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementFilter", + "ofType": null + } + } + ], + "name": "utilityMeterStatements", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeterStatementsConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityAccountAccountStatementsByUtilityMeterStatementUtilityAccountIdAndAccountStatementIdManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "ID_ASC" + }, + { + "name": "ID_DESC" + }, + { + "name": "ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "CATEGORY_ASC" + }, + { + "name": "CATEGORY_DESC" + }, + { + "name": "INTERVAL_START_ASC" + }, + { + "name": "INTERVAL_START_DESC" + }, + { + "name": "INTERVAL_END_ASC" + }, + { + "name": "INTERVAL_END_DESC" + }, + { + "name": "STATEMENT_DATE_ASC" + }, + { + "name": "STATEMENT_DATE_DESC" + }, + { + "name": "LABEL_ASC" + }, + { + "name": "LABEL_DESC" + }, + { + "name": "NORMALIZED_VALUE_ASC" + }, + { + "name": "NORMALIZED_VALUE_DESC" + }, + { + "name": "OVERRIDE_LABEL_ASC" + }, + { + "name": "OVERRIDE_LABEL_DESC" + }, + { + "name": "OVERRIDE_VALUE_ASC" + }, + { + "name": "OVERRIDE_VALUE_DESC" + }, + { + "name": "OVERRIDE_AT_ASC" + }, + { + "name": "OVERRIDE_AT_DESC" + }, + { + "name": "VALUE_ASC" + }, + { + "name": "VALUE_DESC" + }, + { + "name": "LINE_NUMBER_ASC" + }, + { + "name": "LINE_NUMBER_DESC" + }, + { + "name": "CREATED_AT_ASC" + }, + { + "name": "CREATED_AT_DESC" + }, + { + "name": "UPDATED_AT_ASC" + }, + { + "name": "UPDATED_AT_DESC" + }, + { + "name": "DELETED_AT_ASC" + }, + { + "name": "DELETED_AT_DESC" + }, + { + "name": "OVERRIDE_STATEMENT_YEAR_ASC" + }, + { + "name": "OVERRIDE_STATEMENT_YEAR_DESC" + }, + { + "name": "OVERRIDE_STATEMENT_MONTH_ASC" + }, + { + "name": "OVERRIDE_STATEMENT_MONTH_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "AccountChargesOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "category", + "type": { + "kind": "ENUM", + "name": "UtilityAccountChargeCategory", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "intervalStart", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "intervalEnd", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementDate", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "normalizedValue", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "overrideAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "lineNumber", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "deletedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "overrideStatementYear", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "overrideStatementMonth", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "AccountChargeCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "value", + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "category", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountChargeCategoryFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "intervalStart", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "intervalEnd", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementDate", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "normalizedValue", + "type": { + "kind": "INPUT_OBJECT", + "name": "FloatFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "overrideAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "lineNumber", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "deletedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "overrideStatementYear", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "overrideStatementMonth", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementMonth", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementYear", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AccountChargeFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AccountChargeFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountChargeFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "AccountChargeFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "isNull", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "equalTo", + "type": { + "kind": "ENUM", + "name": "UtilityAccountChargeCategory", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notEqualTo", + "type": { + "kind": "ENUM", + "name": "UtilityAccountChargeCategory", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "distinctFrom", + "type": { + "kind": "ENUM", + "name": "UtilityAccountChargeCategory", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notDistinctFrom", + "type": { + "kind": "ENUM", + "name": "UtilityAccountChargeCategory", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "in", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityAccountChargeCategory", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "notIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityAccountChargeCategory", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "lessThan", + "type": { + "kind": "ENUM", + "name": "UtilityAccountChargeCategory", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "lessThanOrEqualTo", + "type": { + "kind": "ENUM", + "name": "UtilityAccountChargeCategory", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThan", + "type": { + "kind": "ENUM", + "name": "UtilityAccountChargeCategory", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThanOrEqualTo", + "type": { + "kind": "ENUM", + "name": "UtilityAccountChargeCategory", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityAccountChargeCategoryFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AccountStatementHistory", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AccountStatementHistoriesEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "AccountStatementHistoriesConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "accountStatementId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "description", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "accountStatement", + "type": { + "kind": "OBJECT", + "name": "AccountStatement", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "AccountStatementHistory", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AccountStatementHistory", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "AccountStatementHistoriesEdge", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "ACCOUNT_STATEMENT_ID_ASC" + }, + { + "name": "ACCOUNT_STATEMENT_ID_DESC" + }, + { + "name": "DESCRIPTION_ASC" + }, + { + "name": "DESCRIPTION_DESC" + }, + { + "name": "CREATED_AT_ASC" + }, + { + "name": "CREATED_AT_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "AccountStatementHistoriesOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "AccountStatementHistoryCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AccountStatementHistoryFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AccountStatementHistoryFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountStatementHistoryFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "AccountStatementHistoryFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeter", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AccountStatementUtilityMetersByMeterStatementAccountStatementIdAndUtilityMeterIdManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "AccountStatementUtilityMetersByMeterStatementAccountStatementIdAndUtilityMeterIdManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeter", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MeterStatementsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "MeterStatementCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "MeterStatementFilter", + "ofType": null + } + } + ], + "name": "meterStatements", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MeterStatementsConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "AccountStatementUtilityMetersByMeterStatementAccountStatementIdAndUtilityMeterIdManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AccountStatementFacilitiesByUtilityMeterStatementAccountStatementIdAndFacilityIdManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "aggregates", + "type": { + "kind": "OBJECT", + "name": "FacilityAggregates", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "groupBy", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilitiesGroupBy", + "ofType": null + } + } + } + } + }, + { + "defaultValue": null, + "name": "having", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilitiesHavingInput", + "ofType": null + } + } + ], + "name": "groupedAggregates", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacilityAggregates", + "ofType": null + } + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "from", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "to", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "SUM", + "name": "aggregation", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataAggregationMethod", + "ofType": null + } + } + }, + { + "defaultValue": "\"1 day\"", + "name": "window", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "samplingWindow", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": "TIME_ASC", + "name": "orderBy", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDataOrderBy", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "unit", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "unitGroup", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "name": "metricData", + "type": { + "kind": "OBJECT", + "name": "MetricDataConnection", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "AccountStatementFacilitiesByUtilityMeterStatementAccountStatementIdAndFacilityIdManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterStatementsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementFilter", + "ofType": null + } + } + ], + "name": "utilityMeterStatements", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeterStatementsConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "AccountStatementFacilitiesByUtilityMeterStatementAccountStatementIdAndFacilityIdManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityAccount", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AccountStatementUtilityAccountsByUtilityMeterStatementAccountStatementIdAndUtilityAccountIdManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "AccountStatementUtilityAccountsByUtilityMeterStatementAccountStatementIdAndUtilityAccountIdManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityAccount", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterStatementsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementFilter", + "ofType": null + } + } + ], + "name": "utilityMeterStatements", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeterStatementsConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "AccountStatementUtilityAccountsByUtilityMeterStatementAccountStatementIdAndUtilityAccountIdManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeter", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AccountStatementUtilityMetersByUtilityMeterStatementAccountStatementIdAndUtilityMeterIdManyToManyEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "AccountStatementUtilityMetersByUtilityMeterStatementAccountStatementIdAndUtilityMeterIdManyToManyConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeter", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterStatementsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterStatementFilter", + "ofType": null + } + } + ], + "name": "utilityMeterStatements", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityMeterStatementsConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "AccountStatementUtilityMetersByUtilityMeterStatementAccountStatementIdAndUtilityMeterIdManyToManyEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AccountCharge", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "AccountChargesEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "BalancingAuthority", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "BalancingAuthoritiesEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "BalancingAuthoritiesConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "slug", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "args": [], + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "BalancingAuthority", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "BalancingAuthority", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "BalancingAuthoritiesEdge", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "SLUG_ASC" + }, + { + "name": "SLUG_DESC" + }, + { + "name": "CREATED_AT_ASC" + }, + { + "name": "CREATED_AT_DESC" + }, + { + "name": "UPDATED_AT_ASC" + }, + { + "name": "UPDATED_AT_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "BalancingAuthoritiesOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "slug", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "BalancingAuthorityCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "slug", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BalancingAuthorityFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BalancingAuthorityFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "BalancingAuthorityFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "BalancingAuthorityFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "BuildingAreaType", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "BuildingAreaTypesEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "BuildingAreaTypesConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "BuildingAreaType", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "BuildingAreaTypesEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DataSource", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DataSourcesEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DataSourcesConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DataSource", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DataSourcesEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Dependency", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DependenciesEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DependenciesConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + { + "args": [], + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "type", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "path", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "Dependency", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Dependency", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DependenciesEdge", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "ID_ASC" + }, + { + "name": "ID_DESC" + }, + { + "name": "NAME_ASC" + }, + { + "name": "NAME_DESC" + }, + { + "name": "TYPE_ASC" + }, + { + "name": "TYPE_DESC" + }, + { + "name": "PATH_ASC" + }, + { + "name": "PATH_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "DependenciesOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "path", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DependencyCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "BigIntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "type", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DependencyFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DependencyFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "DependencyFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DependencyFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FieldGroup", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FieldGroupsEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FieldGroupsConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FieldGroup", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "FieldGroupsEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MetricMetadatum", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MetricMetadataEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "MetricMetadataConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "humanLabel", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "isComposite", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "args": [], + "name": "isSparse", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "args": [], + "name": "isInternal", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "args": [], + "name": "dataType", + "type": { + "kind": "ENUM", + "name": "MetricDatatype", + "ofType": null + } + }, + { + "args": [], + "name": "table", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "unitDimension", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "unit", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "args": [], + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "args": [], + "name": "expression", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "MetricMetadatumFilter", + "ofType": null + } + } + ], + "name": "allDependencies", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MetricMetadataConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "MetricMetadatumFilter", + "ofType": null + } + } + ], + "name": "allDependents", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MetricMetadataConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "MetricMetadatumFilter", + "ofType": null + } + } + ], + "name": "dependencies", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MetricMetadataConnection", + "ofType": null + } + } + }, + { + "args": [], + "name": "dependencyList", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "MetricMetadatumFilter", + "ofType": null + } + } + ], + "name": "dependents", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MetricMetadataConnection", + "ofType": null + } + } + }, + { + "args": [], + "name": "dependentsList", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "MetricMetadatum", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "BOOLEAN" + }, + { + "name": "FLOAT" + }, + { + "name": "INT" + }, + { + "name": "LONG" + }, + { + "name": "NUMERIC" + }, + { + "name": "TEXT" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "MetricDatatype", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "humanLabel", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "isComposite", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "isSparse", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "isInternal", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "dataType", + "type": { + "kind": "INPUT_OBJECT", + "name": "MetricDatatypeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "table", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "unitDimension", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "unit", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "expression", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "dependencyList", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringListFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "dependentsList", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringListFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MetricMetadatumFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MetricMetadatumFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "MetricMetadatumFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "MetricMetadatumFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "isNull", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "equalTo", + "type": { + "kind": "ENUM", + "name": "MetricDatatype", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notEqualTo", + "type": { + "kind": "ENUM", + "name": "MetricDatatype", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "distinctFrom", + "type": { + "kind": "ENUM", + "name": "MetricDatatype", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "notDistinctFrom", + "type": { + "kind": "ENUM", + "name": "MetricDatatype", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "in", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDatatype", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "notIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricDatatype", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "lessThan", + "type": { + "kind": "ENUM", + "name": "MetricDatatype", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "lessThanOrEqualTo", + "type": { + "kind": "ENUM", + "name": "MetricDatatype", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThan", + "type": { + "kind": "ENUM", + "name": "MetricDatatype", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "greaterThanOrEqualTo", + "type": { + "kind": "ENUM", + "name": "MetricDatatype", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "MetricDatatypeFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MetricMetadatum", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "MetricMetadataEdge", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "LABEL_ASC" + }, + { + "name": "LABEL_DESC" + }, + { + "name": "HUMAN_LABEL_ASC" + }, + { + "name": "HUMAN_LABEL_DESC" + }, + { + "name": "IS_COMPOSITE_ASC" + }, + { + "name": "IS_COMPOSITE_DESC" + }, + { + "name": "IS_SPARSE_ASC" + }, + { + "name": "IS_SPARSE_DESC" + }, + { + "name": "IS_INTERNAL_ASC" + }, + { + "name": "IS_INTERNAL_DESC" + }, + { + "name": "DATA_TYPE_ASC" + }, + { + "name": "DATA_TYPE_DESC" + }, + { + "name": "TABLE_ASC" + }, + { + "name": "TABLE_DESC" + }, + { + "name": "UNIT_DIMENSION_ASC" + }, + { + "name": "UNIT_DIMENSION_DESC" + }, + { + "name": "UNIT_ASC" + }, + { + "name": "UNIT_DESC" + }, + { + "name": "CREATED_AT_ASC" + }, + { + "name": "CREATED_AT_DESC" + }, + { + "name": "UPDATED_AT_ASC" + }, + { + "name": "UPDATED_AT_DESC" + }, + { + "name": "EXPRESSION_ASC" + }, + { + "name": "EXPRESSION_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "MetricMetadataOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "humanLabel", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "isComposite", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "isSparse", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "isInternal", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "dataType", + "type": { + "kind": "ENUM", + "name": "MetricDatatype", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "table", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "unitDimension", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "unit", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "expression", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "MetricMetadatumCondition", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "ID_ASC" + }, + { + "name": "ID_DESC" + }, + { + "name": "TYPE_ASC" + }, + { + "name": "TYPE_DESC" + }, + { + "name": "DESCRIPTION_ASC" + }, + { + "name": "DESCRIPTION_DESC" + }, + { + "name": "OWNER_ID_ASC" + }, + { + "name": "OWNER_ID_DESC" + }, + { + "name": "CREATED_AT_ASC" + }, + { + "name": "CREATED_AT_DESC" + }, + { + "name": "EXPIRES_AT_ASC" + }, + { + "name": "EXPIRES_AT_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "PlatformAccessTokensOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "type", + "type": { + "kind": "ENUM", + "name": "AccessTokenType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "ownerId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "expiresAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "PlatformAccessTokenCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectType", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectTypesEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ProjectTypesConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectType", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ProjectTypesEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ReportExecution", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ReportExecutionsEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ReportExecutionsConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "reportId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "status", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "filePath", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "errors", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "args": [], + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "args": [], + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "args": [], + "name": "actor", + "type": { + "kind": "OBJECT", + "name": "Actor", + "ofType": null + } + }, + { + "args": [], + "name": "report", + "type": { + "kind": "OBJECT", + "name": "Report", + "ofType": null + } + }, + { + "args": [], + "name": "reportUri", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "ReportExecution", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "description", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "args": [], + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "args": [], + "name": "jsonSchema", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ReportExecutionsOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ReportExecutionCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ReportExecutionFilter", + "ofType": null + } + } + ], + "name": "reportExecutions", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ReportExecutionsConnection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ReportQueriesOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "condition", + "type": { + "kind": "INPUT_OBJECT", + "name": "ReportQueryCondition", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ReportQueryFilter", + "ofType": null + } + } + ], + "name": "reportQueries", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ReportQueriesConnection", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "Report", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "ID_ASC" + }, + { + "name": "ID_DESC" + }, + { + "name": "REPORT_ID_ASC" + }, + { + "name": "REPORT_ID_DESC" + }, + { + "name": "STATUS_ASC" + }, + { + "name": "STATUS_DESC" + }, + { + "name": "FILE_PATH_ASC" + }, + { + "name": "FILE_PATH_DESC" + }, + { + "name": "ERRORS_ASC" + }, + { + "name": "ERRORS_DESC" + }, + { + "name": "CREATED_AT_ASC" + }, + { + "name": "CREATED_AT_DESC" + }, + { + "name": "UPDATED_AT_ASC" + }, + { + "name": "UPDATED_AT_DESC" + }, + { + "name": "ACTOR_ASC" + }, + { + "name": "ACTOR_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "ReportExecutionsOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "reportId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "status", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filePath", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "errors", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "actor", + "type": { + "kind": "INPUT_OBJECT", + "name": "ActorInput", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ReportExecutionCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "reportId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "status", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filePath", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "errors", + "type": { + "kind": "INPUT_OBJECT", + "name": "JSONFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "actor", + "type": { + "kind": "INPUT_OBJECT", + "name": "ActorFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ReportExecutionFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ReportExecutionFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "ReportExecutionFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ReportExecutionFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ReportQuery", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ReportQueriesEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ReportQueriesConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "reportId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "dbType", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "args": [], + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "args": [], + "name": "report", + "type": { + "kind": "OBJECT", + "name": "Report", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "ReportQuery", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ReportQuery", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ReportQueriesEdge", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "ID_ASC" + }, + { + "name": "ID_DESC" + }, + { + "name": "REPORT_ID_ASC" + }, + { + "name": "REPORT_ID_DESC" + }, + { + "name": "LABEL_ASC" + }, + { + "name": "LABEL_DESC" + }, + { + "name": "DESCRIPTION_ASC" + }, + { + "name": "DESCRIPTION_DESC" + }, + { + "name": "DB_TYPE_ASC" + }, + { + "name": "DB_TYPE_DESC" + }, + { + "name": "QUERY_ASC" + }, + { + "name": "QUERY_DESC" + }, + { + "name": "CREATED_AT_ASC" + }, + { + "name": "CREATED_AT_DESC" + }, + { + "name": "UPDATED_AT_ASC" + }, + { + "name": "UPDATED_AT_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "ReportQueriesOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "reportId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "dbType", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "query", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ReportQueryCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "reportId", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "dbType", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "query", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ReportQueryFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ReportQueryFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "ReportQueryFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ReportQueryFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ReportExecution", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ReportExecutionsEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Report", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ReportsEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ReportsConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Report", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ReportsEdge", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "ID_ASC" + }, + { + "name": "ID_DESC" + }, + { + "name": "LABEL_ASC" + }, + { + "name": "LABEL_DESC" + }, + { + "name": "DESCRIPTION_ASC" + }, + { + "name": "DESCRIPTION_DESC" + }, + { + "name": "CREATED_AT_ASC" + }, + { + "name": "CREATED_AT_DESC" + }, + { + "name": "UPDATED_AT_ASC" + }, + { + "name": "UPDATED_AT_DESC" + }, + { + "name": "JSON_SCHEMA_ASC" + }, + { + "name": "JSON_SCHEMA_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "ReportsOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "jsonSchema", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ReportCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "jsonSchema", + "type": { + "kind": "INPUT_OBJECT", + "name": "JSONFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ReportFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ReportFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "ReportFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ReportFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Timezone", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TimezonesEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "TimezonesConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Timezone", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "TimezonesEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UnitDimension", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UnitDimensionsEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UnitDimensionsConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UnitDimension", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UnitDimensionsEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UnitGroup", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UnitGroupsEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UnitGroupsConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UnitGroup", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UnitGroupsEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityProvider", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityProvidersEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityProvidersConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UtilityProvider", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UtilityProvidersEdge", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "ID_ASC" + }, + { + "name": "ID_DESC" + }, + { + "name": "NAME_ASC" + }, + { + "name": "NAME_DESC" + }, + { + "name": "CREATED_AT_ASC" + }, + { + "name": "CREATED_AT_DESC" + }, + { + "name": "UPDATED_AT_ASC" + }, + { + "name": "UPDATED_AT_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "UtilityProvidersOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityProviderCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UtilityProviderFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UtilityProviderFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityProviderFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityProviderFilter", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "VendorUser", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "VendorUsersEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "VendorUsersConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "VendorUser", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "VendorUsersEdge", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "ID_ASC" + }, + { + "name": "ID_DESC" + }, + { + "name": "EMAIL_ASC" + }, + { + "name": "EMAIL_DESC" + }, + { + "name": "FIRST_NAME_ASC" + }, + { + "name": "FIRST_NAME_DESC" + }, + { + "name": "LAST_NAME_ASC" + }, + { + "name": "LAST_NAME_DESC" + }, + { + "name": "COMPANY_ASC" + }, + { + "name": "COMPANY_DESC" + }, + { + "name": "CREATED_AT_ASC" + }, + { + "name": "CREATED_AT_DESC" + }, + { + "name": "UPDATED_AT_ASC" + }, + { + "name": "UPDATED_AT_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "VendorUsersOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "email", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "firstName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "lastName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "company", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "VendorUserCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "canWrite", + "type": { + "kind": "INPUT_OBJECT", + "name": "PermissionBooleanFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "email", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "firstName", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "lastName", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "company", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "INPUT_OBJECT", + "name": "DatetimeFilter", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "VendorUserFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "VendorUserFilter", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "VendorUserFilter", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "VendorUserFilter", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "NATURAL" + }, + { + "name": "PARENT_ID_ASC" + }, + { + "name": "PARENT_ID_DESC" + }, + { + "name": "CHILD_ID_ASC" + }, + { + "name": "CHILD_ID_DESC" + }, + { + "name": "START_TIME_ASC" + }, + { + "name": "START_TIME_DESC" + }, + { + "name": "END_TIME_ASC" + }, + { + "name": "END_TIME_DESC" + }, + { + "name": "PRIMARY_KEY_ASC" + }, + { + "name": "PRIMARY_KEY_DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "VirtualPointIntervalsOrderBy", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "parentId", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "childId", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startTime", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "endTime", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "VirtualPointIntervalCondition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "type", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "handler", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "event", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + }, + { + "args": [], + "name": "eventTypeByType", + "type": { + "kind": "OBJECT", + "name": "EventType", + "ofType": null + } + }, + { + "args": [], + "name": "eventHandlerByHandler", + "type": { + "kind": "OBJECT", + "name": "EventHandler", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "EventHandlerMetadatum", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "vendorUserId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "name": "machineUserId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "VendorUserMachineUser", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "statementDate", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "args": [], + "name": "statementYear", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "statementMonth", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DerivedStatementDate", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GroupingEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "GroupingsConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "GroupingEdge", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + } + }, + { + "args": [], + "name": "edges", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GroupingsWithFacilityEdge", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "GroupingsWithFacilitiesConnection", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "cursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "name": "node", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "GroupingsWithFacilityEdge", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "BAD_DATA_ERROR" + }, + { + "name": "DUPLICATE_ENTRY_ERROR" + }, + { + "name": "INVALID_INPUT_ERROR" + }, + { + "name": "INVALID_REPORT_PARAMETERS" + }, + { + "name": "NOT_FOUND_ERROR" + }, + { + "name": "SMS_VALIDATION_ERROR" + }, + { + "name": "UNAUTHORIZED_ERROR" + }, + { + "name": "UNKNOWN_ERROR" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "PlatformError", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "name": "sourceId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "SourceLabel", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "SCALAR", + "name": "Geometry", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "type", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AccessTokenType", + "ofType": null + } + } + }, + { + "args": [], + "name": "authorizationType", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "INTERFACE", + "name": "Identity", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "MachineIdentity", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "UserIdentity", + "ofType": null + } + ] + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "type", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AccessTokenType", + "ofType": null + } + } + }, + { + "args": [], + "name": "authorizationType", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "machineUser", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MachineUser", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Identity", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "MachineIdentity", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "type", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AccessTokenType", + "ofType": null + } + } + }, + { + "args": [], + "name": "authorizationType", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "user", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Identity", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "UserIdentity", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateAccountChargeInput", + "ofType": null + } + } + } + ], + "name": "createAccountCharge", + "type": { + "kind": "OBJECT", + "name": "CreateAccountChargePayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateAccountStatementHistoryInput", + "ofType": null + } + } + } + ], + "name": "createAccountStatementHistory", + "type": { + "kind": "OBJECT", + "name": "CreateAccountStatementHistoryPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateAccountStatementInput", + "ofType": null + } + } + } + ], + "name": "createAccountStatement", + "type": { + "kind": "OBJECT", + "name": "CreateAccountStatementPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateBalancingAuthorityInput", + "ofType": null + } + } + } + ], + "name": "createBalancingAuthority", + "type": { + "kind": "OBJECT", + "name": "CreateBalancingAuthorityPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateBuildingAreaTypeInput", + "ofType": null + } + } + } + ], + "name": "createBuildingAreaType", + "type": { + "kind": "OBJECT", + "name": "CreateBuildingAreaTypePayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateBuildingAreaInput", + "ofType": null + } + } + } + ], + "name": "createBuildingArea", + "type": { + "kind": "OBJECT", + "name": "CreateBuildingAreaPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateComponentInput", + "ofType": null + } + } + } + ], + "name": "createComponent", + "type": { + "kind": "OBJECT", + "name": "CreateComponentPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateControlEventLogInput", + "ofType": null + } + } + } + ], + "name": "createControlEventLog", + "type": { + "kind": "OBJECT", + "name": "CreateControlEventLogPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateControlEventInput", + "ofType": null + } + } + } + ], + "name": "createControlEvent", + "type": { + "kind": "OBJECT", + "name": "CreateControlEventPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateDataPointInput", + "ofType": null + } + } + } + ], + "name": "createDataPoint", + "type": { + "kind": "OBJECT", + "name": "CreateDataPointPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateDataSourceInput", + "ofType": null + } + } + } + ], + "name": "createDataSource", + "type": { + "kind": "OBJECT", + "name": "CreateDataSourcePayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateDependencyInput", + "ofType": null + } + } + } + ], + "name": "createDependency", + "type": { + "kind": "OBJECT", + "name": "CreateDependencyPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateFacilityInput", + "ofType": null + } + } + } + ], + "name": "createFacility", + "type": { + "kind": "OBJECT", + "name": "CreateFacilityPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateFacilityCommunicationInput", + "ofType": null + } + } + } + ], + "name": "createFacilityCommunication", + "type": { + "kind": "OBJECT", + "name": "CreateFacilityCommunicationPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateFacilityDataSourceInput", + "ofType": null + } + } + } + ], + "name": "createFacilityDataSource", + "type": { + "kind": "OBJECT", + "name": "CreateFacilityDataSourcePayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateFacilityGroupInput", + "ofType": null + } + } + } + ], + "name": "createFacilityGroup", + "type": { + "kind": "OBJECT", + "name": "CreateFacilityGroupPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateFacilityGroupsLinkerInput", + "ofType": null + } + } + } + ], + "name": "createFacilityGroupsLinker", + "type": { + "kind": "OBJECT", + "name": "CreateFacilityGroupsLinkerPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateFieldGroupInput", + "ofType": null + } + } + } + ], + "name": "createFieldGroup", + "type": { + "kind": "OBJECT", + "name": "CreateFieldGroupPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateMachineUserInput", + "ofType": null + } + } + } + ], + "name": "createMachineUser", + "type": { + "kind": "OBJECT", + "name": "CreateMachineUserPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateMeterChargeInput", + "ofType": null + } + } + } + ], + "name": "createMeterCharge", + "type": { + "kind": "OBJECT", + "name": "CreateMeterChargePayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateMeterStatementHistoryInput", + "ofType": null + } + } + } + ], + "name": "createMeterStatementHistory", + "type": { + "kind": "OBJECT", + "name": "CreateMeterStatementHistoryPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateMeterStatementInput", + "ofType": null + } + } + } + ], + "name": "createMeterStatement", + "type": { + "kind": "OBJECT", + "name": "CreateMeterStatementPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateMeterUsageInput", + "ofType": null + } + } + } + ], + "name": "createMeterUsage", + "type": { + "kind": "OBJECT", + "name": "CreateMeterUsagePayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateProgramInput", + "ofType": null + } + } + } + ], + "name": "createProgram", + "type": { + "kind": "OBJECT", + "name": "CreateProgramPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateProjectComponentInput", + "ofType": null + } + } + } + ], + "name": "createProjectComponent", + "type": { + "kind": "OBJECT", + "name": "CreateProjectComponentPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateProjectFieldInput", + "ofType": null + } + } + } + ], + "name": "createProjectField", + "type": { + "kind": "OBJECT", + "name": "CreateProjectFieldPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateProjectWatcherInput", + "ofType": null + } + } + } + ], + "name": "createProjectWatcher", + "type": { + "kind": "OBJECT", + "name": "CreateProjectWatcherPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateProjectInput", + "ofType": null + } + } + } + ], + "name": "createProject", + "type": { + "kind": "OBJECT", + "name": "CreateProjectPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateReportExecutionInput", + "ofType": null + } + } + } + ], + "name": "createReportExecution", + "type": { + "kind": "OBJECT", + "name": "CreateReportExecutionPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateSavingsEventInput", + "ofType": null + } + } + } + ], + "name": "createSavingsEvent", + "type": { + "kind": "OBJECT", + "name": "CreateSavingsEventPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateSuggestionActivityLogInput", + "ofType": null + } + } + } + ], + "name": "createSuggestionActivityLog", + "type": { + "kind": "OBJECT", + "name": "CreateSuggestionActivityLogPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateSuggestionControlEventInput", + "ofType": null + } + } + } + ], + "name": "createSuggestionControlEvent", + "type": { + "kind": "OBJECT", + "name": "CreateSuggestionControlEventPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateSuggestionInput", + "ofType": null + } + } + } + ], + "name": "createSuggestion", + "type": { + "kind": "OBJECT", + "name": "CreateSuggestionPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateUtilityAccountInput", + "ofType": null + } + } + } + ], + "name": "createUtilityAccount", + "type": { + "kind": "OBJECT", + "name": "CreateUtilityAccountPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateUtilityMeterInput", + "ofType": null + } + } + } + ], + "name": "createUtilityMeter", + "type": { + "kind": "OBJECT", + "name": "CreateUtilityMeterPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateUtilityProviderInput", + "ofType": null + } + } + } + ], + "name": "createUtilityProvider", + "type": { + "kind": "OBJECT", + "name": "CreateUtilityProviderPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateVendorUserMachineUserInput", + "ofType": null + } + } + } + ], + "name": "createVendorUserMachineUser", + "type": { + "kind": "OBJECT", + "name": "CreateVendorUserMachineUserPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateVendorUserInput", + "ofType": null + } + } + } + ], + "name": "createVendorUser", + "type": { + "kind": "OBJECT", + "name": "CreateVendorUserPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateVirtualPointIntervalInput", + "ofType": null + } + } + } + ], + "name": "createVirtualPointInterval", + "type": { + "kind": "OBJECT", + "name": "CreateVirtualPointIntervalPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateAccountChargeByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "updateAccountChargeByNodeId", + "type": { + "kind": "OBJECT", + "name": "UpdateAccountChargePayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateAccountChargeInput", + "ofType": null + } + } + } + ], + "name": "updateAccountCharge", + "type": { + "kind": "OBJECT", + "name": "UpdateAccountChargePayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateAccountStatementByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "updateAccountStatementByNodeId", + "type": { + "kind": "OBJECT", + "name": "UpdateAccountStatementPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateAccountStatementInput", + "ofType": null + } + } + } + ], + "name": "updateAccountStatement", + "type": { + "kind": "OBJECT", + "name": "UpdateAccountStatementPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateBuildingAreaTypeByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "updateBuildingAreaTypeByNodeId", + "type": { + "kind": "OBJECT", + "name": "UpdateBuildingAreaTypePayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateBuildingAreaTypeInput", + "ofType": null + } + } + } + ], + "name": "updateBuildingAreaType", + "type": { + "kind": "OBJECT", + "name": "UpdateBuildingAreaTypePayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateBuildingAreaByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "updateBuildingAreaByNodeId", + "type": { + "kind": "OBJECT", + "name": "UpdateBuildingAreaPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateBuildingAreaInput", + "ofType": null + } + } + } + ], + "name": "updateBuildingArea", + "type": { + "kind": "OBJECT", + "name": "UpdateBuildingAreaPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateBuildingAreaByFacilityIdAndLabelInput", + "ofType": null + } + } + } + ], + "name": "updateBuildingAreaByFacilityIdAndLabel", + "type": { + "kind": "OBJECT", + "name": "UpdateBuildingAreaPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateComponentByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "updateComponentByNodeId", + "type": { + "kind": "OBJECT", + "name": "UpdateComponentPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateComponentInput", + "ofType": null + } + } + } + ], + "name": "updateComponent", + "type": { + "kind": "OBJECT", + "name": "UpdateComponentPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateControlEventLogByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "updateControlEventLogByNodeId", + "type": { + "kind": "OBJECT", + "name": "UpdateControlEventLogPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateControlEventLogInput", + "ofType": null + } + } + } + ], + "name": "updateControlEventLog", + "type": { + "kind": "OBJECT", + "name": "UpdateControlEventLogPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateControlEventByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "updateControlEventByNodeId", + "type": { + "kind": "OBJECT", + "name": "UpdateControlEventPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateControlEventInput", + "ofType": null + } + } + } + ], + "name": "updateControlEvent", + "type": { + "kind": "OBJECT", + "name": "UpdateControlEventPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateDataPointByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "updateDataPointByNodeId", + "type": { + "kind": "OBJECT", + "name": "UpdateDataPointPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateDataPointInput", + "ofType": null + } + } + } + ], + "name": "updateDataPoint", + "type": { + "kind": "OBJECT", + "name": "UpdateDataPointPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateDataPointByDataSourceNameAndNameInput", + "ofType": null + } + } + } + ], + "name": "updateDataPointByDataSourceNameAndName", + "type": { + "kind": "OBJECT", + "name": "UpdateDataPointPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateDependencyByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "updateDependencyByNodeId", + "type": { + "kind": "OBJECT", + "name": "UpdateDependencyPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateDependencyInput", + "ofType": null + } + } + } + ], + "name": "updateDependency", + "type": { + "kind": "OBJECT", + "name": "UpdateDependencyPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateDependencyByPathInput", + "ofType": null + } + } + } + ], + "name": "updateDependencyByPath", + "type": { + "kind": "OBJECT", + "name": "UpdateDependencyPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateFacilityByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "updateFacilityByNodeId", + "type": { + "kind": "OBJECT", + "name": "UpdateFacilityPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateFacilityInput", + "ofType": null + } + } + } + ], + "name": "updateFacility", + "type": { + "kind": "OBJECT", + "name": "UpdateFacilityPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateFacilityBySlugInput", + "ofType": null + } + } + } + ], + "name": "updateFacilityBySlug", + "type": { + "kind": "OBJECT", + "name": "UpdateFacilityPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateFacilityGroupByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "updateFacilityGroupByNodeId", + "type": { + "kind": "OBJECT", + "name": "UpdateFacilityGroupPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateFacilityGroupInput", + "ofType": null + } + } + } + ], + "name": "updateFacilityGroup", + "type": { + "kind": "OBJECT", + "name": "UpdateFacilityGroupPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateFacilityGroupsLinkerByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "updateFacilityGroupsLinkerByNodeId", + "type": { + "kind": "OBJECT", + "name": "UpdateFacilityGroupsLinkerPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateFacilityGroupsLinkerInput", + "ofType": null + } + } + } + ], + "name": "updateFacilityGroupsLinker", + "type": { + "kind": "OBJECT", + "name": "UpdateFacilityGroupsLinkerPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateFieldGroupByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "updateFieldGroupByNodeId", + "type": { + "kind": "OBJECT", + "name": "UpdateFieldGroupPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateFieldGroupInput", + "ofType": null + } + } + } + ], + "name": "updateFieldGroup", + "type": { + "kind": "OBJECT", + "name": "UpdateFieldGroupPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateMachineUserByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "updateMachineUserByNodeId", + "type": { + "kind": "OBJECT", + "name": "UpdateMachineUserPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateMachineUserInput", + "ofType": null + } + } + } + ], + "name": "updateMachineUser", + "type": { + "kind": "OBJECT", + "name": "UpdateMachineUserPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateMeterChargeByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "updateMeterChargeByNodeId", + "type": { + "kind": "OBJECT", + "name": "UpdateMeterChargePayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateMeterChargeInput", + "ofType": null + } + } + } + ], + "name": "updateMeterCharge", + "type": { + "kind": "OBJECT", + "name": "UpdateMeterChargePayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateMeterStatementByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "updateMeterStatementByNodeId", + "type": { + "kind": "OBJECT", + "name": "UpdateMeterStatementPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateMeterStatementInput", + "ofType": null + } + } + } + ], + "name": "updateMeterStatement", + "type": { + "kind": "OBJECT", + "name": "UpdateMeterStatementPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateMeterUsageByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "updateMeterUsageByNodeId", + "type": { + "kind": "OBJECT", + "name": "UpdateMeterUsagePayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateMeterUsageInput", + "ofType": null + } + } + } + ], + "name": "updateMeterUsage", + "type": { + "kind": "OBJECT", + "name": "UpdateMeterUsagePayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateProgramByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "updateProgramByNodeId", + "type": { + "kind": "OBJECT", + "name": "UpdateProgramPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateProgramInput", + "ofType": null + } + } + } + ], + "name": "updateProgram", + "type": { + "kind": "OBJECT", + "name": "UpdateProgramPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateProgramByProjectTypeIdAndNameInput", + "ofType": null + } + } + } + ], + "name": "updateProgramByProjectTypeIdAndName", + "type": { + "kind": "OBJECT", + "name": "UpdateProgramPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectComponentByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "updateProjectComponentByNodeId", + "type": { + "kind": "OBJECT", + "name": "UpdateProjectComponentPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectComponentInput", + "ofType": null + } + } + } + ], + "name": "updateProjectComponent", + "type": { + "kind": "OBJECT", + "name": "UpdateProjectComponentPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectFieldByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "updateProjectFieldByNodeId", + "type": { + "kind": "OBJECT", + "name": "UpdateProjectFieldPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectFieldByProjectIdAndFieldIdInput", + "ofType": null + } + } + } + ], + "name": "updateProjectFieldByProjectIdAndFieldId", + "type": { + "kind": "OBJECT", + "name": "UpdateProjectFieldPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectFieldInput", + "ofType": null + } + } + } + ], + "name": "updateProjectField", + "type": { + "kind": "OBJECT", + "name": "UpdateProjectFieldPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectWatcherByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "updateProjectWatcherByNodeId", + "type": { + "kind": "OBJECT", + "name": "UpdateProjectWatcherPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectWatcherInput", + "ofType": null + } + } + } + ], + "name": "updateProjectWatcher", + "type": { + "kind": "OBJECT", + "name": "UpdateProjectWatcherPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "updateProjectByNodeId", + "type": { + "kind": "OBJECT", + "name": "UpdateProjectPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateProjectInput", + "ofType": null + } + } + } + ], + "name": "updateProject", + "type": { + "kind": "OBJECT", + "name": "UpdateProjectPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateReportExecutionByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "updateReportExecutionByNodeId", + "type": { + "kind": "OBJECT", + "name": "UpdateReportExecutionPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateReportExecutionInput", + "ofType": null + } + } + } + ], + "name": "updateReportExecution", + "type": { + "kind": "OBJECT", + "name": "UpdateReportExecutionPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateSavingsEventByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "updateSavingsEventByNodeId", + "type": { + "kind": "OBJECT", + "name": "UpdateSavingsEventPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateSavingsEventInput", + "ofType": null + } + } + } + ], + "name": "updateSavingsEvent", + "type": { + "kind": "OBJECT", + "name": "UpdateSavingsEventPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateSavingsEventByProjectIdAndStartTimeAndEndTimeInput", + "ofType": null + } + } + } + ], + "name": "updateSavingsEventByProjectIdAndStartTimeAndEndTime", + "type": { + "kind": "OBJECT", + "name": "UpdateSavingsEventPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateSuggestionControlEventByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "updateSuggestionControlEventByNodeId", + "type": { + "kind": "OBJECT", + "name": "UpdateSuggestionControlEventPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateSuggestionControlEventInput", + "ofType": null + } + } + } + ], + "name": "updateSuggestionControlEvent", + "type": { + "kind": "OBJECT", + "name": "UpdateSuggestionControlEventPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateSuggestionControlEventByControlEventIdInput", + "ofType": null + } + } + } + ], + "name": "updateSuggestionControlEventByControlEventId", + "type": { + "kind": "OBJECT", + "name": "UpdateSuggestionControlEventPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateSuggestionByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "updateSuggestionByNodeId", + "type": { + "kind": "OBJECT", + "name": "UpdateSuggestionPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateSuggestionInput", + "ofType": null + } + } + } + ], + "name": "updateSuggestion", + "type": { + "kind": "OBJECT", + "name": "UpdateSuggestionPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateUserByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "updateUserByNodeId", + "type": { + "kind": "OBJECT", + "name": "UpdateUserPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateUserInput", + "ofType": null + } + } + } + ], + "name": "updateUser", + "type": { + "kind": "OBJECT", + "name": "UpdateUserPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateUtilityAccountByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "updateUtilityAccountByNodeId", + "type": { + "kind": "OBJECT", + "name": "UpdateUtilityAccountPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateUtilityAccountInput", + "ofType": null + } + } + } + ], + "name": "updateUtilityAccount", + "type": { + "kind": "OBJECT", + "name": "UpdateUtilityAccountPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateUtilityMeterByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "updateUtilityMeterByNodeId", + "type": { + "kind": "OBJECT", + "name": "UpdateUtilityMeterPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateUtilityMeterInput", + "ofType": null + } + } + } + ], + "name": "updateUtilityMeter", + "type": { + "kind": "OBJECT", + "name": "UpdateUtilityMeterPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateUtilityProviderByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "updateUtilityProviderByNodeId", + "type": { + "kind": "OBJECT", + "name": "UpdateUtilityProviderPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateUtilityProviderInput", + "ofType": null + } + } + } + ], + "name": "updateUtilityProvider", + "type": { + "kind": "OBJECT", + "name": "UpdateUtilityProviderPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateUtilityProviderByNameInput", + "ofType": null + } + } + } + ], + "name": "updateUtilityProviderByName", + "type": { + "kind": "OBJECT", + "name": "UpdateUtilityProviderPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateVendorUserMachineUserByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "updateVendorUserMachineUserByNodeId", + "type": { + "kind": "OBJECT", + "name": "UpdateVendorUserMachineUserPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateVendorUserMachineUserInput", + "ofType": null + } + } + } + ], + "name": "updateVendorUserMachineUser", + "type": { + "kind": "OBJECT", + "name": "UpdateVendorUserMachineUserPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateVendorUserMachineUserByMachineUserIdInput", + "ofType": null + } + } + } + ], + "name": "updateVendorUserMachineUserByMachineUserId", + "type": { + "kind": "OBJECT", + "name": "UpdateVendorUserMachineUserPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateVendorUserByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "updateVendorUserByNodeId", + "type": { + "kind": "OBJECT", + "name": "UpdateVendorUserPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateVendorUserInput", + "ofType": null + } + } + } + ], + "name": "updateVendorUser", + "type": { + "kind": "OBJECT", + "name": "UpdateVendorUserPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateVendorUserByEmailInput", + "ofType": null + } + } + } + ], + "name": "updateVendorUserByEmail", + "type": { + "kind": "OBJECT", + "name": "UpdateVendorUserPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateVirtualPointIntervalByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "updateVirtualPointIntervalByNodeId", + "type": { + "kind": "OBJECT", + "name": "UpdateVirtualPointIntervalPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateVirtualPointIntervalInput", + "ofType": null + } + } + } + ], + "name": "updateVirtualPointInterval", + "type": { + "kind": "OBJECT", + "name": "UpdateVirtualPointIntervalPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteBuildingAreaTypeByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "deleteBuildingAreaTypeByNodeId", + "type": { + "kind": "OBJECT", + "name": "DeleteBuildingAreaTypePayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteBuildingAreaTypeInput", + "ofType": null + } + } + } + ], + "name": "deleteBuildingAreaType", + "type": { + "kind": "OBJECT", + "name": "DeleteBuildingAreaTypePayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteBuildingAreaByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "deleteBuildingAreaByNodeId", + "type": { + "kind": "OBJECT", + "name": "DeleteBuildingAreaPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteBuildingAreaInput", + "ofType": null + } + } + } + ], + "name": "deleteBuildingArea", + "type": { + "kind": "OBJECT", + "name": "DeleteBuildingAreaPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteBuildingAreaByFacilityIdAndLabelInput", + "ofType": null + } + } + } + ], + "name": "deleteBuildingAreaByFacilityIdAndLabel", + "type": { + "kind": "OBJECT", + "name": "DeleteBuildingAreaPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteComponentByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "deleteComponentByNodeId", + "type": { + "kind": "OBJECT", + "name": "DeleteComponentPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteComponentInput", + "ofType": null + } + } + } + ], + "name": "deleteComponent", + "type": { + "kind": "OBJECT", + "name": "DeleteComponentPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteControlEventLogByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "deleteControlEventLogByNodeId", + "type": { + "kind": "OBJECT", + "name": "DeleteControlEventLogPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteControlEventLogInput", + "ofType": null + } + } + } + ], + "name": "deleteControlEventLog", + "type": { + "kind": "OBJECT", + "name": "DeleteControlEventLogPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteControlEventByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "deleteControlEventByNodeId", + "type": { + "kind": "OBJECT", + "name": "DeleteControlEventPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteControlEventInput", + "ofType": null + } + } + } + ], + "name": "deleteControlEvent", + "type": { + "kind": "OBJECT", + "name": "DeleteControlEventPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteDataPointByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "deleteDataPointByNodeId", + "type": { + "kind": "OBJECT", + "name": "DeleteDataPointPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteDataPointInput", + "ofType": null + } + } + } + ], + "name": "deleteDataPoint", + "type": { + "kind": "OBJECT", + "name": "DeleteDataPointPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteDataPointByDataSourceNameAndNameInput", + "ofType": null + } + } + } + ], + "name": "deleteDataPointByDataSourceNameAndName", + "type": { + "kind": "OBJECT", + "name": "DeleteDataPointPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteDataSourceByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "deleteDataSourceByNodeId", + "type": { + "kind": "OBJECT", + "name": "DeleteDataSourcePayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteDataSourceInput", + "ofType": null + } + } + } + ], + "name": "deleteDataSource", + "type": { + "kind": "OBJECT", + "name": "DeleteDataSourcePayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteDependencyByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "deleteDependencyByNodeId", + "type": { + "kind": "OBJECT", + "name": "DeleteDependencyPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteDependencyInput", + "ofType": null + } + } + } + ], + "name": "deleteDependency", + "type": { + "kind": "OBJECT", + "name": "DeleteDependencyPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteDependencyByPathInput", + "ofType": null + } + } + } + ], + "name": "deleteDependencyByPath", + "type": { + "kind": "OBJECT", + "name": "DeleteDependencyPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteFacilityByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "deleteFacilityByNodeId", + "type": { + "kind": "OBJECT", + "name": "DeleteFacilityPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteFacilityInput", + "ofType": null + } + } + } + ], + "name": "deleteFacility", + "type": { + "kind": "OBJECT", + "name": "DeleteFacilityPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteFacilityBySlugInput", + "ofType": null + } + } + } + ], + "name": "deleteFacilityBySlug", + "type": { + "kind": "OBJECT", + "name": "DeleteFacilityPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteFacilityDataSourceByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "deleteFacilityDataSourceByNodeId", + "type": { + "kind": "OBJECT", + "name": "DeleteFacilityDataSourcePayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteFacilityDataSourceInput", + "ofType": null + } + } + } + ], + "name": "deleteFacilityDataSource", + "type": { + "kind": "OBJECT", + "name": "DeleteFacilityDataSourcePayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteFacilityGroupByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "deleteFacilityGroupByNodeId", + "type": { + "kind": "OBJECT", + "name": "DeleteFacilityGroupPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteFacilityGroupInput", + "ofType": null + } + } + } + ], + "name": "deleteFacilityGroup", + "type": { + "kind": "OBJECT", + "name": "DeleteFacilityGroupPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteFacilityGroupsLinkerByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "deleteFacilityGroupsLinkerByNodeId", + "type": { + "kind": "OBJECT", + "name": "DeleteFacilityGroupsLinkerPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteFacilityGroupsLinkerInput", + "ofType": null + } + } + } + ], + "name": "deleteFacilityGroupsLinker", + "type": { + "kind": "OBJECT", + "name": "DeleteFacilityGroupsLinkerPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteFieldGroupByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "deleteFieldGroupByNodeId", + "type": { + "kind": "OBJECT", + "name": "DeleteFieldGroupPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteFieldGroupInput", + "ofType": null + } + } + } + ], + "name": "deleteFieldGroup", + "type": { + "kind": "OBJECT", + "name": "DeleteFieldGroupPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteMachineUserByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "deleteMachineUserByNodeId", + "type": { + "kind": "OBJECT", + "name": "DeleteMachineUserPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteMachineUserInput", + "ofType": null + } + } + } + ], + "name": "deleteMachineUser", + "type": { + "kind": "OBJECT", + "name": "DeleteMachineUserPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteProgramByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "deleteProgramByNodeId", + "type": { + "kind": "OBJECT", + "name": "DeleteProgramPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteProgramInput", + "ofType": null + } + } + } + ], + "name": "deleteProgram", + "type": { + "kind": "OBJECT", + "name": "DeleteProgramPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteProgramByProjectTypeIdAndNameInput", + "ofType": null + } + } + } + ], + "name": "deleteProgramByProjectTypeIdAndName", + "type": { + "kind": "OBJECT", + "name": "DeleteProgramPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteProjectComponentByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "deleteProjectComponentByNodeId", + "type": { + "kind": "OBJECT", + "name": "DeleteProjectComponentPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteProjectComponentInput", + "ofType": null + } + } + } + ], + "name": "deleteProjectComponent", + "type": { + "kind": "OBJECT", + "name": "DeleteProjectComponentPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteProjectFieldByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "deleteProjectFieldByNodeId", + "type": { + "kind": "OBJECT", + "name": "DeleteProjectFieldPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteProjectFieldByProjectIdAndFieldIdInput", + "ofType": null + } + } + } + ], + "name": "deleteProjectFieldByProjectIdAndFieldId", + "type": { + "kind": "OBJECT", + "name": "DeleteProjectFieldPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteProjectFieldInput", + "ofType": null + } + } + } + ], + "name": "deleteProjectField", + "type": { + "kind": "OBJECT", + "name": "DeleteProjectFieldPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteProjectWatcherByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "deleteProjectWatcherByNodeId", + "type": { + "kind": "OBJECT", + "name": "DeleteProjectWatcherPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteProjectWatcherInput", + "ofType": null + } + } + } + ], + "name": "deleteProjectWatcher", + "type": { + "kind": "OBJECT", + "name": "DeleteProjectWatcherPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteProjectByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "deleteProjectByNodeId", + "type": { + "kind": "OBJECT", + "name": "DeleteProjectPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteProjectInput", + "ofType": null + } + } + } + ], + "name": "deleteProject", + "type": { + "kind": "OBJECT", + "name": "DeleteProjectPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteReportExecutionByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "deleteReportExecutionByNodeId", + "type": { + "kind": "OBJECT", + "name": "DeleteReportExecutionPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteReportExecutionInput", + "ofType": null + } + } + } + ], + "name": "deleteReportExecution", + "type": { + "kind": "OBJECT", + "name": "DeleteReportExecutionPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteSavingsEventByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "deleteSavingsEventByNodeId", + "type": { + "kind": "OBJECT", + "name": "DeleteSavingsEventPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteSavingsEventInput", + "ofType": null + } + } + } + ], + "name": "deleteSavingsEvent", + "type": { + "kind": "OBJECT", + "name": "DeleteSavingsEventPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteSavingsEventByProjectIdAndStartTimeAndEndTimeInput", + "ofType": null + } + } + } + ], + "name": "deleteSavingsEventByProjectIdAndStartTimeAndEndTime", + "type": { + "kind": "OBJECT", + "name": "DeleteSavingsEventPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteSuggestionControlEventByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "deleteSuggestionControlEventByNodeId", + "type": { + "kind": "OBJECT", + "name": "DeleteSuggestionControlEventPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteSuggestionControlEventInput", + "ofType": null + } + } + } + ], + "name": "deleteSuggestionControlEvent", + "type": { + "kind": "OBJECT", + "name": "DeleteSuggestionControlEventPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteSuggestionControlEventByControlEventIdInput", + "ofType": null + } + } + } + ], + "name": "deleteSuggestionControlEventByControlEventId", + "type": { + "kind": "OBJECT", + "name": "DeleteSuggestionControlEventPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteUserByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "deleteUserByNodeId", + "type": { + "kind": "OBJECT", + "name": "DeleteUserPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteUserInput", + "ofType": null + } + } + } + ], + "name": "deleteUser", + "type": { + "kind": "OBJECT", + "name": "DeleteUserPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteUtilityProviderByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "deleteUtilityProviderByNodeId", + "type": { + "kind": "OBJECT", + "name": "DeleteUtilityProviderPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteUtilityProviderInput", + "ofType": null + } + } + } + ], + "name": "deleteUtilityProvider", + "type": { + "kind": "OBJECT", + "name": "DeleteUtilityProviderPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteUtilityProviderByNameInput", + "ofType": null + } + } + } + ], + "name": "deleteUtilityProviderByName", + "type": { + "kind": "OBJECT", + "name": "DeleteUtilityProviderPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteVendorUserMachineUserByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "deleteVendorUserMachineUserByNodeId", + "type": { + "kind": "OBJECT", + "name": "DeleteVendorUserMachineUserPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteVendorUserMachineUserInput", + "ofType": null + } + } + } + ], + "name": "deleteVendorUserMachineUser", + "type": { + "kind": "OBJECT", + "name": "DeleteVendorUserMachineUserPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteVendorUserMachineUserByMachineUserIdInput", + "ofType": null + } + } + } + ], + "name": "deleteVendorUserMachineUserByMachineUserId", + "type": { + "kind": "OBJECT", + "name": "DeleteVendorUserMachineUserPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteVendorUserByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "deleteVendorUserByNodeId", + "type": { + "kind": "OBJECT", + "name": "DeleteVendorUserPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteVendorUserInput", + "ofType": null + } + } + } + ], + "name": "deleteVendorUser", + "type": { + "kind": "OBJECT", + "name": "DeleteVendorUserPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteVendorUserByEmailInput", + "ofType": null + } + } + } + ], + "name": "deleteVendorUserByEmail", + "type": { + "kind": "OBJECT", + "name": "DeleteVendorUserPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteVirtualPointIntervalByNodeIdInput", + "ofType": null + } + } + } + ], + "name": "deleteVirtualPointIntervalByNodeId", + "type": { + "kind": "OBJECT", + "name": "DeleteVirtualPointIntervalPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteVirtualPointIntervalInput", + "ofType": null + } + } + } + ], + "name": "deleteVirtualPointInterval", + "type": { + "kind": "OBJECT", + "name": "DeleteVirtualPointIntervalPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddFavoriteFacilityInput", + "ofType": null + } + } + } + ], + "name": "addFavoriteFacility", + "type": { + "kind": "OBJECT", + "name": "AddFavoriteFacilityPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddMetricMetadataDependencyInput", + "ofType": null + } + } + } + ], + "name": "addMetricMetadataDependency", + "type": { + "kind": "OBJECT", + "name": "AddMetricMetadataDependencyPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ClearFacilityCommunicationInput", + "ofType": null + } + } + } + ], + "name": "clearFacilityCommunication", + "type": { + "kind": "OBJECT", + "name": "ClearFacilityCommunicationPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteAccountChargeInput", + "ofType": null + } + } + } + ], + "name": "deleteAccountCharge", + "type": { + "kind": "OBJECT", + "name": "DeleteAccountChargePayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteAccountStatementInput", + "ofType": null + } + } + } + ], + "name": "deleteAccountStatement", + "type": { + "kind": "OBJECT", + "name": "DeleteAccountStatementPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteMeterChargeInput", + "ofType": null + } + } + } + ], + "name": "deleteMeterCharge", + "type": { + "kind": "OBJECT", + "name": "DeleteMeterChargePayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteMeterStatementInput", + "ofType": null + } + } + } + ], + "name": "deleteMeterStatement", + "type": { + "kind": "OBJECT", + "name": "DeleteMeterStatementPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteMeterUsageInput", + "ofType": null + } + } + } + ], + "name": "deleteMeterUsage", + "type": { + "kind": "OBJECT", + "name": "DeleteMeterUsagePayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteUtilityAccountInput", + "ofType": null + } + } + } + ], + "name": "deleteUtilityAccount", + "type": { + "kind": "OBJECT", + "name": "DeleteUtilityAccountPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteUtilityMeterInput", + "ofType": null + } + } + } + ], + "name": "deleteUtilityMeter", + "type": { + "kind": "OBJECT", + "name": "DeleteUtilityMeterPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatchControlEventRemoteMetadataInput", + "ofType": null + } + } + } + ], + "name": "patchControlEventRemoteMetadata", + "type": { + "kind": "OBJECT", + "name": "PatchControlEventRemoteMetadataPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RemoveFavoriteFacilityInput", + "ofType": null + } + } + } + ], + "name": "removeFavoriteFacility", + "type": { + "kind": "OBJECT", + "name": "RemoveFavoriteFacilityPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RemoveMetricMetadataDependencyInput", + "ofType": null + } + } + } + ], + "name": "removeMetricMetadataDependency", + "type": { + "kind": "OBJECT", + "name": "RemoveMetricMetadataDependencyPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ReparentMeterStatementInput", + "ofType": null + } + } + } + ], + "name": "reparentMeterStatement", + "type": { + "kind": "OBJECT", + "name": "ReparentMeterStatementPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpsertProjectSubscriptionInput", + "ofType": null + } + } + } + ], + "name": "upsertProjectSubscription", + "type": { + "kind": "OBJECT", + "name": "UpsertProjectSubscriptionPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpsertUrjanetUtilityProviderInput", + "ofType": null + } + } + } + ], + "name": "upsertUrjanetUtilityProvider", + "type": { + "kind": "OBJECT", + "name": "UpsertUrjanetUtilityProviderPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "UpsertAccountChargeWhere", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpsertAccountChargeInput", + "ofType": null + } + } + } + ], + "name": "upsertAccountCharge", + "type": { + "kind": "OBJECT", + "name": "UpsertAccountChargePayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "UpsertAccountStatementWhere", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpsertAccountStatementInput", + "ofType": null + } + } + } + ], + "name": "upsertAccountStatement", + "type": { + "kind": "OBJECT", + "name": "UpsertAccountStatementPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "UpsertBalancingAuthorityWhere", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpsertBalancingAuthorityInput", + "ofType": null + } + } + } + ], + "name": "upsertBalancingAuthority", + "type": { + "kind": "OBJECT", + "name": "UpsertBalancingAuthorityPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "UpsertBuildingAreaTypeWhere", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpsertBuildingAreaTypeInput", + "ofType": null + } + } + } + ], + "name": "upsertBuildingAreaType", + "type": { + "kind": "OBJECT", + "name": "UpsertBuildingAreaTypePayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "UpsertBuildingAreaWhere", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpsertBuildingAreaInput", + "ofType": null + } + } + } + ], + "name": "upsertBuildingArea", + "type": { + "kind": "OBJECT", + "name": "UpsertBuildingAreaPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "UpsertDataPointWhere", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpsertDataPointInput", + "ofType": null + } + } + } + ], + "name": "upsertDataPoint", + "type": { + "kind": "OBJECT", + "name": "UpsertDataPointPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "UpsertDependencyWhere", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpsertDependencyInput", + "ofType": null + } + } + } + ], + "name": "upsertDependency", + "type": { + "kind": "OBJECT", + "name": "UpsertDependencyPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "UpsertFieldGroupWhere", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpsertFieldGroupInput", + "ofType": null + } + } + } + ], + "name": "upsertFieldGroup", + "type": { + "kind": "OBJECT", + "name": "UpsertFieldGroupPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "UpsertMachineUserWhere", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpsertMachineUserInput", + "ofType": null + } + } + } + ], + "name": "upsertMachineUser", + "type": { + "kind": "OBJECT", + "name": "UpsertMachineUserPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "UpsertMeterChargeWhere", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpsertMeterChargeInput", + "ofType": null + } + } + } + ], + "name": "upsertMeterCharge", + "type": { + "kind": "OBJECT", + "name": "UpsertMeterChargePayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "UpsertMeterStatementWhere", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpsertMeterStatementInput", + "ofType": null + } + } + } + ], + "name": "upsertMeterStatement", + "type": { + "kind": "OBJECT", + "name": "UpsertMeterStatementPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "UpsertMeterUsageWhere", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpsertMeterUsageInput", + "ofType": null + } + } + } + ], + "name": "upsertMeterUsage", + "type": { + "kind": "OBJECT", + "name": "UpsertMeterUsagePayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "UpsertProgramWhere", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpsertProgramInput", + "ofType": null + } + } + } + ], + "name": "upsertProgram", + "type": { + "kind": "OBJECT", + "name": "UpsertProgramPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "UpsertProjectComponentWhere", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpsertProjectComponentInput", + "ofType": null + } + } + } + ], + "name": "upsertProjectComponent", + "type": { + "kind": "OBJECT", + "name": "UpsertProjectComponentPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "UpsertProjectFieldWhere", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpsertProjectFieldInput", + "ofType": null + } + } + } + ], + "name": "upsertProjectField", + "type": { + "kind": "OBJECT", + "name": "UpsertProjectFieldPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "UpsertProjectWatcherWhere", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpsertProjectWatcherInput", + "ofType": null + } + } + } + ], + "name": "upsertProjectWatcher", + "type": { + "kind": "OBJECT", + "name": "UpsertProjectWatcherPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "UpsertReportExecutionWhere", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpsertReportExecutionInput", + "ofType": null + } + } + } + ], + "name": "upsertReportExecution", + "type": { + "kind": "OBJECT", + "name": "UpsertReportExecutionPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "UpsertReportQueryWhere", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpsertReportQueryInput", + "ofType": null + } + } + } + ], + "name": "upsertReportQuery", + "type": { + "kind": "OBJECT", + "name": "UpsertReportQueryPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "UpsertSavingsEventWhere", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpsertSavingsEventInput", + "ofType": null + } + } + } + ], + "name": "upsertSavingsEvent", + "type": { + "kind": "OBJECT", + "name": "UpsertSavingsEventPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "UpsertSuggestionControlEventWhere", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpsertSuggestionControlEventInput", + "ofType": null + } + } + } + ], + "name": "upsertSuggestionControlEvent", + "type": { + "kind": "OBJECT", + "name": "UpsertSuggestionControlEventPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "UpsertUtilityAccountWhere", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpsertUtilityAccountInput", + "ofType": null + } + } + } + ], + "name": "upsertUtilityAccount", + "type": { + "kind": "OBJECT", + "name": "UpsertUtilityAccountPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "UpsertUtilityMeterWhere", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpsertUtilityMeterInput", + "ofType": null + } + } + } + ], + "name": "upsertUtilityMeter", + "type": { + "kind": "OBJECT", + "name": "UpsertUtilityMeterPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "UpsertUtilityProviderWhere", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpsertUtilityProviderInput", + "ofType": null + } + } + } + ], + "name": "upsertUtilityProvider", + "type": { + "kind": "OBJECT", + "name": "UpsertUtilityProviderPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "UpsertVendorUserMachineUserWhere", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpsertVendorUserMachineUserInput", + "ofType": null + } + } + } + ], + "name": "upsertVendorUserMachineUser", + "type": { + "kind": "OBJECT", + "name": "UpsertVendorUserMachineUserPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "UpsertVirtualPointIntervalWhere", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpsertVirtualPointIntervalInput", + "ofType": null + } + } + } + ], + "name": "upsertVirtualPointInterval", + "type": { + "kind": "OBJECT", + "name": "UpsertVirtualPointIntervalPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdatePhoneNumberInput", + "ofType": null + } + } + } + ], + "name": "updatePhoneNumber", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UpdatePhoneNumberResponse", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "INPUT_OBJECT", + "name": "DeletePhoneNumberInput", + "ofType": null + } + } + ], + "name": "deletePhoneNumber", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeletePhoneNumberResponse", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "sourceId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "from", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "to", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + ], + "name": "deleteMutableMetricData", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "from", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "to", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + ], + "name": "deleteFacilityMutableMetricData", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "metricData", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "InputMetricData", + "ofType": null + } + } + } + } + }, + { + "defaultValue": null, + "name": "deleteExisting", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + ], + "name": "updateMutableMetricData", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "metricData", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "InputFacilityMetricData", + "ofType": null + } + } + } + } + }, + { + "defaultValue": null, + "name": "deleteExisting", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + ], + "name": "updateFacilityMutableMetricData", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddProjectControllerInput", + "ofType": null + } + } + } + ], + "name": "addProjectController", + "type": { + "kind": "OBJECT", + "name": "AddProjectControllerPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RemoveProjectControllerInput", + "ofType": null + } + } + } + ], + "name": "removeProjectController", + "type": { + "kind": "OBJECT", + "name": "RemoveProjectControllerPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithdrawSuggestionInput", + "ofType": null + } + } + } + ], + "name": "withdrawSuggestion", + "type": { + "kind": "OBJECT", + "name": "Suggestion", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AcknowledgeSuggestionInput", + "ofType": null + } + } + } + ], + "name": "acknowledgeSuggestion", + "type": { + "kind": "OBJECT", + "name": "Suggestion", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TransitionControlEventInput", + "ofType": null + } + } + } + ], + "name": "transitionControlEvent", + "type": { + "kind": "OBJECT", + "name": "ControlEvent", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AcknowledgeControlEventInput", + "ofType": null + } + } + } + ], + "name": "acknowledgeControlEvent", + "type": { + "kind": "OBJECT", + "name": "ControlEvent", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "payload", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": "false", + "name": "failOnExists", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + ], + "name": "extend", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateUserAccessTokenInput", + "ofType": null + } + } + } + ], + "name": "createUserAccessToken", + "type": { + "kind": "OBJECT", + "name": "CreateUserAccessTokenPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateMachineAccessTokenInput", + "ofType": null + } + } + } + ], + "name": "createMachineAccessToken", + "type": { + "kind": "OBJECT", + "name": "CreateMachineAccessTokenPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RevokeAccessTokenInput", + "ofType": null + } + } + } + ], + "name": "revokeAccessToken", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RegenerateAccessTokenInput", + "ofType": null + } + } + } + ], + "name": "regenerateAccessToken", + "type": { + "kind": "INTERFACE", + "name": "CreateAccessTokenPayload", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "reportId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "parameters", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + ], + "name": "runReport", + "type": { + "kind": "OBJECT", + "name": "ReportExecution", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "VerifyPhoneNumberInput", + "ofType": null + } + } + } + ], + "name": "triggerPhoneNumberVerification", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "VerifyPhoneNumberResponse", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "name": "input", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SetMachineUserCapabilityInput", + "ofType": null + } + } + } + ], + "name": "setMachineUserCapability", + "type": { + "kind": "OBJECT", + "name": "SetMachineUserCapabilityPayload", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "Mutation", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "accountCharge", + "type": { + "kind": "OBJECT", + "name": "AccountCharge", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "accountStatement", + "type": { + "kind": "OBJECT", + "name": "AccountStatement", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AccountChargesOrderBy", + "ofType": null + } + } + } + } + ], + "name": "accountChargeEdge", + "type": { + "kind": "OBJECT", + "name": "AccountChargesEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CreateAccountChargePayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountCharge", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AccountChargeInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CreateAccountChargeInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "category", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityAccountChargeCategory", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "intervalStart", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "intervalEnd", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "statementDate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "value", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "lineNumber", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatement", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountStatementInput", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "AccountChargeInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "integration", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityIntegration", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "integrationKey", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityAccountId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementYear", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "statementMonth", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "currencyCode", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "isValidated", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "metadata", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "intervalStart", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "intervalEnd", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "utilityAccount", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountInput", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "AccountStatementInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "integration", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityIntegration", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "integrationAccountKey", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountNumber", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "metadata", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityProviderId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityProvider", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityProviderInput", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityAccountInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityProviderInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "accountStatementHistory", + "type": { + "kind": "OBJECT", + "name": "AccountStatementHistory", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "accountStatement", + "type": { + "kind": "OBJECT", + "name": "AccountStatement", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[NATURAL]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AccountStatementHistoriesOrderBy", + "ofType": null + } + } + } + } + ], + "name": "accountStatementHistoryEdge", + "type": { + "kind": "OBJECT", + "name": "AccountStatementHistoriesEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CreateAccountStatementHistoryPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatementHistory", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AccountStatementHistoryInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CreateAccountStatementHistoryInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "accountStatement", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountStatementInput", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "AccountStatementHistoryInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "accountStatement", + "type": { + "kind": "OBJECT", + "name": "AccountStatement", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "utilityAccount", + "type": { + "kind": "OBJECT", + "name": "UtilityAccount", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AccountStatementsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "accountStatementEdge", + "type": { + "kind": "OBJECT", + "name": "AccountStatementsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CreateAccountStatementPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatement", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AccountStatementInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CreateAccountStatementInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "balancingAuthority", + "type": { + "kind": "OBJECT", + "name": "BalancingAuthority", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "BalancingAuthoritiesOrderBy", + "ofType": null + } + } + } + } + ], + "name": "balancingAuthorityEdge", + "type": { + "kind": "OBJECT", + "name": "BalancingAuthoritiesEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CreateBalancingAuthorityPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "balancingAuthority", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BalancingAuthorityInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CreateBalancingAuthorityInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "slug", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "BalancingAuthorityInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "buildingAreaType", + "type": { + "kind": "OBJECT", + "name": "BuildingAreaType", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "BuildingAreaTypesOrderBy", + "ofType": null + } + } + } + } + ], + "name": "buildingAreaTypeEdge", + "type": { + "kind": "OBJECT", + "name": "BuildingAreaTypesEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CreateBuildingAreaTypePayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "buildingAreaType", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BuildingAreaTypeInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CreateBuildingAreaTypeInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "type", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "metadata", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "BuildingAreaTypeInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "buildingArea", + "type": { + "kind": "OBJECT", + "name": "BuildingArea", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "buildingAreaType", + "type": { + "kind": "OBJECT", + "name": "BuildingAreaType", + "ofType": null + } + }, + { + "args": [], + "name": "facility", + "type": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "BuildingAreasOrderBy", + "ofType": null + } + } + } + } + ], + "name": "buildingAreaEdge", + "type": { + "kind": "OBJECT", + "name": "BuildingAreasEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CreateBuildingAreaPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "buildingArea", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BuildingAreaInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CreateBuildingAreaInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "buildingAreaTypeId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "geometry", + "type": { + "kind": "SCALAR", + "name": "GeoJSON", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "buildingAreaType", + "type": { + "kind": "INPUT_OBJECT", + "name": "BuildingAreaTypeInput", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "BuildingAreaInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "component", + "type": { + "kind": "OBJECT", + "name": "Component", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "machineUser", + "type": { + "kind": "OBJECT", + "name": "MachineUser", + "ofType": null + } + }, + { + "args": [], + "name": "facility", + "type": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ComponentsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "componentEdge", + "type": { + "kind": "OBJECT", + "name": "ComponentsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CreateComponentPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "component", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ComponentInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CreateComponentInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "machineUserId", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "outOfService", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "alias", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "machineUser", + "type": { + "kind": "INPUT_OBJECT", + "name": "MachineUserInput", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ComponentInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "createdBy", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "MachineUserInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "controlEventLog", + "type": { + "kind": "OBJECT", + "name": "ControlEventLog", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "controlEvent", + "type": { + "kind": "OBJECT", + "name": "ControlEvent", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ControlEventLogsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "controlEventLogEdge", + "type": { + "kind": "OBJECT", + "name": "ControlEventLogsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CreateControlEventLogPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "controlEventLog", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ControlEventLogInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CreateControlEventLogInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "controlEventId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "message", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "controlEvent", + "type": { + "kind": "INPUT_OBJECT", + "name": "ControlEventInput", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ControlEventLogInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "startTime", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "endTime", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "componentId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "remoteMetadata", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ControlEventInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "controlEvent", + "type": { + "kind": "OBJECT", + "name": "ControlEvent", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "component", + "type": { + "kind": "OBJECT", + "name": "Component", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ControlEventsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "controlEventEdge", + "type": { + "kind": "OBJECT", + "name": "ControlEventsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CreateControlEventPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "controlEvent", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ControlEventInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CreateControlEventInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "dataPoint", + "type": { + "kind": "OBJECT", + "name": "DataPoint", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "dataSourceByDataSourceName", + "type": { + "kind": "OBJECT", + "name": "DataSource", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "DataPointsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "dataPointEdge", + "type": { + "kind": "OBJECT", + "name": "DataPointsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CreateDataPointPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "dataPoint", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DataPointInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CreateDataPointInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "dataSourceName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "alias", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "units", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "expression", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "dataType", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "type", + "type": { + "kind": "ENUM", + "name": "DataPointType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "frequency", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "locationType", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "dataSource", + "type": { + "kind": "INPUT_OBJECT", + "name": "DataSourceInput", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DataPointInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DataSourceInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "dataSource", + "type": { + "kind": "OBJECT", + "name": "DataSource", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "DataSourcesOrderBy", + "ofType": null + } + } + } + } + ], + "name": "dataSourceEdge", + "type": { + "kind": "OBJECT", + "name": "DataSourcesEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CreateDataSourcePayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "dataSource", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DataSourceInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CreateDataSourceInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "dependency", + "type": { + "kind": "OBJECT", + "name": "Dependency", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "DependenciesOrderBy", + "ofType": null + } + } + } + } + ], + "name": "dependencyEdge", + "type": { + "kind": "OBJECT", + "name": "DependenciesEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CreateDependencyPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "dependency", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DependencyInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CreateDependencyInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "type", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "path", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DependencyInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "facility", + "type": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "timezone", + "type": { + "kind": "OBJECT", + "name": "Timezone", + "ofType": null + } + }, + { + "args": [], + "name": "unitGroupByUnitGroup", + "type": { + "kind": "OBJECT", + "name": "UnitGroup", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilitiesOrderBy", + "ofType": null + } + } + } + } + ], + "name": "facilityEdge", + "type": { + "kind": "OBJECT", + "name": "FacilitiesEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CreateFacilityPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "facility", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FacilityInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CreateFacilityInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "slug", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "address", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "city", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "zip", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "timezoneName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "unitGroup", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "country", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "Country", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "config", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "geometry", + "type": { + "kind": "SCALAR", + "name": "GeoJSON", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "retiredAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "facilityContacts", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "latitude", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "longitude", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nSight2Active", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nSightActive", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "realTimeEnabled", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "bonusLtr", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "commodity", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "goLiveDate", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "linkActive", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "metricsOneActive", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "preBonusEbitda", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "suppresseFinancials", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "wms", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "costCenter", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "FacilityInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "facilityCommunication", + "type": { + "kind": "OBJECT", + "name": "FacilityCommunication", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "facility", + "type": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilityCommunicationsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "facilityCommunicationEdge", + "type": { + "kind": "OBJECT", + "name": "FacilityCommunicationsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CreateFacilityCommunicationPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "facilityCommunication", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FacilityCommunicationInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CreateFacilityCommunicationInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "message", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "FacilityCommunicationInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "facilityDataSource", + "type": { + "kind": "OBJECT", + "name": "FacilityDataSource", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "facility", + "type": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + }, + { + "args": [], + "name": "dataSourceByDataSourceName", + "type": { + "kind": "OBJECT", + "name": "DataSource", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilityDataSourcesOrderBy", + "ofType": null + } + } + } + } + ], + "name": "facilityDataSourceEdge", + "type": { + "kind": "OBJECT", + "name": "FacilityDataSourcesEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CreateFacilityDataSourcePayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "facilityDataSource", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FacilityDataSourceInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CreateFacilityDataSourceInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "dataSourceName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "dataSource", + "type": { + "kind": "INPUT_OBJECT", + "name": "DataSourceInput", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "FacilityDataSourceInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "facilityGroup", + "type": { + "kind": "OBJECT", + "name": "FacilityGroup", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "parent", + "type": { + "kind": "OBJECT", + "name": "FacilityGroup", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilityGroupsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "facilityGroupEdge", + "type": { + "kind": "OBJECT", + "name": "FacilityGroupsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CreateFacilityGroupPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "facilityGroup", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FacilityGroupInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CreateFacilityGroupInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "parentId", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "FacilityGroupInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "facilityGroupsLinker", + "type": { + "kind": "OBJECT", + "name": "FacilityGroupsLinker", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "facility", + "type": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + }, + { + "args": [], + "name": "facilityGrouping", + "type": { + "kind": "OBJECT", + "name": "FacilityGroup", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilityGroupsLinkersOrderBy", + "ofType": null + } + } + } + } + ], + "name": "facilityGroupsLinkerEdge", + "type": { + "kind": "OBJECT", + "name": "FacilityGroupsLinkersEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CreateFacilityGroupsLinkerPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "facilityGroupsLinker", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FacilityGroupsLinkerInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CreateFacilityGroupsLinkerInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "facilityGroupingId", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "facilityGroup", + "type": { + "kind": "INPUT_OBJECT", + "name": "FacilityGroupInput", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "FacilityGroupsLinkerInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "fieldGroup", + "type": { + "kind": "OBJECT", + "name": "FieldGroup", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FieldGroupsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "fieldGroupEdge", + "type": { + "kind": "OBJECT", + "name": "FieldGroupsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CreateFieldGroupPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "fieldGroup", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FieldGroupInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CreateFieldGroupInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "FieldGroupInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "machineUser", + "type": { + "kind": "OBJECT", + "name": "MachineUser", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MachineUsersOrderBy", + "ofType": null + } + } + } + } + ], + "name": "machineUserEdge", + "type": { + "kind": "OBJECT", + "name": "MachineUsersEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CreateMachineUserPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "machineUser", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MachineUserInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CreateMachineUserInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "meterCharge", + "type": { + "kind": "OBJECT", + "name": "MeterCharge", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "meterStatement", + "type": { + "kind": "OBJECT", + "name": "MeterStatement", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MeterChargesOrderBy", + "ofType": null + } + } + } + } + ], + "name": "meterChargeEdge", + "type": { + "kind": "OBJECT", + "name": "MeterChargesEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CreateMeterChargePayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterCharge", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MeterChargeInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CreateMeterChargeInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterStatementId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "category", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterChargeCategory", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "value", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "lineNumber", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterStatement", + "type": { + "kind": "INPUT_OBJECT", + "name": "MeterStatementInput", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "MeterChargeInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityMeterId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "intervalStart", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "intervalEnd", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "statementDate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "integrationKey", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "pdfLink", + "type": { + "kind": "SCALAR", + "name": "Upload", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "isValidated", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "currencyCode", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "primaryUsageUnits", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "primaryDemandUnits", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "metadata", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "manualUpload", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "isAdjustment", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityMeter", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatement", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountStatementInput", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "MeterStatementInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "SCALAR", + "name": "Upload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityAccountId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "serviceType", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterServiceType", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "integrationMeterKey", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterNumber", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "activeStart", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "activeEnd", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "metadata", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "overrideAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "excludeUsage", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "defaultDemandUnits", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "defaultUsageUnits", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityAccount", + "type": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountInput", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "meterStatementHistory", + "type": { + "kind": "OBJECT", + "name": "MeterStatementHistory", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "meterStatement", + "type": { + "kind": "OBJECT", + "name": "MeterStatement", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[NATURAL]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MeterStatementHistoriesOrderBy", + "ofType": null + } + } + } + } + ], + "name": "meterStatementHistoryEdge", + "type": { + "kind": "OBJECT", + "name": "MeterStatementHistoriesEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CreateMeterStatementHistoryPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterStatementHistory", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MeterStatementHistoryInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CreateMeterStatementHistoryInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "meterStatementId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "meterStatement", + "type": { + "kind": "INPUT_OBJECT", + "name": "MeterStatementInput", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "MeterStatementHistoryInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "meterStatement", + "type": { + "kind": "OBJECT", + "name": "MeterStatement", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "utilityMeter", + "type": { + "kind": "OBJECT", + "name": "UtilityMeter", + "ofType": null + } + }, + { + "args": [], + "name": "accountStatement", + "type": { + "kind": "OBJECT", + "name": "AccountStatement", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MeterStatementsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "meterStatementEdge", + "type": { + "kind": "OBJECT", + "name": "MeterStatementsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CreateMeterStatementPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterStatement", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MeterStatementInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CreateMeterStatementInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "meterUsage", + "type": { + "kind": "OBJECT", + "name": "MeterUsage", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "meterStatement", + "type": { + "kind": "OBJECT", + "name": "MeterStatement", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MeterUsagesOrderBy", + "ofType": null + } + } + } + } + ], + "name": "meterUsageEdge", + "type": { + "kind": "OBJECT", + "name": "MeterUsagesEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CreateMeterUsagePayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterUsage", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MeterUsageInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CreateMeterUsageInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterStatementId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "category", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMeterUsageCategory", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "value", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "units", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "lineNumber", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "meterStatement", + "type": { + "kind": "INPUT_OBJECT", + "name": "MeterStatementInput", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "MeterUsageInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "program", + "type": { + "kind": "OBJECT", + "name": "Program", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "projectType", + "type": { + "kind": "OBJECT", + "name": "ProjectType", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProgramsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "programEdge", + "type": { + "kind": "OBJECT", + "name": "ProgramsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CreateProgramPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "program", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProgramInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CreateProgramInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "projectTypeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ProgramInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "projectComponent", + "type": { + "kind": "OBJECT", + "name": "ProjectComponent", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "project", + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + }, + { + "args": [], + "name": "component", + "type": { + "kind": "OBJECT", + "name": "Component", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectComponentsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "projectComponentEdge", + "type": { + "kind": "OBJECT", + "name": "ProjectComponentsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CreateProjectComponentPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "projectComponent", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectComponentInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CreateProjectComponentInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "projectId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "componentId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "startupOffset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ProjectComponentInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "projectField", + "type": { + "kind": "OBJECT", + "name": "ProjectField", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "project", + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + }, + { + "args": [], + "name": "group", + "type": { + "kind": "OBJECT", + "name": "FieldGroup", + "ofType": null + } + }, + { + "args": [], + "name": "dataPoint", + "type": { + "kind": "OBJECT", + "name": "DataPoint", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectFieldsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "projectFieldEdge", + "type": { + "kind": "OBJECT", + "name": "ProjectFieldsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CreateProjectFieldPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "projectField", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectFieldInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CreateProjectFieldInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "projectId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "fieldId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "groupId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "alias", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "rate", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "target", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "dataPointId", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "fieldGroup", + "type": { + "kind": "INPUT_OBJECT", + "name": "FieldGroupInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "dataPoint", + "type": { + "kind": "INPUT_OBJECT", + "name": "DataPointInput", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ProjectFieldInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "projectWatcher", + "type": { + "kind": "OBJECT", + "name": "ProjectWatcher", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "project", + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + }, + { + "args": [], + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectWatchersOrderBy", + "ofType": null + } + } + } + } + ], + "name": "projectWatcherEdge", + "type": { + "kind": "OBJECT", + "name": "ProjectWatchersEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CreateProjectWatcherPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "projectWatcher", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectWatcherInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CreateProjectWatcherInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "projectId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "userId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ProjectWatcherInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "project", + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "facility", + "type": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + }, + { + "args": [], + "name": "projectType", + "type": { + "kind": "OBJECT", + "name": "ProjectType", + "ofType": null + } + }, + { + "args": [], + "name": "program", + "type": { + "kind": "OBJECT", + "name": "Program", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "projectEdge", + "type": { + "kind": "OBJECT", + "name": "ProjectsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CreateProjectPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "project", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CreateProjectInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "projectTypeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "autoAcknowledge", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "config", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startDate", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "endDate", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "acknowledgementWindowThreshold", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startTimeout", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "endTimeout", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "programId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "program", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProgramInput", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ProjectInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "reportExecution", + "type": { + "kind": "OBJECT", + "name": "ReportExecution", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "report", + "type": { + "kind": "OBJECT", + "name": "Report", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ReportExecutionsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "reportExecutionEdge", + "type": { + "kind": "OBJECT", + "name": "ReportExecutionsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CreateReportExecutionPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "reportExecution", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ReportExecutionInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CreateReportExecutionInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "reportId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "status", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "filePath", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "errors", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ReportExecutionInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "savingsEvent", + "type": { + "kind": "OBJECT", + "name": "SavingsEvent", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "project", + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SavingsEventsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "savingsEventEdge", + "type": { + "kind": "OBJECT", + "name": "SavingsEventsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CreateSavingsEventPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "savingsEvent", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SavingsEventInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CreateSavingsEventInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "projectId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "startTime", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "endTime", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "metadata", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "SavingsEventInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "suggestionActivityLog", + "type": { + "kind": "OBJECT", + "name": "SuggestionActivityLog", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "suggestion", + "type": { + "kind": "OBJECT", + "name": "Suggestion", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[NATURAL]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SuggestionActivityLogsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "suggestionActivityLogEdge", + "type": { + "kind": "OBJECT", + "name": "SuggestionActivityLogsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CreateSuggestionActivityLogPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "suggestionActivityLog", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SuggestionActivityLogInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CreateSuggestionActivityLogInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "suggestionId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "type", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SuggestionActivityType", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "actor", + "type": { + "kind": "INPUT_OBJECT", + "name": "ActorInput", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "metadata", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "suggestion", + "type": { + "kind": "INPUT_OBJECT", + "name": "SuggestionInput", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "SuggestionActivityLogInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "projectId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startTime", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "endTime", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "metadata", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "savingsEventId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "savingsEvent", + "type": { + "kind": "INPUT_OBJECT", + "name": "SavingsEventInput", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "SuggestionInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "suggestionControlEvent", + "type": { + "kind": "OBJECT", + "name": "SuggestionControlEvent", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "suggestion", + "type": { + "kind": "OBJECT", + "name": "Suggestion", + "ofType": null + } + }, + { + "args": [], + "name": "controlEvent", + "type": { + "kind": "OBJECT", + "name": "ControlEvent", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CreateSuggestionControlEventPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "suggestionControlEvent", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SuggestionControlEventInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CreateSuggestionControlEventInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "suggestionId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "controlEventId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "controlEvent", + "type": { + "kind": "INPUT_OBJECT", + "name": "ControlEventInput", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "SuggestionControlEventInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "suggestion", + "type": { + "kind": "OBJECT", + "name": "Suggestion", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "project", + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + }, + { + "args": [], + "name": "savingsEvent", + "type": { + "kind": "OBJECT", + "name": "SavingsEvent", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SuggestionsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "suggestionEdge", + "type": { + "kind": "OBJECT", + "name": "SuggestionsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CreateSuggestionPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "suggestion", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SuggestionInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CreateSuggestionInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "utilityAccount", + "type": { + "kind": "OBJECT", + "name": "UtilityAccount", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "utilityProvider", + "type": { + "kind": "OBJECT", + "name": "UtilityProvider", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityAccountsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "utilityAccountEdge", + "type": { + "kind": "OBJECT", + "name": "UtilityAccountsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CreateUtilityAccountPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityAccount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CreateUtilityAccountInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "utilityMeter", + "type": { + "kind": "OBJECT", + "name": "UtilityMeter", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "utilityAccount", + "type": { + "kind": "OBJECT", + "name": "UtilityAccount", + "ofType": null + } + }, + { + "args": [], + "name": "facility", + "type": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMetersOrderBy", + "ofType": null + } + } + } + } + ], + "name": "utilityMeterEdge", + "type": { + "kind": "OBJECT", + "name": "UtilityMetersEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CreateUtilityMeterPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityMeter", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CreateUtilityMeterInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "utilityProvider", + "type": { + "kind": "OBJECT", + "name": "UtilityProvider", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityProvidersOrderBy", + "ofType": null + } + } + } + } + ], + "name": "utilityProviderEdge", + "type": { + "kind": "OBJECT", + "name": "UtilityProvidersEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CreateUtilityProviderPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityProvider", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UtilityProviderInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CreateUtilityProviderInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "vendorUserMachineUser", + "type": { + "kind": "OBJECT", + "name": "VendorUserMachineUser", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CreateVendorUserMachineUserPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "vendorUserMachineUser", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "VendorUserMachineUserInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CreateVendorUserMachineUserInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "vendorUserId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "machineUserId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "VendorUserMachineUserInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "vendorUser", + "type": { + "kind": "OBJECT", + "name": "VendorUser", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "VendorUsersOrderBy", + "ofType": null + } + } + } + } + ], + "name": "vendorUserEdge", + "type": { + "kind": "OBJECT", + "name": "VendorUsersEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CreateVendorUserPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "vendorUser", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "VendorUserInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CreateVendorUserInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "email", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "firstName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "lastName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "company", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "VendorUserInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "virtualPointInterval", + "type": { + "kind": "OBJECT", + "name": "VirtualPointInterval", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "parent", + "type": { + "kind": "OBJECT", + "name": "DataPoint", + "ofType": null + } + }, + { + "args": [], + "name": "child", + "type": { + "kind": "OBJECT", + "name": "DataPoint", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "VirtualPointIntervalsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "virtualPointIntervalEdge", + "type": { + "kind": "OBJECT", + "name": "VirtualPointIntervalsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CreateVirtualPointIntervalPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "virtualPointInterval", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "VirtualPointIntervalInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CreateVirtualPointIntervalInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "parentId", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "childId", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startTime", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "endTime", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "dataPoint", + "type": { + "kind": "INPUT_OBJECT", + "name": "DataPointInput", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "VirtualPointIntervalInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "accountCharge", + "type": { + "kind": "OBJECT", + "name": "AccountCharge", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "accountStatement", + "type": { + "kind": "OBJECT", + "name": "AccountStatement", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AccountChargesOrderBy", + "ofType": null + } + } + } + } + ], + "name": "accountChargeEdge", + "type": { + "kind": "OBJECT", + "name": "AccountChargesEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpdateAccountChargePayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AccountChargePatch", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateAccountChargeByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "statementDate", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "value", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "overrideStatementYear", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "overrideStatementMonth", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "AccountChargePatch", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AccountChargePatch", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateAccountChargeInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "accountStatement", + "type": { + "kind": "OBJECT", + "name": "AccountStatement", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "utilityAccount", + "type": { + "kind": "OBJECT", + "name": "UtilityAccount", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AccountStatementsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "accountStatementEdge", + "type": { + "kind": "OBJECT", + "name": "AccountStatementsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpdateAccountStatementPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AccountStatementPatch", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateAccountStatementByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "statementYear", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementMonth", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "currencyCode", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "isValidated", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "metadata", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "AccountStatementPatch", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AccountStatementPatch", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateAccountStatementInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "buildingAreaType", + "type": { + "kind": "OBJECT", + "name": "BuildingAreaType", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "BuildingAreaTypesOrderBy", + "ofType": null + } + } + } + } + ], + "name": "buildingAreaTypeEdge", + "type": { + "kind": "OBJECT", + "name": "BuildingAreaTypesEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpdateBuildingAreaTypePayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BuildingAreaTypePatch", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateBuildingAreaTypeByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "metadata", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "BuildingAreaTypePatch", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BuildingAreaTypePatch", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "type", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateBuildingAreaTypeInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "buildingArea", + "type": { + "kind": "OBJECT", + "name": "BuildingArea", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "buildingAreaType", + "type": { + "kind": "OBJECT", + "name": "BuildingAreaType", + "ofType": null + } + }, + { + "args": [], + "name": "facility", + "type": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "BuildingAreasOrderBy", + "ofType": null + } + } + } + } + ], + "name": "buildingAreaEdge", + "type": { + "kind": "OBJECT", + "name": "BuildingAreasEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpdateBuildingAreaPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BuildingAreaPatch", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateBuildingAreaByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "buildingAreaTypeId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "geometry", + "type": { + "kind": "SCALAR", + "name": "GeoJSON", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "BuildingAreaPatch", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BuildingAreaPatch", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateBuildingAreaInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BuildingAreaPatch", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateBuildingAreaByFacilityIdAndLabelInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "component", + "type": { + "kind": "OBJECT", + "name": "Component", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "machineUser", + "type": { + "kind": "OBJECT", + "name": "MachineUser", + "ofType": null + } + }, + { + "args": [], + "name": "facility", + "type": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ComponentsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "componentEdge", + "type": { + "kind": "OBJECT", + "name": "ComponentsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpdateComponentPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ComponentPatch", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateComponentByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "machineUserId", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "outOfService", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "alias", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ComponentPatch", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ComponentPatch", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateComponentInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "controlEventLog", + "type": { + "kind": "OBJECT", + "name": "ControlEventLog", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "controlEvent", + "type": { + "kind": "OBJECT", + "name": "ControlEvent", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ControlEventLogsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "controlEventLogEdge", + "type": { + "kind": "OBJECT", + "name": "ControlEventLogsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpdateControlEventLogPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ControlEventLogPatch", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateControlEventLogByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "controlEventId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "message", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ControlEventLogPatch", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ControlEventLogPatch", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateControlEventLogInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "controlEvent", + "type": { + "kind": "OBJECT", + "name": "ControlEvent", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "component", + "type": { + "kind": "OBJECT", + "name": "Component", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ControlEventsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "controlEventEdge", + "type": { + "kind": "OBJECT", + "name": "ControlEventsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpdateControlEventPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ControlEventPatch", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateControlEventByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startTime", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "endTime", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "remoteMetadata", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ControlEventPatch", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ControlEventPatch", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateControlEventInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "dataPoint", + "type": { + "kind": "OBJECT", + "name": "DataPoint", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "dataSourceByDataSourceName", + "type": { + "kind": "OBJECT", + "name": "DataSource", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "DataPointsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "dataPointEdge", + "type": { + "kind": "OBJECT", + "name": "DataPointsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpdateDataPointPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DataPointPatch", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateDataPointByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "alias", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "units", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "expression", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "dataType", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "type", + "type": { + "kind": "ENUM", + "name": "DataPointType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "frequency", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "locationType", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DataPointPatch", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DataPointPatch", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateDataPointInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DataPointPatch", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "dataSourceName", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateDataPointByDataSourceNameAndNameInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "dependency", + "type": { + "kind": "OBJECT", + "name": "Dependency", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "DependenciesOrderBy", + "ofType": null + } + } + } + } + ], + "name": "dependencyEdge", + "type": { + "kind": "OBJECT", + "name": "DependenciesEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpdateDependencyPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DependencyPatch", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateDependencyByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "path", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DependencyPatch", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DependencyPatch", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateDependencyInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DependencyPatch", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "path", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateDependencyByPathInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "facility", + "type": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "timezone", + "type": { + "kind": "OBJECT", + "name": "Timezone", + "ofType": null + } + }, + { + "args": [], + "name": "unitGroupByUnitGroup", + "type": { + "kind": "OBJECT", + "name": "UnitGroup", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilitiesOrderBy", + "ofType": null + } + } + } + } + ], + "name": "facilityEdge", + "type": { + "kind": "OBJECT", + "name": "FacilitiesEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpdateFacilityPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FacilityPatch", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateFacilityByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "slug", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "address", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "city", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "zip", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "timezoneName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "unitGroup", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "country", + "type": { + "kind": "ENUM", + "name": "Country", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "config", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "geometry", + "type": { + "kind": "SCALAR", + "name": "GeoJSON", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "retiredAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "facilityContacts", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "latitude", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "longitude", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nSight2Active", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nSightActive", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "realTimeEnabled", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "bonusLtr", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "commodity", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "goLiveDate", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "linkActive", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "metricsOneActive", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "preBonusEbitda", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "suppresseFinancials", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "wms", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "costCenter", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "FacilityPatch", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FacilityPatch", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateFacilityInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FacilityPatch", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "slug", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateFacilityBySlugInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "facilityGroup", + "type": { + "kind": "OBJECT", + "name": "FacilityGroup", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "parent", + "type": { + "kind": "OBJECT", + "name": "FacilityGroup", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilityGroupsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "facilityGroupEdge", + "type": { + "kind": "OBJECT", + "name": "FacilityGroupsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpdateFacilityGroupPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FacilityGroupPatch", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateFacilityGroupByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "parentId", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "FacilityGroupPatch", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FacilityGroupPatch", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateFacilityGroupInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "facilityGroupsLinker", + "type": { + "kind": "OBJECT", + "name": "FacilityGroupsLinker", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "facility", + "type": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + }, + { + "args": [], + "name": "facilityGrouping", + "type": { + "kind": "OBJECT", + "name": "FacilityGroup", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilityGroupsLinkersOrderBy", + "ofType": null + } + } + } + } + ], + "name": "facilityGroupsLinkerEdge", + "type": { + "kind": "OBJECT", + "name": "FacilityGroupsLinkersEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpdateFacilityGroupsLinkerPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FacilityGroupsLinkerPatch", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateFacilityGroupsLinkerByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "facilityGroupingId", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "FacilityGroupsLinkerPatch", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FacilityGroupsLinkerPatch", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "facilityGroupingId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateFacilityGroupsLinkerInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "fieldGroup", + "type": { + "kind": "OBJECT", + "name": "FieldGroup", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FieldGroupsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "fieldGroupEdge", + "type": { + "kind": "OBJECT", + "name": "FieldGroupsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpdateFieldGroupPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FieldGroupPatch", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateFieldGroupByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "FieldGroupPatch", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FieldGroupPatch", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateFieldGroupInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "machineUser", + "type": { + "kind": "OBJECT", + "name": "MachineUser", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MachineUsersOrderBy", + "ofType": null + } + } + } + } + ], + "name": "machineUserEdge", + "type": { + "kind": "OBJECT", + "name": "MachineUsersEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpdateMachineUserPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MachineUserPatch", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateMachineUserByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdBy", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "MachineUserPatch", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MachineUserPatch", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateMachineUserInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "meterCharge", + "type": { + "kind": "OBJECT", + "name": "MeterCharge", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "meterStatement", + "type": { + "kind": "OBJECT", + "name": "MeterStatement", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MeterChargesOrderBy", + "ofType": null + } + } + } + } + ], + "name": "meterChargeEdge", + "type": { + "kind": "OBJECT", + "name": "MeterChargesEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpdateMeterChargePayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MeterChargePatch", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateMeterChargeByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "value", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "MeterChargePatch", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MeterChargePatch", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateMeterChargeInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "meterStatement", + "type": { + "kind": "OBJECT", + "name": "MeterStatement", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "utilityMeter", + "type": { + "kind": "OBJECT", + "name": "UtilityMeter", + "ofType": null + } + }, + { + "args": [], + "name": "accountStatement", + "type": { + "kind": "OBJECT", + "name": "AccountStatement", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MeterStatementsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "meterStatementEdge", + "type": { + "kind": "OBJECT", + "name": "MeterStatementsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpdateMeterStatementPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MeterStatementPatch", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateMeterStatementByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "utilityMeterId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "intervalStart", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "intervalEnd", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "pdfLink", + "type": { + "kind": "SCALAR", + "name": "Upload", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "isValidated", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "currencyCode", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "primaryUsageUnits", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "primaryDemandUnits", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "metadata", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "manualUpload", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "isAdjustment", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "overrideStatementYear", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "overrideStatementMonth", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "MeterStatementPatch", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MeterStatementPatch", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateMeterStatementInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "meterUsage", + "type": { + "kind": "OBJECT", + "name": "MeterUsage", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "meterStatement", + "type": { + "kind": "OBJECT", + "name": "MeterStatement", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MeterUsagesOrderBy", + "ofType": null + } + } + } + } + ], + "name": "meterUsageEdge", + "type": { + "kind": "OBJECT", + "name": "MeterUsagesEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpdateMeterUsagePayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MeterUsagePatch", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateMeterUsageByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "value", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "units", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "MeterUsagePatch", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MeterUsagePatch", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateMeterUsageInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "program", + "type": { + "kind": "OBJECT", + "name": "Program", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "projectType", + "type": { + "kind": "OBJECT", + "name": "ProjectType", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProgramsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "programEdge", + "type": { + "kind": "OBJECT", + "name": "ProgramsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpdateProgramPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProgramPatch", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateProgramByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "projectTypeId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ProgramPatch", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProgramPatch", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateProgramInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProgramPatch", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "projectTypeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateProgramByProjectTypeIdAndNameInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "projectComponent", + "type": { + "kind": "OBJECT", + "name": "ProjectComponent", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "project", + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + }, + { + "args": [], + "name": "component", + "type": { + "kind": "OBJECT", + "name": "Component", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectComponentsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "projectComponentEdge", + "type": { + "kind": "OBJECT", + "name": "ProjectComponentsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpdateProjectComponentPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectComponentPatch", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateProjectComponentByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "projectId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "componentId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startupOffset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ProjectComponentPatch", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectComponentPatch", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "projectId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "componentId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateProjectComponentInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "projectField", + "type": { + "kind": "OBJECT", + "name": "ProjectField", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "project", + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + }, + { + "args": [], + "name": "group", + "type": { + "kind": "OBJECT", + "name": "FieldGroup", + "ofType": null + } + }, + { + "args": [], + "name": "dataPoint", + "type": { + "kind": "OBJECT", + "name": "DataPoint", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectFieldsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "projectFieldEdge", + "type": { + "kind": "OBJECT", + "name": "ProjectFieldsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpdateProjectFieldPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectFieldPatch", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateProjectFieldByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "projectId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "fieldId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "groupId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "alias", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "rate", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "target", + "type": { + "kind": "SCALAR", + "name": "BigFloat", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "dataPointId", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ProjectFieldPatch", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectFieldPatch", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "projectId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "fieldId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateProjectFieldByProjectIdAndFieldIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectFieldPatch", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateProjectFieldInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "projectWatcher", + "type": { + "kind": "OBJECT", + "name": "ProjectWatcher", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "project", + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + }, + { + "args": [], + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectWatchersOrderBy", + "ofType": null + } + } + } + } + ], + "name": "projectWatcherEdge", + "type": { + "kind": "OBJECT", + "name": "ProjectWatchersEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpdateProjectWatcherPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectWatcherPatch", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateProjectWatcherByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "projectId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "userId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ProjectWatcherPatch", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectWatcherPatch", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "projectId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "userId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateProjectWatcherInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "project", + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "facility", + "type": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + }, + { + "args": [], + "name": "projectType", + "type": { + "kind": "OBJECT", + "name": "ProjectType", + "ofType": null + } + }, + { + "args": [], + "name": "program", + "type": { + "kind": "OBJECT", + "name": "Program", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "projectEdge", + "type": { + "kind": "OBJECT", + "name": "ProjectsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpdateProjectPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectPatch", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateProjectByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "projectTypeId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "autoAcknowledge", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "config", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startDate", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "endDate", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "acknowledgementWindowThreshold", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startTimeout", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "endTimeout", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "programId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ProjectPatch", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectPatch", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateProjectInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "reportExecution", + "type": { + "kind": "OBJECT", + "name": "ReportExecution", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "report", + "type": { + "kind": "OBJECT", + "name": "Report", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ReportExecutionsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "reportExecutionEdge", + "type": { + "kind": "OBJECT", + "name": "ReportExecutionsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpdateReportExecutionPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ReportExecutionPatch", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateReportExecutionByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "reportId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "status", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "filePath", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "errors", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ReportExecutionPatch", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ReportExecutionPatch", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateReportExecutionInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "savingsEvent", + "type": { + "kind": "OBJECT", + "name": "SavingsEvent", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "project", + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SavingsEventsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "savingsEventEdge", + "type": { + "kind": "OBJECT", + "name": "SavingsEventsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpdateSavingsEventPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SavingsEventPatch", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateSavingsEventByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "projectId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startTime", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "endTime", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "metadata", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "SavingsEventPatch", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SavingsEventPatch", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateSavingsEventInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SavingsEventPatch", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "projectId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "startTime", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "endTime", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateSavingsEventByProjectIdAndStartTimeAndEndTimeInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "suggestionControlEvent", + "type": { + "kind": "OBJECT", + "name": "SuggestionControlEvent", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "suggestion", + "type": { + "kind": "OBJECT", + "name": "Suggestion", + "ofType": null + } + }, + { + "args": [], + "name": "controlEvent", + "type": { + "kind": "OBJECT", + "name": "ControlEvent", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpdateSuggestionControlEventPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SuggestionControlEventPatch", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateSuggestionControlEventByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "suggestionId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "controlEventId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "SuggestionControlEventPatch", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SuggestionControlEventPatch", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "suggestionId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "controlEventId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateSuggestionControlEventInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SuggestionControlEventPatch", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "controlEventId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateSuggestionControlEventByControlEventIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "suggestion", + "type": { + "kind": "OBJECT", + "name": "Suggestion", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "project", + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + }, + { + "args": [], + "name": "savingsEvent", + "type": { + "kind": "OBJECT", + "name": "SavingsEvent", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SuggestionsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "suggestionEdge", + "type": { + "kind": "OBJECT", + "name": "SuggestionsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpdateSuggestionPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SuggestionPatch", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateSuggestionByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "projectId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startTime", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "endTime", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "metadata", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "savingsEventId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "SuggestionPatch", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SuggestionPatch", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateSuggestionInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UsersOrderBy", + "ofType": null + } + } + } + } + ], + "name": "userEdge", + "type": { + "kind": "OBJECT", + "name": "UsersEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpdateUserPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserPatch", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateUserByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "phoneNumberValidated", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "preferredLocale", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UserPatch", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserPatch", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateUserInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "utilityAccount", + "type": { + "kind": "OBJECT", + "name": "UtilityAccount", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "utilityProvider", + "type": { + "kind": "OBJECT", + "name": "UtilityProvider", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityAccountsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "utilityAccountEdge", + "type": { + "kind": "OBJECT", + "name": "UtilityAccountsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpdateUtilityAccountPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountPatch", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateUtilityAccountByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "metadata", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityProviderId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityAccountPatch", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountPatch", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateUtilityAccountInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "utilityMeter", + "type": { + "kind": "OBJECT", + "name": "UtilityMeter", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "utilityAccount", + "type": { + "kind": "OBJECT", + "name": "UtilityAccount", + "ofType": null + } + }, + { + "args": [], + "name": "facility", + "type": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMetersOrderBy", + "ofType": null + } + } + } + } + ], + "name": "utilityMeterEdge", + "type": { + "kind": "OBJECT", + "name": "UtilityMetersEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpdateUtilityMeterPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterPatch", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateUtilityMeterByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "serviceType", + "type": { + "kind": "ENUM", + "name": "UtilityMeterServiceType", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "activeStart", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "activeEnd", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "metadata", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterNumber", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "overrideAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "excludeUsage", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "defaultDemandUnits", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "defaultUsageUnits", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityMeterPatch", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterPatch", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateUtilityMeterInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "utilityProvider", + "type": { + "kind": "OBJECT", + "name": "UtilityProvider", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityProvidersOrderBy", + "ofType": null + } + } + } + } + ], + "name": "utilityProviderEdge", + "type": { + "kind": "OBJECT", + "name": "UtilityProvidersEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpdateUtilityProviderPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UtilityProviderPatch", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateUtilityProviderByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UtilityProviderPatch", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UtilityProviderPatch", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateUtilityProviderInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UtilityProviderPatch", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateUtilityProviderByNameInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "vendorUserMachineUser", + "type": { + "kind": "OBJECT", + "name": "VendorUserMachineUser", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpdateVendorUserMachineUserPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "VendorUserMachineUserPatch", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateVendorUserMachineUserByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "vendorUserId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "machineUserId", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "VendorUserMachineUserPatch", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "VendorUserMachineUserPatch", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "vendorUserId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "machineUserId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateVendorUserMachineUserInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "VendorUserMachineUserPatch", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "machineUserId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateVendorUserMachineUserByMachineUserIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "vendorUser", + "type": { + "kind": "OBJECT", + "name": "VendorUser", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "VendorUsersOrderBy", + "ofType": null + } + } + } + } + ], + "name": "vendorUserEdge", + "type": { + "kind": "OBJECT", + "name": "VendorUsersEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpdateVendorUserPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "VendorUserPatch", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateVendorUserByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "email", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "firstName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "lastName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "company", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "VendorUserPatch", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "VendorUserPatch", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateVendorUserInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "VendorUserPatch", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "email", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateVendorUserByEmailInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "virtualPointInterval", + "type": { + "kind": "OBJECT", + "name": "VirtualPointInterval", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "parent", + "type": { + "kind": "OBJECT", + "name": "DataPoint", + "ofType": null + } + }, + { + "args": [], + "name": "child", + "type": { + "kind": "OBJECT", + "name": "DataPoint", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "VirtualPointIntervalsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "virtualPointIntervalEdge", + "type": { + "kind": "OBJECT", + "name": "VirtualPointIntervalsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpdateVirtualPointIntervalPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "VirtualPointIntervalPatch", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateVirtualPointIntervalByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "parentId", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "childId", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startTime", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "endTime", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "VirtualPointIntervalPatch", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "patch", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "VirtualPointIntervalPatch", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "parentId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "childId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdateVirtualPointIntervalInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "buildingAreaType", + "type": { + "kind": "OBJECT", + "name": "BuildingAreaType", + "ofType": null + } + }, + { + "args": [], + "name": "deletedBuildingAreaTypeNodeId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "BuildingAreaTypesOrderBy", + "ofType": null + } + } + } + } + ], + "name": "buildingAreaTypeEdge", + "type": { + "kind": "OBJECT", + "name": "BuildingAreaTypesEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DeleteBuildingAreaTypePayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteBuildingAreaTypeByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "type", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteBuildingAreaTypeInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "buildingArea", + "type": { + "kind": "OBJECT", + "name": "BuildingArea", + "ofType": null + } + }, + { + "args": [], + "name": "deletedBuildingAreaNodeId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "buildingAreaType", + "type": { + "kind": "OBJECT", + "name": "BuildingAreaType", + "ofType": null + } + }, + { + "args": [], + "name": "facility", + "type": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "BuildingAreasOrderBy", + "ofType": null + } + } + } + } + ], + "name": "buildingAreaEdge", + "type": { + "kind": "OBJECT", + "name": "BuildingAreasEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DeleteBuildingAreaPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteBuildingAreaByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteBuildingAreaInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteBuildingAreaByFacilityIdAndLabelInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "component", + "type": { + "kind": "OBJECT", + "name": "Component", + "ofType": null + } + }, + { + "args": [], + "name": "deletedComponentNodeId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "machineUser", + "type": { + "kind": "OBJECT", + "name": "MachineUser", + "ofType": null + } + }, + { + "args": [], + "name": "facility", + "type": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ComponentsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "componentEdge", + "type": { + "kind": "OBJECT", + "name": "ComponentsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DeleteComponentPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteComponentByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteComponentInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "controlEventLog", + "type": { + "kind": "OBJECT", + "name": "ControlEventLog", + "ofType": null + } + }, + { + "args": [], + "name": "deletedControlEventLogNodeId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "controlEvent", + "type": { + "kind": "OBJECT", + "name": "ControlEvent", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ControlEventLogsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "controlEventLogEdge", + "type": { + "kind": "OBJECT", + "name": "ControlEventLogsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DeleteControlEventLogPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteControlEventLogByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteControlEventLogInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "controlEvent", + "type": { + "kind": "OBJECT", + "name": "ControlEvent", + "ofType": null + } + }, + { + "args": [], + "name": "deletedControlEventNodeId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "component", + "type": { + "kind": "OBJECT", + "name": "Component", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ControlEventsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "controlEventEdge", + "type": { + "kind": "OBJECT", + "name": "ControlEventsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DeleteControlEventPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteControlEventByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteControlEventInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "dataPoint", + "type": { + "kind": "OBJECT", + "name": "DataPoint", + "ofType": null + } + }, + { + "args": [], + "name": "deletedDataPointNodeId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "dataSourceByDataSourceName", + "type": { + "kind": "OBJECT", + "name": "DataSource", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "DataPointsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "dataPointEdge", + "type": { + "kind": "OBJECT", + "name": "DataPointsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DeleteDataPointPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteDataPointByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteDataPointInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "dataSourceName", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteDataPointByDataSourceNameAndNameInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "dataSource", + "type": { + "kind": "OBJECT", + "name": "DataSource", + "ofType": null + } + }, + { + "args": [], + "name": "deletedDataSourceNodeId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "DataSourcesOrderBy", + "ofType": null + } + } + } + } + ], + "name": "dataSourceEdge", + "type": { + "kind": "OBJECT", + "name": "DataSourcesEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DeleteDataSourcePayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteDataSourceByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteDataSourceInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "dependency", + "type": { + "kind": "OBJECT", + "name": "Dependency", + "ofType": null + } + }, + { + "args": [], + "name": "deletedDependencyNodeId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "DependenciesOrderBy", + "ofType": null + } + } + } + } + ], + "name": "dependencyEdge", + "type": { + "kind": "OBJECT", + "name": "DependenciesEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DeleteDependencyPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteDependencyByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteDependencyInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "path", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteDependencyByPathInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "facility", + "type": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + }, + { + "args": [], + "name": "deletedFacilityNodeId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "timezone", + "type": { + "kind": "OBJECT", + "name": "Timezone", + "ofType": null + } + }, + { + "args": [], + "name": "unitGroupByUnitGroup", + "type": { + "kind": "OBJECT", + "name": "UnitGroup", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilitiesOrderBy", + "ofType": null + } + } + } + } + ], + "name": "facilityEdge", + "type": { + "kind": "OBJECT", + "name": "FacilitiesEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DeleteFacilityPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteFacilityByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteFacilityInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "slug", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteFacilityBySlugInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "facilityDataSource", + "type": { + "kind": "OBJECT", + "name": "FacilityDataSource", + "ofType": null + } + }, + { + "args": [], + "name": "deletedFacilityDataSourceNodeId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "facility", + "type": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + }, + { + "args": [], + "name": "dataSourceByDataSourceName", + "type": { + "kind": "OBJECT", + "name": "DataSource", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilityDataSourcesOrderBy", + "ofType": null + } + } + } + } + ], + "name": "facilityDataSourceEdge", + "type": { + "kind": "OBJECT", + "name": "FacilityDataSourcesEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DeleteFacilityDataSourcePayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteFacilityDataSourceByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "dataSourceName", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteFacilityDataSourceInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "facilityGroup", + "type": { + "kind": "OBJECT", + "name": "FacilityGroup", + "ofType": null + } + }, + { + "args": [], + "name": "deletedFacilityGroupNodeId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "parent", + "type": { + "kind": "OBJECT", + "name": "FacilityGroup", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilityGroupsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "facilityGroupEdge", + "type": { + "kind": "OBJECT", + "name": "FacilityGroupsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DeleteFacilityGroupPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteFacilityGroupByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteFacilityGroupInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "facilityGroupsLinker", + "type": { + "kind": "OBJECT", + "name": "FacilityGroupsLinker", + "ofType": null + } + }, + { + "args": [], + "name": "deletedFacilityGroupsLinkerNodeId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "facility", + "type": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + }, + { + "args": [], + "name": "facilityGrouping", + "type": { + "kind": "OBJECT", + "name": "FacilityGroup", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FacilityGroupsLinkersOrderBy", + "ofType": null + } + } + } + } + ], + "name": "facilityGroupsLinkerEdge", + "type": { + "kind": "OBJECT", + "name": "FacilityGroupsLinkersEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DeleteFacilityGroupsLinkerPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteFacilityGroupsLinkerByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "facilityGroupingId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteFacilityGroupsLinkerInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "fieldGroup", + "type": { + "kind": "OBJECT", + "name": "FieldGroup", + "ofType": null + } + }, + { + "args": [], + "name": "deletedFieldGroupNodeId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FieldGroupsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "fieldGroupEdge", + "type": { + "kind": "OBJECT", + "name": "FieldGroupsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DeleteFieldGroupPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteFieldGroupByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteFieldGroupInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "machineUser", + "type": { + "kind": "OBJECT", + "name": "MachineUser", + "ofType": null + } + }, + { + "args": [], + "name": "deletedMachineUserNodeId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MachineUsersOrderBy", + "ofType": null + } + } + } + } + ], + "name": "machineUserEdge", + "type": { + "kind": "OBJECT", + "name": "MachineUsersEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DeleteMachineUserPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteMachineUserByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteMachineUserInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "program", + "type": { + "kind": "OBJECT", + "name": "Program", + "ofType": null + } + }, + { + "args": [], + "name": "deletedProgramNodeId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "projectType", + "type": { + "kind": "OBJECT", + "name": "ProjectType", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProgramsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "programEdge", + "type": { + "kind": "OBJECT", + "name": "ProgramsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DeleteProgramPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteProgramByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteProgramInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "projectTypeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteProgramByProjectTypeIdAndNameInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "projectComponent", + "type": { + "kind": "OBJECT", + "name": "ProjectComponent", + "ofType": null + } + }, + { + "args": [], + "name": "deletedProjectComponentNodeId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "project", + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + }, + { + "args": [], + "name": "component", + "type": { + "kind": "OBJECT", + "name": "Component", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectComponentsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "projectComponentEdge", + "type": { + "kind": "OBJECT", + "name": "ProjectComponentsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DeleteProjectComponentPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteProjectComponentByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "projectId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "componentId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteProjectComponentInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "projectField", + "type": { + "kind": "OBJECT", + "name": "ProjectField", + "ofType": null + } + }, + { + "args": [], + "name": "deletedProjectFieldNodeId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "project", + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + }, + { + "args": [], + "name": "group", + "type": { + "kind": "OBJECT", + "name": "FieldGroup", + "ofType": null + } + }, + { + "args": [], + "name": "dataPoint", + "type": { + "kind": "OBJECT", + "name": "DataPoint", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectFieldsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "projectFieldEdge", + "type": { + "kind": "OBJECT", + "name": "ProjectFieldsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DeleteProjectFieldPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteProjectFieldByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "projectId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "fieldId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteProjectFieldByProjectIdAndFieldIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteProjectFieldInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "projectWatcher", + "type": { + "kind": "OBJECT", + "name": "ProjectWatcher", + "ofType": null + } + }, + { + "args": [], + "name": "deletedProjectWatcherNodeId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "project", + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + }, + { + "args": [], + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectWatchersOrderBy", + "ofType": null + } + } + } + } + ], + "name": "projectWatcherEdge", + "type": { + "kind": "OBJECT", + "name": "ProjectWatchersEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DeleteProjectWatcherPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteProjectWatcherByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "projectId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "userId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteProjectWatcherInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "project", + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + }, + { + "args": [], + "name": "deletedProjectNodeId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "facility", + "type": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + }, + { + "args": [], + "name": "projectType", + "type": { + "kind": "OBJECT", + "name": "ProjectType", + "ofType": null + } + }, + { + "args": [], + "name": "program", + "type": { + "kind": "OBJECT", + "name": "Program", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "projectEdge", + "type": { + "kind": "OBJECT", + "name": "ProjectsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DeleteProjectPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteProjectByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteProjectInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "reportExecution", + "type": { + "kind": "OBJECT", + "name": "ReportExecution", + "ofType": null + } + }, + { + "args": [], + "name": "deletedReportExecutionNodeId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "report", + "type": { + "kind": "OBJECT", + "name": "Report", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ReportExecutionsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "reportExecutionEdge", + "type": { + "kind": "OBJECT", + "name": "ReportExecutionsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DeleteReportExecutionPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteReportExecutionByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteReportExecutionInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "savingsEvent", + "type": { + "kind": "OBJECT", + "name": "SavingsEvent", + "ofType": null + } + }, + { + "args": [], + "name": "deletedSavingsEventNodeId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "project", + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SavingsEventsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "savingsEventEdge", + "type": { + "kind": "OBJECT", + "name": "SavingsEventsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DeleteSavingsEventPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteSavingsEventByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteSavingsEventInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "projectId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "startTime", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "endTime", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteSavingsEventByProjectIdAndStartTimeAndEndTimeInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "suggestionControlEvent", + "type": { + "kind": "OBJECT", + "name": "SuggestionControlEvent", + "ofType": null + } + }, + { + "args": [], + "name": "deletedSuggestionControlEventNodeId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "suggestion", + "type": { + "kind": "OBJECT", + "name": "Suggestion", + "ofType": null + } + }, + { + "args": [], + "name": "controlEvent", + "type": { + "kind": "OBJECT", + "name": "ControlEvent", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DeleteSuggestionControlEventPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteSuggestionControlEventByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "suggestionId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "controlEventId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteSuggestionControlEventInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "controlEventId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteSuggestionControlEventByControlEventIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + { + "args": [], + "name": "deletedUserNodeId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UsersOrderBy", + "ofType": null + } + } + } + } + ], + "name": "userEdge", + "type": { + "kind": "OBJECT", + "name": "UsersEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DeleteUserPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteUserByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteUserInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "utilityProvider", + "type": { + "kind": "OBJECT", + "name": "UtilityProvider", + "ofType": null + } + }, + { + "args": [], + "name": "deletedUtilityProviderNodeId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityProvidersOrderBy", + "ofType": null + } + } + } + } + ], + "name": "utilityProviderEdge", + "type": { + "kind": "OBJECT", + "name": "UtilityProvidersEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DeleteUtilityProviderPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteUtilityProviderByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteUtilityProviderInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteUtilityProviderByNameInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "vendorUserMachineUser", + "type": { + "kind": "OBJECT", + "name": "VendorUserMachineUser", + "ofType": null + } + }, + { + "args": [], + "name": "deletedVendorUserMachineUserNodeId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DeleteVendorUserMachineUserPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteVendorUserMachineUserByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "vendorUserId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "machineUserId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteVendorUserMachineUserInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "machineUserId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteVendorUserMachineUserByMachineUserIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "vendorUser", + "type": { + "kind": "OBJECT", + "name": "VendorUser", + "ofType": null + } + }, + { + "args": [], + "name": "deletedVendorUserNodeId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "VendorUsersOrderBy", + "ofType": null + } + } + } + } + ], + "name": "vendorUserEdge", + "type": { + "kind": "OBJECT", + "name": "VendorUsersEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DeleteVendorUserPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteVendorUserByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteVendorUserInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "email", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteVendorUserByEmailInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "virtualPointInterval", + "type": { + "kind": "OBJECT", + "name": "VirtualPointInterval", + "ofType": null + } + }, + { + "args": [], + "name": "deletedVirtualPointIntervalNodeId", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "parent", + "type": { + "kind": "OBJECT", + "name": "DataPoint", + "ofType": null + } + }, + { + "args": [], + "name": "child", + "type": { + "kind": "OBJECT", + "name": "DataPoint", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "VirtualPointIntervalsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "virtualPointIntervalEdge", + "type": { + "kind": "OBJECT", + "name": "VirtualPointIntervalsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DeleteVirtualPointIntervalPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "nodeId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteVirtualPointIntervalByNodeIdInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "parentId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "childId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteVirtualPointIntervalInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UsersOrderBy", + "ofType": null + } + } + } + } + ], + "name": "userEdge", + "type": { + "kind": "OBJECT", + "name": "UsersEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "AddFavoriteFacilityPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "AddFavoriteFacilityInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "metricMetadata", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MetricMetadatum", + "ofType": null + } + } + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "AddMetricMetadataDependencyPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "parentMetric", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "childMetric", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "AddMetricMetadataDependencyInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "boolean", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ClearFacilityCommunicationPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "facilityCommunicationId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ClearFacilityCommunicationInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "deleted", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DeleteAccountChargePayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteAccountChargeInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "deleted", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DeleteAccountStatementPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteAccountStatementInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "deleted", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DeleteMeterChargePayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteMeterChargeInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "deleted", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DeleteMeterStatementPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteMeterStatementInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "deleted", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DeleteMeterUsagePayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteMeterUsageInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "deleted", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DeleteUtilityAccountPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteUtilityAccountInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "deleted", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DeleteUtilityMeterPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeleteUtilityMeterInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "controlEvent", + "type": { + "kind": "OBJECT", + "name": "ControlEvent", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "component", + "type": { + "kind": "OBJECT", + "name": "Component", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ControlEventsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "controlEventEdge", + "type": { + "kind": "OBJECT", + "name": "ControlEventsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "PatchControlEventRemoteMetadataPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "controlEventId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "patchedMetadata", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "PatchControlEventRemoteMetadataInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UsersOrderBy", + "ofType": null + } + } + } + } + ], + "name": "userEdge", + "type": { + "kind": "OBJECT", + "name": "UsersEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "RemoveFavoriteFacilityPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "RemoveFavoriteFacilityInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "metricMetadata", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MetricMetadatum", + "ofType": null + } + } + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "RemoveMetricMetadataDependencyPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "parentMetric", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "childMetric", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "RemoveMetricMetadataDependencyInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "meterStatement", + "type": { + "kind": "OBJECT", + "name": "MeterStatement", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "utilityMeter", + "type": { + "kind": "OBJECT", + "name": "UtilityMeter", + "ofType": null + } + }, + { + "args": [], + "name": "accountStatement", + "type": { + "kind": "OBJECT", + "name": "AccountStatement", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MeterStatementsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "meterStatementEdge", + "type": { + "kind": "OBJECT", + "name": "MeterStatementsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ReparentMeterStatementPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterStatementId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "destUtilityMeterId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "destAccountStatementId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ReparentMeterStatementInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "userSubscriptions", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UserSubscription", + "ofType": null + } + } + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpsertProjectSubscriptionPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "projectId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "channels", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UserSubscriptionChannel", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertProjectSubscriptionInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "recordId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpsertUrjanetUtilityProviderPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "urjanetSlug", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertUrjanetUtilityProviderInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "accountCharge", + "type": { + "kind": "OBJECT", + "name": "AccountCharge", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "accountStatement", + "type": { + "kind": "OBJECT", + "name": "AccountStatement", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AccountChargesOrderBy", + "ofType": null + } + } + } + } + ], + "name": "accountChargeEdge", + "type": { + "kind": "OBJECT", + "name": "AccountChargesEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpsertAccountChargePayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatementId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "category", + "type": { + "kind": "ENUM", + "name": "UtilityAccountChargeCategory", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "intervalStart", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "intervalEnd", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "lineNumber", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertAccountChargeWhere", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountCharge", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AccountChargeInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertAccountChargeInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "accountStatement", + "type": { + "kind": "OBJECT", + "name": "AccountStatement", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "utilityAccount", + "type": { + "kind": "OBJECT", + "name": "UtilityAccount", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AccountStatementsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "accountStatementEdge", + "type": { + "kind": "OBJECT", + "name": "AccountStatementsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpsertAccountStatementPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "integration", + "type": { + "kind": "ENUM", + "name": "UtilityIntegration", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "integrationKey", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertAccountStatementWhere", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "accountStatement", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AccountStatementInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertAccountStatementInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "balancingAuthority", + "type": { + "kind": "OBJECT", + "name": "BalancingAuthority", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "BalancingAuthoritiesOrderBy", + "ofType": null + } + } + } + } + ], + "name": "balancingAuthorityEdge", + "type": { + "kind": "OBJECT", + "name": "BalancingAuthoritiesEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpsertBalancingAuthorityPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "slug", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertBalancingAuthorityWhere", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "balancingAuthority", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BalancingAuthorityInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertBalancingAuthorityInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "buildingAreaType", + "type": { + "kind": "OBJECT", + "name": "BuildingAreaType", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "BuildingAreaTypesOrderBy", + "ofType": null + } + } + } + } + ], + "name": "buildingAreaTypeEdge", + "type": { + "kind": "OBJECT", + "name": "BuildingAreaTypesEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpsertBuildingAreaTypePayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertBuildingAreaTypeWhere", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "buildingAreaType", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BuildingAreaTypeInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertBuildingAreaTypeInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "buildingArea", + "type": { + "kind": "OBJECT", + "name": "BuildingArea", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "buildingAreaType", + "type": { + "kind": "OBJECT", + "name": "BuildingAreaType", + "ofType": null + } + }, + { + "args": [], + "name": "facility", + "type": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "BuildingAreasOrderBy", + "ofType": null + } + } + } + } + ], + "name": "buildingAreaEdge", + "type": { + "kind": "OBJECT", + "name": "BuildingAreasEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpsertBuildingAreaPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertBuildingAreaWhere", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "buildingArea", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BuildingAreaInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertBuildingAreaInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "dataPoint", + "type": { + "kind": "OBJECT", + "name": "DataPoint", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "dataSourceByDataSourceName", + "type": { + "kind": "OBJECT", + "name": "DataSource", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "DataPointsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "dataPointEdge", + "type": { + "kind": "OBJECT", + "name": "DataPointsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpsertDataPointPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "dataSourceName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertDataPointWhere", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "dataPoint", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DataPointInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertDataPointInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "dependency", + "type": { + "kind": "OBJECT", + "name": "Dependency", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "DependenciesOrderBy", + "ofType": null + } + } + } + } + ], + "name": "dependencyEdge", + "type": { + "kind": "OBJECT", + "name": "DependenciesEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpsertDependencyPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "path", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertDependencyWhere", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "dependency", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DependencyInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertDependencyInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "fieldGroup", + "type": { + "kind": "OBJECT", + "name": "FieldGroup", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FieldGroupsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "fieldGroupEdge", + "type": { + "kind": "OBJECT", + "name": "FieldGroupsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpsertFieldGroupPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertFieldGroupWhere", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "fieldGroup", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FieldGroupInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertFieldGroupInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "machineUser", + "type": { + "kind": "OBJECT", + "name": "MachineUser", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MachineUsersOrderBy", + "ofType": null + } + } + } + } + ], + "name": "machineUserEdge", + "type": { + "kind": "OBJECT", + "name": "MachineUsersEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpsertMachineUserPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertMachineUserWhere", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "machineUser", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MachineUserInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertMachineUserInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "meterCharge", + "type": { + "kind": "OBJECT", + "name": "MeterCharge", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "meterStatement", + "type": { + "kind": "OBJECT", + "name": "MeterStatement", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MeterChargesOrderBy", + "ofType": null + } + } + } + } + ], + "name": "meterChargeEdge", + "type": { + "kind": "OBJECT", + "name": "MeterChargesEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpsertMeterChargePayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterStatementId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "category", + "type": { + "kind": "ENUM", + "name": "UtilityMeterChargeCategory", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "lineNumber", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertMeterChargeWhere", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterCharge", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MeterChargeInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertMeterChargeInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "meterStatement", + "type": { + "kind": "OBJECT", + "name": "MeterStatement", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "utilityMeter", + "type": { + "kind": "OBJECT", + "name": "UtilityMeter", + "ofType": null + } + }, + { + "args": [], + "name": "accountStatement", + "type": { + "kind": "OBJECT", + "name": "AccountStatement", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MeterStatementsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "meterStatementEdge", + "type": { + "kind": "OBJECT", + "name": "MeterStatementsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpsertMeterStatementPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "integrationKey", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "statementDate", + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertMeterStatementWhere", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterStatement", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MeterStatementInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertMeterStatementInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "meterUsage", + "type": { + "kind": "OBJECT", + "name": "MeterUsage", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "meterStatement", + "type": { + "kind": "OBJECT", + "name": "MeterStatement", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MeterUsagesOrderBy", + "ofType": null + } + } + } + } + ], + "name": "meterUsageEdge", + "type": { + "kind": "OBJECT", + "name": "MeterUsagesEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpsertMeterUsagePayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterStatementId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "category", + "type": { + "kind": "ENUM", + "name": "UtilityMeterUsageCategory", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "units", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "lineNumber", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertMeterUsageWhere", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "meterUsage", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MeterUsageInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertMeterUsageInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "program", + "type": { + "kind": "OBJECT", + "name": "Program", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "projectType", + "type": { + "kind": "OBJECT", + "name": "ProjectType", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProgramsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "programEdge", + "type": { + "kind": "OBJECT", + "name": "ProgramsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpsertProgramPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "projectTypeId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertProgramWhere", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "program", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProgramInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertProgramInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "projectComponent", + "type": { + "kind": "OBJECT", + "name": "ProjectComponent", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "project", + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + }, + { + "args": [], + "name": "component", + "type": { + "kind": "OBJECT", + "name": "Component", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectComponentsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "projectComponentEdge", + "type": { + "kind": "OBJECT", + "name": "ProjectComponentsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpsertProjectComponentPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "projectId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "componentId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertProjectComponentWhere", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "projectComponent", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectComponentInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertProjectComponentInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "projectField", + "type": { + "kind": "OBJECT", + "name": "ProjectField", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "project", + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + }, + { + "args": [], + "name": "group", + "type": { + "kind": "OBJECT", + "name": "FieldGroup", + "ofType": null + } + }, + { + "args": [], + "name": "dataPoint", + "type": { + "kind": "OBJECT", + "name": "DataPoint", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectFieldsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "projectFieldEdge", + "type": { + "kind": "OBJECT", + "name": "ProjectFieldsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpsertProjectFieldPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "projectId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "fieldId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertProjectFieldWhere", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "projectField", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectFieldInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertProjectFieldInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "projectWatcher", + "type": { + "kind": "OBJECT", + "name": "ProjectWatcher", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "project", + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + }, + { + "args": [], + "name": "user", + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectWatchersOrderBy", + "ofType": null + } + } + } + } + ], + "name": "projectWatcherEdge", + "type": { + "kind": "OBJECT", + "name": "ProjectWatchersEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpsertProjectWatcherPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "projectId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "userId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertProjectWatcherWhere", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "projectWatcher", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectWatcherInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertProjectWatcherInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "reportExecution", + "type": { + "kind": "OBJECT", + "name": "ReportExecution", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "report", + "type": { + "kind": "OBJECT", + "name": "Report", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ReportExecutionsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "reportExecutionEdge", + "type": { + "kind": "OBJECT", + "name": "ReportExecutionsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpsertReportExecutionPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertReportExecutionWhere", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "reportExecution", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ReportExecutionInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertReportExecutionInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "reportQuery", + "type": { + "kind": "OBJECT", + "name": "ReportQuery", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "report", + "type": { + "kind": "OBJECT", + "name": "Report", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ReportQueriesOrderBy", + "ofType": null + } + } + } + } + ], + "name": "reportQueryEdge", + "type": { + "kind": "OBJECT", + "name": "ReportQueriesEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpsertReportQueryPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "reportId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertReportQueryWhere", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "reportQuery", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ReportQueryInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertReportQueryInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "reportId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "dbType", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "query", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ReportQueryInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "savingsEvent", + "type": { + "kind": "OBJECT", + "name": "SavingsEvent", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "project", + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SavingsEventsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "savingsEventEdge", + "type": { + "kind": "OBJECT", + "name": "SavingsEventsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpsertSavingsEventPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "projectId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "startTime", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "endTime", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertSavingsEventWhere", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "savingsEvent", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SavingsEventInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertSavingsEventInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "suggestionControlEvent", + "type": { + "kind": "OBJECT", + "name": "SuggestionControlEvent", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "suggestion", + "type": { + "kind": "OBJECT", + "name": "Suggestion", + "ofType": null + } + }, + { + "args": [], + "name": "controlEvent", + "type": { + "kind": "OBJECT", + "name": "ControlEvent", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpsertSuggestionControlEventPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "suggestionId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "controlEventId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertSuggestionControlEventWhere", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "suggestionControlEvent", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SuggestionControlEventInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertSuggestionControlEventInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "utilityAccount", + "type": { + "kind": "OBJECT", + "name": "UtilityAccount", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "utilityProvider", + "type": { + "kind": "OBJECT", + "name": "UtilityProvider", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityAccountsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "utilityAccountEdge", + "type": { + "kind": "OBJECT", + "name": "UtilityAccountsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpsertUtilityAccountPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "integration", + "type": { + "kind": "ENUM", + "name": "UtilityIntegration", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "integrationAccountKey", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertUtilityAccountWhere", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityAccount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UtilityAccountInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertUtilityAccountInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "utilityMeter", + "type": { + "kind": "OBJECT", + "name": "UtilityMeter", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "utilityAccount", + "type": { + "kind": "OBJECT", + "name": "UtilityAccount", + "ofType": null + } + }, + { + "args": [], + "name": "facility", + "type": { + "kind": "OBJECT", + "name": "Facility", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityMetersOrderBy", + "ofType": null + } + } + } + } + ], + "name": "utilityMeterEdge", + "type": { + "kind": "OBJECT", + "name": "UtilityMetersEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpsertUtilityMeterPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityAccountId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "integrationMeterKey", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "serviceType", + "type": { + "kind": "ENUM", + "name": "UtilityMeterServiceType", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertUtilityMeterWhere", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityMeter", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UtilityMeterInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertUtilityMeterInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "utilityProvider", + "type": { + "kind": "OBJECT", + "name": "UtilityProvider", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UtilityProvidersOrderBy", + "ofType": null + } + } + } + } + ], + "name": "utilityProviderEdge", + "type": { + "kind": "OBJECT", + "name": "UtilityProvidersEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpsertUtilityProviderPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertUtilityProviderWhere", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "utilityProvider", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UtilityProviderInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertUtilityProviderInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "vendorUserMachineUser", + "type": { + "kind": "OBJECT", + "name": "VendorUserMachineUser", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpsertVendorUserMachineUserPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "vendorUserId", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "machineUserId", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertVendorUserMachineUserWhere", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "vendorUserMachineUser", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "VendorUserMachineUserInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertVendorUserMachineUserInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "virtualPointInterval", + "type": { + "kind": "OBJECT", + "name": "VirtualPointInterval", + "ofType": null + } + }, + { + "args": [], + "name": "query", + "type": { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + }, + { + "args": [], + "name": "parent", + "type": { + "kind": "OBJECT", + "name": "DataPoint", + "ofType": null + } + }, + { + "args": [], + "name": "child", + "type": { + "kind": "OBJECT", + "name": "DataPoint", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "[PRIMARY_KEY_ASC]", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "VirtualPointIntervalsOrderBy", + "ofType": null + } + } + } + } + ], + "name": "virtualPointIntervalEdge", + "type": { + "kind": "OBJECT", + "name": "VirtualPointIntervalsEdge", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpsertVirtualPointIntervalPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "parentId", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "childId", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertVirtualPointIntervalWhere", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "virtualPointInterval", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "VirtualPointIntervalInput", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpsertVirtualPointIntervalInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "user", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + } + }, + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UpdatePhoneNumberResponse", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "phoneNumber", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "verificationCode", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UpdatePhoneNumberInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "user", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + } + }, + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DeletePhoneNumberResponse", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "DeletePhoneNumberInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "time", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "sourceId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "data", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "metadata", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "InputMetricData", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "time", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "facilityId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "label", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "data", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "metadata", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "InputFacilityMetricData", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "project", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + } + }, + { + "args": [], + "name": "user", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "AddProjectControllerPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "projectId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "userId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "AddProjectControllerInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "project", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + } + }, + { + "args": [], + "name": "user", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "RemoveProjectControllerPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "projectId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "userId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "RemoveProjectControllerInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "WithdrawSuggestionInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "acknowledge", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "AcknowledgeSuggestionInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "controlEventId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "state", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ControlEventStateType", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "TransitionControlEventInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "controlEventId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "AcknowledgeControlEventInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "accessKey", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "token", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PlatformAccessToken", + "ofType": null + } + } + }, + { + "args": [], + "name": "user", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "CreateAccessTokenPayload", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "CreateUserAccessTokenPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "accessKey", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "token", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PlatformAccessToken", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "INTERFACE", + "name": "CreateAccessTokenPayload", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "CreateUserAccessTokenPayload", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "CreateMachineAccessTokenPayload", + "ofType": null + } + ] + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "expiresAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CreateUserAccessTokenInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "accessKey", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "token", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PlatformAccessToken", + "ofType": null + } + } + }, + { + "args": [], + "name": "machineUser", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MachineUser", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "CreateAccessTokenPayload", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "CreateMachineAccessTokenPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "description", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "expiresAt", + "type": { + "kind": "SCALAR", + "name": "Datetime", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "machineUserId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CreateMachineAccessTokenInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "RevokeAccessTokenInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "RegenerateAccessTokenInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "phoneNumber", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "verificationId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "attempts", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "VerifyPhoneNumberResponse", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "phoneNumber", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "VerifyPhoneNumberInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "machineUser", + "type": { + "kind": "OBJECT", + "name": "MachineUser", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "SetMachineUserCapabilityPayload", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "clientMutationId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "name": "machineUserId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "capabilities", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PlatformCapabilityAccessDefinition", + "ofType": null + } + } + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "SetMachineUserCapabilityInput", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "name": "capability", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "PlatformCapability", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "enableRead", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "name": "enableWrite", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "PlatformCapabilityAccessDefinition", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "types", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "queryType", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + } + } + }, + { + "args": [], + "name": "mutationType", + "type": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + } + }, + { + "args": [], + "name": "subscriptionType", + "type": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + } + }, + { + "args": [], + "name": "directives", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__Directive", + "ofType": null + } + } + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "__Schema", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "kind", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "__TypeKind", + "ofType": null + } + } + }, + { + "args": [], + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "specifiedByUrl", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "false", + "name": "includeDeprecated", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + ], + "name": "fields", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__Field", + "ofType": null + } + } + } + }, + { + "args": [], + "name": "interfaces", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + } + } + } + }, + { + "args": [], + "name": "possibleTypes", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + } + } + } + }, + { + "args": [ + { + "defaultValue": "false", + "name": "includeDeprecated", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + ], + "name": "enumValues", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__EnumValue", + "ofType": null + } + } + } + }, + { + "args": [ + { + "defaultValue": "false", + "name": "includeDeprecated", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + ], + "name": "inputFields", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__InputValue", + "ofType": null + } + } + } + }, + { + "args": [], + "name": "ofType", + "type": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "__Type", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "SCALAR" + }, + { + "name": "OBJECT" + }, + { + "name": "INTERFACE" + }, + { + "name": "UNION" + }, + { + "name": "ENUM" + }, + { + "name": "INPUT_OBJECT" + }, + { + "name": "LIST" + }, + { + "name": "NON_NULL" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "__TypeKind", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": "false", + "name": "includeDeprecated", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + ], + "name": "args", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__InputValue", + "ofType": null + } + } + } + } + }, + { + "args": [], + "name": "type", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + } + } + }, + { + "args": [], + "name": "isDeprecated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "args": [], + "name": "deprecationReason", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "__Field", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "type", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + } + } + }, + { + "args": [], + "name": "defaultValue", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "isDeprecated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "args": [], + "name": "deprecationReason", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "__InputValue", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "isDeprecated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "args": [], + "name": "deprecationReason", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "__EnumValue", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": [ + { + "args": [], + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "name": "isRepeatable", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "args": [], + "name": "locations", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "__DirectiveLocation", + "ofType": null + } + } + } + } + }, + { + "args": [ + { + "defaultValue": "false", + "name": "includeDeprecated", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + ], + "name": "args", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__InputValue", + "ofType": null + } + } + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "__Directive", + "possibleTypes": null + }, + { + "enumValues": [ + { + "name": "QUERY" + }, + { + "name": "MUTATION" + }, + { + "name": "SUBSCRIPTION" + }, + { + "name": "FIELD" + }, + { + "name": "FRAGMENT_DEFINITION" + }, + { + "name": "FRAGMENT_SPREAD" + }, + { + "name": "INLINE_FRAGMENT" + }, + { + "name": "VARIABLE_DEFINITION" + }, + { + "name": "SCHEMA" + }, + { + "name": "SCALAR" + }, + { + "name": "OBJECT" + }, + { + "name": "FIELD_DEFINITION" + }, + { + "name": "ARGUMENT_DEFINITION" + }, + { + "name": "INTERFACE" + }, + { + "name": "UNION" + }, + { + "name": "ENUM" + }, + { + "name": "ENUM_VALUE" + }, + { + "name": "INPUT_OBJECT" + }, + { + "name": "INPUT_FIELD_DEFINITION" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "__DirectiveLocation", + "possibleTypes": null + }, + { + "enumValues": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "SCALAR", + "name": "UUID", + "possibleTypes": null + } + ] + } + } +} \ No newline at end of file diff --git a/poetry.lock b/poetry.lock index 333b5acf..fce348ac 100644 --- a/poetry.lock +++ b/poetry.lock @@ -988,22 +988,21 @@ testing-integration = ["build[virtualenv]", "filelock (>=3.4.0)", "jaraco.envs ( [[package]] name = "sgqlc" -version = "16.1" +version = "16.3" description = "Simple GraphQL Client" category = "main" optional = false -python-versions = ">=3.6" +python-versions = ">=3.7,<4.0" files = [ - {file = "sgqlc-16.1-py3-none-any.whl", hash = "sha256:d472f25101e40b05dab30193e3fc4ecc36bd671f7a9b04a49954a98d121f0fdb"}, - {file = "sgqlc-16.1.tar.gz", hash = "sha256:21591009345b116b43a7a7d3995edc25dc2d14092273028205b86d07843a19ac"}, + {file = "sgqlc-16.3-py3-none-any.whl", hash = "sha256:89d468386a4ba4b5ade991623228b6fb0a25bea1f25643ccac130fb3ef565b72"}, + {file = "sgqlc-16.3.tar.gz", hash = "sha256:be08857775aa3e65ef7b2c1f0cdcc65dd5794907b162b393c189187fee664558"}, ] [package.dependencies] -graphql-core = "*" +graphql-core = ">=3.1.7,<4.0.0" [package.extras] requests = ["requests"] -sphinx = ["sphinx", "sphinx-argparse"] websocket = ["websocket-client"] [[package]]