INPUT_OBJECT

PackageFilter

link GraphQL Schema definition

1input PackageFilter {
4
2# Filter results by packages owned by a specific Organization.
3organizationId: ID
7
5# Filter results by primary resource type.
6primaryResourceType: PackageResourceType
10
8# Only return the latest version for each package lineage
9isLatest: Boolean
14
11# Name of package to filter by. If the `nameRegexp` field is provided, this field
12# will be ignored.
13name: String
18
15# Supply the type of string match to apply. If the `nameRegexp` field is provided,
16# this field will be ignored.
17nameMatch: StringMatch
21
19# If True, searching by name is case sensitive. Default is True.
20caseSensitive: Boolean
22}