Skip to content

Instantly share code, notes, and snippets.

@jaredhaight
Last active August 29, 2020 19:13
Show Gist options
  • Save jaredhaight/16280284a80ec74f22ad852627416dc5 to your computer and use it in GitHub Desktop.
Save jaredhaight/16280284a80ec74f22ad852627416dc5 to your computer and use it in GitHub Desktop.
Stuff for Rebuilding Faction Series
query allAgents {
agents {
id
hostname
visible
agent_type {
name
id
}
transport {
id
name
}
}
}
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