End of Life notices
/businessnxtapi/endoflife
section
Notification of end of life for Business NXT API features.
2026-07-10T12:31:03+03:00
# End of Life notices
Notification of end of life for Business NXT API features.
This section is dedicated to end-of-life and deprecation updates, a crucial hub designed to keep you informed about changes in our API, services, and features.
In this section you will find:
- [Deprecated features](deprecatedfeatures.md)
- [Deprecation warning](deprecationwarning.md)
Deprecated features
/businessnxtapi/endoflife/deprecatedfeatures
page
The features listed in this section are deprecated and will be removed in future versions of the API.
2026-07-10T12:31:03+03:00
# Deprecated features
The features listed in this section are deprecated and will be removed in future versions of the API.
## The sortOrder argument
The `sortOrder` argument has been replaced by the `orderBy` argument. The `orderBy` argument is similar to `sortOrder`, except that it is an array of objects instead of a single object. For more details see [Sorting](/businessnxtapi/apireference/features/sorting/).
> [!NOTE]
>
> This feature will not be available after December 31, 2027.
## Suggesting using null values
The use of `null` for suggesting values for fields is considered deprecated and should be avoided. For more details see [Suggesting values](/businessnxtapi/apireference/schema/mutations/inserts/#suggested-values).
> [!NOTE]
>
> This feature will not be available after December 31, 2027.
## Aggregates
The schema section that enables fetching of some aggregate values is obsolete and has been replaced with a more complex reading using grouping. For more details see [Grouping](/businessnxtapi/apireference/schema/queries/grouping/).
> [!NOTE]
>
> This feature will not be available after December 31, 2027.
## Joins
Some joins are invalid and either don't return the expected data or return an error. These joins are considered deprecated and should be avoided. They are marked as deprecated.
The GraphiQL IDE is hiding these fields from the schema documentation and is reporting them as deprecated when present in a query.
> [!NOTE]
>
> This feature will not be available after December 31, 2027.
Deprecation warning
/businessnxtapi/endoflife/deprecationwarning
page
Every time a deprecated feature is used in a query or mutation, a warning will be included in the response, as part of the `extensions` element.
2026-07-10T12:31:03+03:00
# Deprecation warning
Every time a deprecated feature is used in a query or mutation, a warning will be included in the response, as part of the `extensions` element.
The presence of a warning does not affect the response `data`. The warning includes a message explaining what is deprecated and what should be used instead, as well as the path to the deprecated feature in the query or mutation.
Here is an example:
```graphql { title = "Query" }
query read($cid : Int)
{
useCompany(no: $cid)
{
generalLedgerAccount(first:2,
sortOrder : {accountNo : ASC})
{
items
{
accountNo
name
}
}
}
}
```
```graphql { title = "Result" }
{
"data": {
"useCompany": {
"generalLedgerAccount": {
"items": [
{
"accountNo": 1000,
"name": "Forskning og utvikling"
},
{
"accountNo": 1020,
"name": "Konsesjoner"
}
]
}
}
},
"extensions": {
"warnings": [
{
"message": "The argument 'sortOrder' is deprecated and will be removed. Use 'orderBy' instead.",
"path": [
"useCompany",
"generalLedgerAccount"
]
}
],
"vbnxt-trace-id": "83bcb079fb2c8..."
}
}
```