---
title: "fetchAssetCollectionsContaining(_:with:options:)"
framework: photos
role: symbol
role_heading: Type Method
path: "photos/phassetcollection/fetchassetcollectionscontaining(_:with:options:)"
---

# fetchAssetCollectionsContaining(_:with:options:)

Retrieves asset collections of the specified type containing the specified asset.

## Declaration

```swift
class func fetchAssetCollectionsContaining(_ asset: PHAsset, with type: PHAssetCollectionType, options: PHFetchOptions?) -> PHFetchResult<PHAssetCollection>
```

## Parameters

- `asset`: A Photos asset.
- `type`: An asset collection type, such as an album or a moment. See doc://com.apple.photokit/documentation/Photos/PHAssetCollectionType.
- `options`: Options that specify a filter predicate and sort order for the fetched asset collections, or nil to use default options. For details, see doc://com.apple.photokit/documentation/Photos/PHFetchOptions.

## Return Value

Return Value A fetch result that contains the requested PHAssetCollection objects, or an empty fetch result if no objects match the request.

## See Also

### Fetching Asset Collections

- [fetchAssetCollections(withLocalIdentifiers:options:)](photos/phassetcollection/fetchassetcollections(withlocalidentifiers:options:).md)
- [fetchAssetCollections(with:subtype:options:)](photos/phassetcollection/fetchassetcollections(with:subtype:options:).md)
- [fetchAssetCollections(withALAssetGroupURLs:options:)](photos/phassetcollection/fetchassetcollections(withalassetgroupurls:options:).md)
- [fetchMoments(inMomentList:options:)](photos/phassetcollection/fetchmoments(inmomentlist:options:).md)
- [fetchMoments(with:)](photos/phassetcollection/fetchmoments(with:).md)
