Last active
August 29, 2020 19:13
-
-
Save jaredhaight/16280284a80ec74f22ad852627416dc5 to your computer and use it in GitHub Desktop.
Stuff for Rebuilding Faction Series
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
query allAgents { | |
agents { | |
id | |
hostname | |
visible | |
agent_type { | |
name | |
id | |
} | |
transport { | |
id | |
name | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
agents [ | |
{ | |
id: 1 | |
hostname: foo | |
visible: True | |
agent_type: { | |
id: 1 | |
name: Marauder | |
} | |
transport: { | |
id: 1 | |
name: HTTP | |
} | |
}, | |
{ | |
id: 2 | |
hostname: bar | |
visible: True | |
agent_type: { | |
id: 1 | |
name: Marauder | |
} | |
transport: { | |
id: 1 | |
name: HTTP | |
} | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment