SortByFieldOrder
Last edit: Nov 10, 2025
No description
type SortByFieldOrder {
field_name: String!
values: [String]!
}
Fields
field_name (String)
Sort by this field, example: "id".
values (String)
Sort by provided values, example: [109, 903].
Full example: If { field_name: "id", values: [109, 903] }, Object#109 will be
1st, Object#903 will be 2nd, and then the rest.