mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-07-04 10:08: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:
parent
2c39cd9051
commit
2c1cd94013
1 changed files with 25 additions and 10 deletions
|
@ -71,8 +71,9 @@ export default class Apollo extends Module {
|
||||||
}
|
}
|
||||||
}`);
|
}`);
|
||||||
|
|
||||||
this.registerModifier('GamePage_Game', `query {
|
/*this.registerModifier('GamePage_Game', `query {
|
||||||
game {
|
directory {
|
||||||
|
... on Community {
|
||||||
streams {
|
streams {
|
||||||
edges {
|
edges {
|
||||||
node {
|
node {
|
||||||
|
@ -85,7 +86,21 @@ export default class Apollo extends Module {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}`);
|
... on Game {
|
||||||
|
streams {
|
||||||
|
edges {
|
||||||
|
node {
|
||||||
|
createdAt
|
||||||
|
type
|
||||||
|
broadcaster {
|
||||||
|
profileImageURL(width: 70)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}`);*/
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue