Replace old queries without subselection

This commit is contained in:
Ramon Wenger 2022-09-13 11:24:51 +02:00
parent d1c4d63179
commit 3810932cac
3 changed files with 18 additions and 3 deletions

View File

@ -13,7 +13,12 @@ fragment InstrumentParts on InstrumentNode {
type { type {
id id
name name
category category {
id
name
foreground
background
}
type type
} }
contents contents

View File

@ -2,6 +2,11 @@ query InstrumentTypesQuery {
instrumentTypes { instrumentTypes {
name name
type type
category category {
id
name
foreground
background
}
} }
} }

View File

@ -7,7 +7,12 @@ query InstrumentsQuery {
type { type {
id id
type type
category category {
id
name
foreground
background
}
name name
} }
} }