28 lines
658 B
JavaScript
28 lines
658 B
JavaScript
|
|
module.exports = {
|
||
|
|
ignoreBandMutation: `
|
||
|
|
mutation IgnoreBand($name: String!) {
|
||
|
|
ignore: IgnoreBand(name: $name)
|
||
|
|
}
|
||
|
|
`,
|
||
|
|
ignoreDanceHallMutation: `
|
||
|
|
mutation IgnoreDanceHall($name: String!) {
|
||
|
|
ignore: IgnoreDanceHall(name: $name)
|
||
|
|
}
|
||
|
|
`,
|
||
|
|
ignoreCityMutation: `
|
||
|
|
mutation IgnoreCity($name: String!) {
|
||
|
|
ignore: IgnoreCity(name: $name)
|
||
|
|
}
|
||
|
|
`,
|
||
|
|
ignoreMunicipalityMutation: `
|
||
|
|
mutation IgnoreMunicipality($name: String!) {
|
||
|
|
ignore: IgnoreMunicipality(name: $name)
|
||
|
|
}
|
||
|
|
`,
|
||
|
|
ignoreStateMutation: `
|
||
|
|
mutation IgnoreState($name: String!) {
|
||
|
|
ignore: IgnoreState(name: $name)
|
||
|
|
}
|
||
|
|
`
|
||
|
|
};
|