INPUT_OBJECT

DisplaySortInput

link GraphQL Schema definition

1input DisplaySortInput {
2
3display: DisplayInput!
4
5mode: DisplaySortMode!
6
7# Applicable only for modes BEFORE_OTHER, AFTER_OTHER and SWAP_WITH_OTHER.
8otherDisplay: DisplayInput
9
10# Applicable only for modes INSERT_AT_POSITION_NUMBER and SWAP_WITH_POSITION_NUMBER
11# Positioning is zero-based, i.e. first position has value 0.
12position: Int
13}