Skip to main content

user Query

Description

Retrieves a single buyer by reference ID. Returns the buyer with statistics including order count, order total, credit notes count, wants count, and vouchers count.

query user($userRef: ID!) {
user(userRef: $userRef) {
_id
created
updated
lastLogin
active
birthdate
firstName
lastName
email
name
path
telephone
organisation
taxNumber
lists {
_id
ref
added
lastModified
}
accountCreated
addresses {
_id
description
firstName
lastName
addressLine1
addressLine2
streetNumber
city
state
stateCode
postCode
alpha2
country
type
}
notes
verification {
status
token
code
date
hash
}
orderCount
orderTotal
creditNotesCount
wantsCount
vouchersCount
type
}
}

Variables

{
"userRef": "2fd833c76633eb42cc115201"
}

Response

{
"user": {
"_id": "a8a3173b9764a8fa10d9d8b7",
"created": 1710606946861,
"updated": 1768852376666,
"lastLogin": 1759087907292,
"active": true,
"birthdate": 1738268349062,
"firstName": "example",
"lastName": "example",
"email": "email@example.com",
"name": "example",
"path": "/release/1763553751/release-artist-release-name",
"telephone": "example",
"organisation": "example",
"taxNumber": "example",
"lists": [
{
"_id": "4eae2c8acdadbcf263695003",
"ref": "1a9a9a72c61765c62a539210",
"added": 1726861174599,
"lastModified": 1733461005255
}
],
"accountCreated": true,
"addresses": [
{
"_id": "a4fab0147cd988fd9dfaa89a",
"description": "example",
"firstName": "example",
"lastName": "example",
"addressLine1": "example",
"addressLine2": "example",
"streetNumber": 42,
"city": "example",
"state": "example",
"stateCode": "example",
"postCode": "example",
"alpha2": "example",
"country": "example",
"type": "example"
}
],
"notes": "example",
"verification": {
"status": true,
"token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ",
"code": "example",
"date": 1740674906714,
"hash": "example"
},
"orderCount": 42,
"orderTotal": 1.23,
"creditNotesCount": 42,
"wantsCount": 42,
"vouchersCount": 42,
"type": "example"
}
}

Arguments

NameTypeDescription
userRefID!Reference ID of the buyer to retrieve.

Returns

Buyer