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 {
id
name
category
category {
id
name
foreground
background
}
type
}
contents

View File

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

View File

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