1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-07-02 17:18: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 {
game {
streams {
edges {
node {
createdAt
type
broadcaster {
profileImageURL(width: 70)
/*this.registerModifier('GamePage_Game', `query {
directory {
... on Community {
streams {
edges {
node {
createdAt
type
broadcaster {
profileImageURL(width: 70)
}
}
}
}
}
... on Game {
streams {
edges {
node {
createdAt
type
broadcaster {
profileImageURL(width: 70)
}
}
}
}
}
}
}`);
}`);*/
}