pull/1/head
FlayInAHook 4 years ago
commit a5b52a0cd3

@ -1,4 +1,5 @@
overwrite: true
watch: true
schema: "http://localhost:4000/graphql"
documents: "src/app/graphqlOperations/**/*.graphql"
generates:

@ -13,6 +13,7 @@ fragment CargoBikeFieldsMutable on CargoBike {
bikeWeight
}
numberOfChildren
numberOfWheels
security {
frameNumber
adfcCoding

@ -75,6 +75,18 @@
</td>
</ng-container>
<!-- NumberOfWheels Column -->
<ng-container matColumnDef="numberOfWheels">
<th mat-header-cell cdkDrag *matHeaderCellDef i18n="WheelCount">Räderanzahl</th>
<td mat-cell *matCellDef="let element">
<app-string-cell
[editable]="element.isGettingEdited"
[(value)]="element.numberOfWheels"
inputType="number"
></app-string-cell>
</td>
</ng-container>
<!-- Buttons Column -->
<ng-container matColumnDef="buttons" stickyEnd>
<th mat-header-cell *matHeaderCellDef></th>

@ -25,6 +25,7 @@ export class BikesComponent {
'id',
'frameNumber',
'numberOfChildren',
'numberOfWheels',
'buttons',
];

@ -909,7 +909,7 @@ export type GetCargoBikesQuery = (
export type CargoBikeFieldsMutableFragment = (
{ __typename?: 'CargoBike' }
& Pick<CargoBike, 'id' | 'group' | 'name' | 'lockedBy' | 'lockedUntil' | 'numberOfChildren'>
& Pick<CargoBike, 'id' | 'group' | 'name' | 'lockedBy' | 'lockedUntil' | 'numberOfChildren' | 'numberOfWheels'>
& { insuranceData: (
{ __typename?: 'InsuranceData' }
& Pick<InsuranceData, 'billing' | 'hasFixedRate'>
@ -955,6 +955,7 @@ export const CargoBikeFieldsMutableFragmentDoc = gql`
maxWeightTotal
}
numberOfChildren
numberOfWheels
security {
frameNumber
adfcCoding

Loading…
Cancel
Save