Replace old queries without subselection
This commit is contained in:
parent
d1c4d63179
commit
3810932cac
|
|
@ -13,7 +13,12 @@ fragment InstrumentParts on InstrumentNode {
|
|||
type {
|
||||
id
|
||||
name
|
||||
category
|
||||
category {
|
||||
id
|
||||
name
|
||||
foreground
|
||||
background
|
||||
}
|
||||
type
|
||||
}
|
||||
contents
|
||||
|
|
|
|||
|
|
@ -2,6 +2,11 @@ query InstrumentTypesQuery {
|
|||
instrumentTypes {
|
||||
name
|
||||
type
|
||||
category
|
||||
category {
|
||||
id
|
||||
name
|
||||
foreground
|
||||
background
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,7 +7,12 @@ query InstrumentsQuery {
|
|||
type {
|
||||
id
|
||||
type
|
||||
category
|
||||
category {
|
||||
id
|
||||
name
|
||||
foreground
|
||||
background
|
||||
}
|
||||
name
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue