1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-07-04 01:58:31 +00:00

Disable modifications to the game directory query for now until I can find out how to make it work properly and not break things. Apollo needs a safer query merge system.

This commit is contained in:
SirStendec 2017-11-13 16:28:42 -05:00
parent 2c39cd9051
commit 2c1cd94013

View file

@ -71,21 +71,36 @@ export default class Apollo extends Module {
} }
}`); }`);
this.registerModifier('GamePage_Game', `query { /*this.registerModifier('GamePage_Game', `query {
game { directory {
streams { ... on Community {
edges { streams {
node { edges {
createdAt node {
type createdAt
broadcaster { type
profileImageURL(width: 70) broadcaster {
profileImageURL(width: 70)
}
}
}
}
}
... on Game {
streams {
edges {
node {
createdAt
type
broadcaster {
profileImageURL(width: 70)
}
} }
} }
} }
} }
} }
}`); }`);*/
} }