"description":"lock cargoBike returns true if bike is not locked or if it doesnt exist",
"args":[
{
"name":"id",
@ -5873,6 +5869,37 @@
"isDeprecated":false,
"deprecationReason":null
},
{
"name":"lockEquipmentById",
"description":"lock equipment returns true if bike is not locked or if it doesnt exist",
"args":[
{
"name":"id",
"description":null,
"type":{
"kind":"NON_NULL",
"name":null,
"ofType":{
"kind":"SCALAR",
"name":"ID",
"ofType":null
}
},
"defaultValue":null
}
],
"type":{
"kind":"NON_NULL",
"name":null,
"ofType":{
"kind":"SCALAR",
"name":"Boolean",
"ofType":null
}
},
"isDeprecated":false,
"deprecationReason":null
},
{
"name":"updateEquipment",
"description":"update Equipment, returns updated equipment. CargoBike will be null, if cargoBikeId is not set. Pass null for cargoBikeIs to delete the relation",
/** creates new cargoBike and returns cargobike with new ID */
createCargoBike: CargoBike;
/** lock cargoBike - not implemented */
/** lock cargoBike returns true if bike is not locked or if it doesnt exist */
lockCargoBikeById: Scalars['Boolean'];
/** updates cargoBike of given ID with supplied fields and returns updated cargoBike */
updateCargoBike: CargoBike;
/** creates new peace of unique Equipment */
createEquipment: Equipment;
/** lock equipment returns true if bike is not locked or if it doesnt exist */
lockEquipmentById: Scalars['Boolean'];
/** update Equipment, returns updated equipment. CargoBike will be null, if cargoBikeId is not set. Pass null for cargoBikeIs to delete the relation */
updateEquipment: Equipment;
/** creates new lendingStation and returns lendingStation with new ID */
@ -813,6 +815,11 @@ export type MutationCreateEquipmentArgs = {
};
exporttypeMutationLockEquipmentByIdArgs={
id: Scalars['ID'];
};
exporttypeMutationUpdateEquipmentArgs={
equipment: EquipmentUpdateInput;
};
@ -902,7 +909,7 @@ export type GetCargoBikesQuery = (