Hello,
We are using the GraphQL to get the 3PL customers as follows:
query {
account {
data {
email
username
customers(first: 500) {
edges {
node {
id
email
username
legacy_id
status
}
}
}
}
}
}
Everything looks like as we expected besides some user name returns NULL, even though we know every customer has set their business name propely, we’d also checked via name column from the table on the https://app.shiphero.com/3pl
{
“data”: {
“account”: {
“data”: {
…
“customers”: {
“edges”: [
…
{
“node”: {
“id”: “QWXXXXXXXXXXXX”,
“email”: “xxx@yyy.com”,
“username”: null,
“legacy_id”: zxcv,
“status”: “active”
}
},
…
]
}
}
So there are something what we need to get solved.
- Why does this case happen for some users?
- How can we get the account name in case of users which has null name?
- On the shiphero 3PL list, do we have a way to list the email for users?
Thanks in advance.