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