ProjectsFilter
Filters for narrowing the projects list. All filters are optional and combine with AND logic.
input ProjectsFilter {
name: StringFilter
search: String
attributes: [AttributeFilter!]
}
Fields
ProjectsFilter.name ● StringFilter input {#name}
Match by the project's exact display name (eq) or a set of names (in). For partial or approximate matching, use search instead.
ProjectsFilter.search ● String scalar {#search}
Free-text search across the project's name and description. Matches whole words anywhere in the text, so it is forgiving of partial or out-of-order terms. When search is active and no explicit sort is provided, results are ranked by relevance.
ProjectsFilter.attributes ● [AttributeFilter!] list input {#attributes}
Match by the project's effective attributes. Each entry targets one attribute key; multiple entries are combined with AND.
Member Of
projects query