Skip to main content

changes

Accepts optional sorting and pagination arguments and returns the response containing single page of entity changes, with additional technical information used for inter page navigation. NOTE: Max 9.999 results.

changes(
searchTerm: String
from: DateTime!
to: DateTime!
entityType: String!
first: Int
after: String
sort: SortingParamsInput
filter: FilteringParamsInput
): ChangesConnection

Arguments

changes.searchTerm ● String scalar

The search term to look for. Refer to this documentation article for more information about search term capabilities.

changes.from ● DateTime! non-null scalar

The from represents the beginning of a time frame to search in.

changes.to ● DateTime! non-null scalar

The from represents the end of a time frame to search in.

changes.entityType ● String! non-null scalar

The type of the entity to be searched. Ex.: \"Item\"

changes.first ● Int scalar

The number of results to be returned. For next page of results, note the cursorID in the response and use that together with the 'after' input parameter.

changes.after ● String scalar

Page ID (Cursor) if several pages of results are needed. Use together with 'first' input parameter.

changes.sort ● SortingParamsInput input

Sorting ASC or DESC on the provided field.

changes.filter ● FilteringParamsInput input

Filtering the result set. Only results matching the query AND this filter will be returned.

Type

ChangesConnection object

A connection to a list of items.