INPUT_OBJECT
PackageFilter
link GraphQL Schema definition
1 input PackageFilter { 4 2 # Filter results by packages owned by a specific Organization. 3 : ID 7 5 # Filter results by primary resource type. 6 : PackageResourceType 10 8 # Only return the latest version for each package lineage 9 : Boolean 14 11 # Name of package to filter by. If the `nameRegexp` field is provided, this field 12 # will be ignored. 13 : String 18 15 # Supply the type of string match to apply. If the `nameRegexp` field is provided, 16 # this field will be ignored. 17 : StringMatch 21 19 # If True, searching by name is case sensitive. Default is True. 20 : Boolean 24 22 # Filter results by package grant type. 23 : PackageGrantType 27 25 # Filter results by package grant types. 26 : [PackageGrantType!] 33 28 # When true, includes both packages matching the provided `grantType` or 29 # `grantTypes` filter and packages owned by the caller's organization. If the 30 # caller is a super-admin and provided a value for the `organizationId` field in 31 # the query, that value will be used instead. 32 : Boolean 34 }