# getFeatureBundles **Type:** GraphQL queries **Description:** Get feature bundles with filtering and pagination support. Filters can be applied on featureBundleName, state, creationDate, and lastModifiedDate. ## Arguments - creationDate (String): Filter by creation date in ISO 8601 format. Example: "2024-01-15" - featureBundleName (String): Filter by feature bundle name. Example: "MyFeatureBundle" - lastModifiedDate (String): Filter by last modified date in ISO 8601 format. Example: "2024-01-20" - limit (Int): Number of records per page. Default: 25 - page (Int): Requested page number for pagination. Default: 1 - state (String): Filter by feature bundle state. Valid values: DRAFT, DEPLOYED, OBSOLETE, INACTIVE. Example: "DEPLOYED" ## Response **Type:** FeatureBundleListResponse **Description:** Paginated response for feature bundles ### Fields - featureBundles (FeatureBundleResponseDTO): List of feature bundles - pagination (Pagination): Pagination information