Skip to content

Commit c88a972

Browse files
committed
Update Hasura: StopArea ChangeHistory
1 parent 6023c7a commit c88a972

4 files changed

Lines changed: 1043 additions & 77 deletions

File tree

test-db-manager/src/generated/graphql.ts

Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,46 @@ export type ReplaceTimetablesOutput = {
154154
replacedVehicleScheduleFrameIds: Array<Maybe<Scalars['uuid']['output']>>;
155155
};
156156

157+
export type StopPlaceChangeHistoryItem = {
158+
__typename?: 'StopPlaceChangeHistoryItem';
159+
changed?: Maybe<Scalars['timestamp']['output']>;
160+
changedBy?: Maybe<Scalars['String']['output']>;
161+
netexId: Scalars['String']['output'];
162+
parentStopPlace: Scalars['Boolean']['output'];
163+
priority?: Maybe<Scalars['String']['output']>;
164+
privateCodeType?: Maybe<Scalars['String']['output']>;
165+
privateCodeValue: Scalars['String']['output'];
166+
validityEnd?: Maybe<Scalars['String']['output']>;
167+
validityStart?: Maybe<Scalars['String']['output']>;
168+
version: Scalars['String']['output'];
169+
versionComment?: Maybe<Scalars['String']['output']>;
170+
};
171+
172+
export enum StopPlaceChangeHistoryItemEnumName {
173+
/** column name */
174+
Changed = 'changed',
175+
/** column name */
176+
ChangedBy = 'changedBy',
177+
/** column name */
178+
NetexId = 'netexId',
179+
/** column name */
180+
ParentStopPlace = 'parentStopPlace',
181+
/** column name */
182+
Priority = 'priority',
183+
/** column name */
184+
PrivateCodeType = 'privateCodeType',
185+
/** column name */
186+
PrivateCodeValue = 'privateCodeValue',
187+
/** column name */
188+
ValidityEnd = 'validityEnd',
189+
/** column name */
190+
ValidityStart = 'validityStart',
191+
/** column name */
192+
Version = 'version',
193+
/** column name */
194+
VersionComment = 'versionComment'
195+
}
196+
157197
/** Boolean expression to compare columns of type "String". All fields are combined with logical 'AND'. */
158198
export type StringComparisonExp = {
159199
_eq?: InputMaybe<Scalars['String']['input']>;
@@ -12282,6 +12322,39 @@ export type StopsDatabaseQuayChangeHistoryItemOrderBy = {
1228212322
versionComment?: InputMaybe<OrderBy>;
1228312323
};
1228412324

12325+
/** Boolean expression to filter rows from the logical model for "StopPlaceChangeHistoryItem". All fields are combined with a logical 'AND'. */
12326+
export type StopsDatabaseStopPlaceChangeHistoryItemBoolExpBoolExp = {
12327+
_and?: InputMaybe<Array<StopsDatabaseStopPlaceChangeHistoryItemBoolExpBoolExp>>;
12328+
_not?: InputMaybe<StopsDatabaseStopPlaceChangeHistoryItemBoolExpBoolExp>;
12329+
_or?: InputMaybe<Array<StopsDatabaseStopPlaceChangeHistoryItemBoolExpBoolExp>>;
12330+
changed?: InputMaybe<TimestampComparisonExp>;
12331+
changedBy?: InputMaybe<StringComparisonExp>;
12332+
netexId?: InputMaybe<StringComparisonExp>;
12333+
parentStopPlace?: InputMaybe<BooleanComparisonExp>;
12334+
priority?: InputMaybe<StringComparisonExp>;
12335+
privateCodeType?: InputMaybe<StringComparisonExp>;
12336+
privateCodeValue?: InputMaybe<StringComparisonExp>;
12337+
validityEnd?: InputMaybe<StringComparisonExp>;
12338+
validityStart?: InputMaybe<StringComparisonExp>;
12339+
version?: InputMaybe<StringComparisonExp>;
12340+
versionComment?: InputMaybe<StringComparisonExp>;
12341+
};
12342+
12343+
/** Ordering options when selecting data from "StopPlaceChangeHistoryItem". */
12344+
export type StopsDatabaseStopPlaceChangeHistoryItemOrderBy = {
12345+
changed?: InputMaybe<OrderBy>;
12346+
changedBy?: InputMaybe<OrderBy>;
12347+
netexId?: InputMaybe<OrderBy>;
12348+
parentStopPlace?: InputMaybe<OrderBy>;
12349+
priority?: InputMaybe<OrderBy>;
12350+
privateCodeType?: InputMaybe<OrderBy>;
12351+
privateCodeValue?: InputMaybe<OrderBy>;
12352+
validityEnd?: InputMaybe<OrderBy>;
12353+
validityStart?: InputMaybe<OrderBy>;
12354+
version?: InputMaybe<OrderBy>;
12355+
versionComment?: InputMaybe<OrderBy>;
12356+
};
12357+
1228512358
/** Boolean expression to filter rows from the logical model for "TerminalStopSearchResult". All fields are combined with a logical 'AND'. */
1228612359
export type StopsDatabaseTerminalStopSearchResultBoolExpBoolExp = {
1228712360
_and?: InputMaybe<Array<StopsDatabaseTerminalStopSearchResultBoolExpBoolExp>>;
@@ -51593,6 +51666,7 @@ export type StopsDatabaseStopsDatabaseQuery = {
5159351666
__typename?: 'stops_database_stops_database_query';
5159451667
findStopsForTerminal: Array<TerminalStopSearchResult>;
5159551668
getQuayChangeHistory: Array<QuayChangeHistoryItem>;
51669+
getStopPlaceChangeHistory: Array<StopPlaceChangeHistoryItem>;
5159651670
/** fetch data from the table: "access_space" */
5159751671
stops_database_access_space: Array<StopsDatabaseAccessSpace>;
5159851672
/** fetch aggregated fields from the table: "access_space" */
@@ -52157,6 +52231,15 @@ export type StopsDatabaseStopsDatabaseQueryGetQuayChangeHistoryArgs = {
5215752231
};
5215852232

5215952233

52234+
export type StopsDatabaseStopsDatabaseQueryGetStopPlaceChangeHistoryArgs = {
52235+
distinct_on?: InputMaybe<Array<StopPlaceChangeHistoryItemEnumName>>;
52236+
limit?: InputMaybe<Scalars['Int']['input']>;
52237+
offset?: InputMaybe<Scalars['Int']['input']>;
52238+
order_by?: InputMaybe<Array<StopsDatabaseStopPlaceChangeHistoryItemOrderBy>>;
52239+
where?: InputMaybe<StopsDatabaseStopPlaceChangeHistoryItemBoolExpBoolExp>;
52240+
};
52241+
52242+
5216052243
export type StopsDatabaseStopsDatabaseQueryStopsDatabaseAccessSpaceArgs = {
5216152244
distinct_on?: InputMaybe<Array<StopsDatabaseAccessSpaceSelectColumn>>;
5216252245
limit?: InputMaybe<Scalars['Int']['input']>;
@@ -54380,6 +54463,7 @@ export type StopsDatabaseStopsDatabaseSubscription = {
5438054463
__typename?: 'stops_database_stops_database_subscription';
5438154464
findStopsForTerminal: Array<TerminalStopSearchResult>;
5438254465
getQuayChangeHistory: Array<QuayChangeHistoryItem>;
54466+
getStopPlaceChangeHistory: Array<StopPlaceChangeHistoryItem>;
5438354467
/** fetch data from the table: "access_space" */
5438454468
stops_database_access_space: Array<StopsDatabaseAccessSpace>;
5438554469
/** fetch aggregated fields from the table: "access_space" */
@@ -55154,6 +55238,15 @@ export type StopsDatabaseStopsDatabaseSubscriptionGetQuayChangeHistoryArgs = {
5515455238
};
5515555239

5515655240

55241+
export type StopsDatabaseStopsDatabaseSubscriptionGetStopPlaceChangeHistoryArgs = {
55242+
distinct_on?: InputMaybe<Array<StopPlaceChangeHistoryItemEnumName>>;
55243+
limit?: InputMaybe<Scalars['Int']['input']>;
55244+
offset?: InputMaybe<Scalars['Int']['input']>;
55245+
order_by?: InputMaybe<Array<StopsDatabaseStopPlaceChangeHistoryItemOrderBy>>;
55246+
where?: InputMaybe<StopsDatabaseStopPlaceChangeHistoryItemBoolExpBoolExp>;
55247+
};
55248+
55249+
5515755250
export type StopsDatabaseStopsDatabaseSubscriptionStopsDatabaseAccessSpaceArgs = {
5515855251
distinct_on?: InputMaybe<Array<StopsDatabaseAccessSpaceSelectColumn>>;
5515955252
limit?: InputMaybe<Scalars['Int']['input']>;

0 commit comments

Comments
 (0)