Retrieve an account
Arguments
idID!
The ID of the account to be retrieved.
Result
An account object.type Query {
account(id: ID): Account!
}EXAMPLE
{
account(id: "A598575") {
id
name
}
}RESULT
{
"data": {
"account": {
"id": "A598575",
"name": "Piet Uitdebroeck"
}
}
}