|
|
@ -45,12 +45,12 @@ export default gql`
|
|
|
|
numberOfWheels: Int
|
|
|
|
numberOfWheels: Int
|
|
|
|
forCargo: Boolean
|
|
|
|
forCargo: Boolean
|
|
|
|
forChildren: Boolean
|
|
|
|
forChildren: Boolean
|
|
|
|
numberOfChildren: Int!
|
|
|
|
numberOfChildren: Int
|
|
|
|
"""
|
|
|
|
"""
|
|
|
|
Safety is a custom type, that stores information about security features.
|
|
|
|
Safety is a custom type, that stores information about security features.
|
|
|
|
TODO: Should this be called Security?
|
|
|
|
TODO: Should this be called Security?
|
|
|
|
"""
|
|
|
|
"""
|
|
|
|
security: Security!
|
|
|
|
security: Security
|
|
|
|
"""
|
|
|
|
"""
|
|
|
|
Does not refer to an extra table in the database.
|
|
|
|
Does not refer to an extra table in the database.
|
|
|
|
"""
|
|
|
|
"""
|
|
|
@ -102,15 +102,15 @@ export default gql`
|
|
|
|
group: Group!
|
|
|
|
group: Group!
|
|
|
|
name: String!
|
|
|
|
name: String!
|
|
|
|
state: BikeState
|
|
|
|
state: BikeState
|
|
|
|
modelName: String!
|
|
|
|
modelName: String
|
|
|
|
numberOfWheels: Int!
|
|
|
|
numberOfWheels: Int
|
|
|
|
forCargo: Boolean!
|
|
|
|
forCargo: Boolean
|
|
|
|
forChildren: Boolean!
|
|
|
|
forChildren: Boolean
|
|
|
|
numberOfChildren: Int!
|
|
|
|
numberOfChildren: Int
|
|
|
|
"""
|
|
|
|
"""
|
|
|
|
Safety is a custom type, that stores information about security features.
|
|
|
|
Safety is a custom type, that stores information about security features.
|
|
|
|
"""
|
|
|
|
"""
|
|
|
|
security: SecurityCreateInput!
|
|
|
|
security: SecurityCreateInput
|
|
|
|
"""
|
|
|
|
"""
|
|
|
|
Does not refer to an extra table in the database.
|
|
|
|
Does not refer to an extra table in the database.
|
|
|
|
"""
|
|
|
|
"""
|
|
|
@ -360,7 +360,7 @@ export default gql`
|
|
|
|
So no id needed for mutation. One Mutation for the CargoBike will be enough.
|
|
|
|
So no id needed for mutation. One Mutation for the CargoBike will be enough.
|
|
|
|
"""
|
|
|
|
"""
|
|
|
|
type Security {
|
|
|
|
type Security {
|
|
|
|
frameNumber: String!
|
|
|
|
frameNumber: String
|
|
|
|
keyNumberFrameLock: String
|
|
|
|
keyNumberFrameLock: String
|
|
|
|
keyNumberAXAChain: String
|
|
|
|
keyNumberAXAChain: String
|
|
|
|
policeCoding: String
|
|
|
|
policeCoding: String
|
|
|
@ -368,7 +368,7 @@ export default gql`
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
input SecurityCreateInput {
|
|
|
|
input SecurityCreateInput {
|
|
|
|
frameNumber: String!
|
|
|
|
frameNumber: String
|
|
|
|
keyNumberFrameLock: String
|
|
|
|
keyNumberFrameLock: String
|
|
|
|
keyNumberAXAChain: String
|
|
|
|
keyNumberAXAChain: String
|
|
|
|
policeCoding: String
|
|
|
|
policeCoding: String
|
|
|
|