to get a personalized navigation.
to get a personalized navigation.
I am writing this to inform you that we plan to release a breaking change in the schema related to accessing system tables.
Today, you can query (and mutate) them as follows (example with the company table):
query
{
company
{
items
{
name
}
}
}
This works in some contexts but not in the following situations:
In order to make these scenarios work, we will have to introduce a context similar to the one used for querying company tables where you specify the customer number. This will look as follows:
query
{
useCustomer(no: 99999)
{
company
{
items
{
name
}
}
}
}
We believe this is unlikely to affect too many integrations and the sooner we introduce this change the better.
If you will be affected by this change, then please let us know so we can plan ahead.
This breaking change in the schema has been released to production.
Here it is documented: https://docs.business.visma.net/docs/schema/queries/query
When will this change go in production? We are trying to make some integrations here based on service authorization where we need access to the system-tables and just now we are a bit stuck on that...
Florian
I expect this to happen at the end of the next week.
Copyright © 2022 Visma.com. All rights reserved.