Sha256: a9dd84c959cc50c7033f38808695766725f8de7fe55942e0bc0f2cd083369862
Contents?: true
Size: 947 Bytes
Versions: 9
Compression:
Stored size: 947 Bytes
Contents
# frozen_string_literal: true module Decidim module Core class UserEntityInputSort < BaseInputSort graphql_name "UserEntitySort" description "A type used for sorting any component parent objects" argument :id, String, "Sort by ID, valid values are ASC or DESC", required: false argument :type, type: String, description: "Sort by type of user entity (user or group), alphabetically, valid values are ASC or DESC", required: false argument :name, type: String, description: "Sort by name of the user entity (user or group), alphabetically, valid values are ASC or DESC", required: false argument :nickname, type: String, description: "Sort by nickname of the user entity (user or group), alphabetically, valid values are ASC or DESC", required: false end end end
Version data entries
9 entries across 9 versions & 1 rubygems