16 lines
461 B
HTML
16 lines
461 B
HTML
title = "Fleet"
|
|
==
|
|
==
|
|
# Content
|
|
extend type Query {
|
|
aircraft: [Aircraft] @all(model: "GermanAirlinesVa\\Fleet\\Models\\Aircraft")
|
|
aircraftType: [AircraftType] @all(model: "GermanAirlinesVa\\Fleet\\Models\\AircraftType")
|
|
}
|
|
|
|
type Subscription {
|
|
aircraft: [Aircraft] @subscription(class: "GermanAirlinesVa\\Fleet\\Classes\\Aircraft")
|
|
}
|
|
|
|
type Aircraft { name: String! registration: String! }
|
|
type AircraftType { type: String! aircrafts: [Aircraft] @hasMany }
|