Hi,
both the query:
query {
useCompany(no:XXXXXXX)
{
customerCurrentBalance
{items
{
joinup_Associate_via_Customer
{
customerNo
}
customerNo
}
}
}
}
or
query {
useCompany(no:XXXXXXX)
{
customerCurrentBalance
{items
{
joindown_Associate_via_CustomerCurrentBalance
{
items
{
name
}
}
customerNo
}
}
}
}
are failing with en sql error:
{ "message": "Error: SQL command no. 3014 failed.", "path": [ "useCompany", "customerCurrentBalance", "items", 0, "joindown_Associate_via_CustomerCurrentBalance", "items" ], "extensions": { "data": { "status": 2, "status_name": "databaseError" } } }
even both queries are "valid" due to the GraphiQL Interface.
I can't get both the customerbalance and customerdata in the same query...
Florian
... View more