This commit is contained in:
Gogs
2021-06-24 16:13:34 +02:00
parent 0a7f86dc33
commit 67a58a5277
2 changed files with 20 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
title = "Fleet" == == # Content extend type Query { aircraft: [Aircraft] @all(model:
"GermanAirlinesVa\\Fleet\\Models\\Aircraft") aircraftType: [AircraftType] @all(model:
"GermanAirlinesVa\\Fleet\\Models\\AircraftType") } type Aircraft { name: String! registration: String! } type
AircraftType { type: String! aircrafts: [Aircraft] @hasMany }