# getFeatures **Type:** GraphQL queries **Description:** Get features with filtering and pagination support. Filters can be applied on name, version, versionFormat, state, creationDate, lastModifiedDate, and vendorAuthString. ## Arguments - creationDate (String): Filter by creation date in ISO 8601 format. Example: "2024-01-15" - lastModifiedDate (String): Filter by last modified date in ISO 8601 format. Example: "2024-01-20" - limit (Int): Number of records per page. Default: 25 - name (String): Filter feature by name. Example: "MyFeature" - page (Int): Requested page number for pagination. Default: 1 - state (String): Feature state (e.g., DRAFT, DEPLOYED). Valid values: DRAFT, DEPLOYED, OBSOLETE, INACTIVE. Example: "DEPLOYED" - vendorAuthString (String): Vendor authorization string for filtering. - version (String): Filter feature by version. Example: "1.0" - versionFormat (String): Filter feature by versionFormat. Valid values: FIXED, DATEBASED. Example: "FIXED" ## Response **Type:** PagedFeatureResponse **Description:** Paginated response carrying a list of features ### Fields - features (FeaturesResponseDTO): List of features - pagination (Pagination): Pagination information